839 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
-1
votes
1
answer
172
views
Loading flat file into temporary SQL Server table
I'm attempting to use a temporary SQL Server table ##temptable to preprocess imported data from flat .csv files.
I created the temporary table in the first step of the control flow, calling a stored ...
0
votes
3
answers
126
views
Flat File issue while importing
I have a requirement where I have to offload data from SQL server to a pipe separated flat file. Issue is we have a column whose values are typically all special characters that are present on a ...
0
votes
0
answers
56
views
Write/convert the oracle data to Json format using SSIS
using (XmlWriter writer = XmlWriter.Create(manifestFilePath, new XmlWriterSettings { Indent = true }))
{
writer.WriteStartDocument();
writer.WriteStartElement("manifest"...
0
votes
0
answers
56
views
Flat File as a source and EDI formatted file as destination through ssis
I am given a flat file and need to convert that flat file into EDI formatted file through SSIS. Can someone help me with this how to proceed.
0
votes
2
answers
84
views
PySpark equivalent of Spark sliding() function
I have a multiline flat file which I wish to convert to an rdd/dataframe as a 4 column dataframe, or rdd array via PySpark. The Spark Scala code is,
#from pyspark.sql import SparkSession # Scala ...
0
votes
1
answer
151
views
Azure Data Factory Not Properly Processing Delimited File With Escape Characters
I'm trying to load files from SAP ECC using Azure Data Factory, so I have a Data Flow and a pipeline that executes said Data Flow. Everything goes smoothly until I try to load the file into a SQL ...
0
votes
0
answers
59
views
ssis ragged right with whitespace delimiter
Working with legacy software which generates files. This one is a ragged right file that is also fixed width, except since the last line doesn't have the delimiter it's 2 characters short and the last ...
0
votes
1
answer
57
views
I'm trying to load a flat file into Mariadb. My code works on a different database, but on this data / db, I get a 1064 error
This code (truncated) works:
SET GLOBAL local_infile = 'ON';
SHOW GLOBAL VARIABLES LIKE 'local_infile';
LOAD DATA LOCAL INFILE
'E:\\MM012224.txt'
INTO TABLE `denton24`.`mm012224`
...
0
votes
1
answer
116
views
Handling inconsistent record delimeters in ssis
I have a "fun" flat file I need to import. It's mostly fixed width with every record consisting of 516 characters, except the last record is only 514 and when importing as fixed width it ...
1
vote
1
answer
160
views
How do I Parse a non-delimited flat-file
I have some flat files where each line is about 300 characters. The data has no delimiters of any kind and I want to parse the file to introduce some sort of delimiter between fields. There are ...
1
vote
1
answer
97
views
Building a tree structure JSON from flat file with JS
So I am pretty new with JS and using loops to get data formatted in a JSON tree from a flat file.
I am trying to build an SAP UI5 app and load the data into a tree table.
I have this data
roles: [
...
0
votes
0
answers
41
views
Odd data truncation upon import
Mysqlimport (and 'load data ...') are incorrectly importing data from my flat-file input.
The commands I've used to load are:
load data local infile '/srv/django/tmp/icdo_prev/orders_icdodiagnosis.csv'...
0
votes
0
answers
58
views
Can I connect multiple times to the same csv file via ODBC
We have some proprietary software that processes print files (AFP) and within the scripting for a process it makes a call to a SQL server via ODBC once per page in the file. This might mean something ...
-1
votes
1
answer
293
views
Biztalk flat file schema - how to use double quote as delimiter
I have a flat file as
"barn","40","10,120","bill"
which I have to separate, I tried using quotes as delimiter but there is another quote and comma which ...
-1
votes
2
answers
61
views
Creating an alias in python for importing excel flat files
I am using the following code to import a xlsx flat file:
master = pd.read_excel("H:/Python_data/profit_US_07 2023.xlsx",skiprows=[0])
I would like to create an alias called infile_nyc ...