Skip to main content
Filter by
Sorted by
Tagged with
-1 votes
1 answer
151 views

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 ...
beantreeze's user avatar
0 votes
0 answers
56 views

using (XmlWriter writer = XmlWriter.Create(manifestFilePath, new XmlWriterSettings { Indent = true })) { writer.WriteStartDocument(); writer.WriteStartElement("manifest"...
user23424831's user avatar
0 votes
2 answers
84 views

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 ...
M__'s user avatar
  • 636
0 votes
0 answers
55 views

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 ...
babno's user avatar
  • 309
0 votes
1 answer
103 views

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 ...
babno's user avatar
  • 309
1 vote
1 answer
94 views

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: [ ...
user3369908's user avatar
0 votes
0 answers
58 views

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 ...
Colster's user avatar
  • 81
-1 votes
2 answers
60 views

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 ...
Ramoss's user avatar
  • 1
0 votes
1 answer
240 views

I want to read a fixed width response from server. Sample Response PQRSBNGL1234567890AAHG Here is sample ffd file form: COPYBOOK values: - name: 'HOSPITALS' values: - name: 'BASIC-INFO' ...
Abhinay kumar suraj's user avatar
0 votes
1 answer
2k views

Please would you help me out with this error. I am trying to import a csv file through the wizard, downloaded here https://ourworldindata.org/covid-deaths. But unfortunately it is not converting all ...
subzerowitch's user avatar
0 votes
0 answers
320 views

I have a SSIS package including an "Execute Package Task" (ExecuteOutOfProcess = False) to be executed as many times as there are files in a specific folder. enter image description here ...
CedD's user avatar
  • 3
0 votes
0 answers
544 views

I have a flat file(.txt) generated from a web service having the contents something as below: Field1 Field2 ""key1": [{"somekey":"somevalue"}], "key2&...
Bratty Neal's user avatar
0 votes
1 answer
368 views

The code below creates one line of string. My problem is i have a big database. From which i have to create a fixed width text file. Which should post multiple lines And below code example only posts ...
Nayana Mahajan's user avatar
0 votes
0 answers
127 views

I'm perplexed and would appreciate any help. My SQL setup works by jobs running throughout the day that will upload flat file information if the flat file exists. This is setup using variables and ...
201620222023's user avatar
0 votes
3 answers
452 views

I currently have a flat file with around 1million rows. I need to add a text string to the end of each row in the file. I've been trying to adapt the following code but not having any success :- ...
James Budd's user avatar
0 votes
1 answer
25 views

I imported a csv flat file into Oracle via IICS. I did this with the intention of running a router function in IICS on the newly created Oracle table, to route rows with different data to different ...
Jimbo's user avatar
  • 17
0 votes
1 answer
637 views

I am trying to parse a huge flat file into flat file schema, from a file if 3 rows contains tag value "2" then it should pick all three rows at a time but in my case, am unable to pick those ...
Avinash's user avatar
  • 19
1 vote
1 answer
856 views

I have requirement where I need to parse MuleSoft Flat File Schema to parse incoming file content, input file row to parse it and convert to Mule object. It should include parsing of multiple rows in ...
Avinash's user avatar
  • 19
1 vote
1 answer
2k views

Trying to transform at flat data format to a nested tree so that i can systematically create a Tree Map chart. There is a similar post, but it stops at a 2 tier tree and I'd like to solve this for an ...
Nick's user avatar
  • 21
0 votes
1 answer
53 views

Image of the table created I want data to have different colour background cells. How to assign colours for the data so that the background cell of the data have different colours This is the content ...
Amni Fitriah's user avatar
1 vote
2 answers
188 views

From SSIS, I need to send an Excel file in the format of; 656265 | 56280212 || 654581 | 56246894 || 656111 | 56281475 || I currently have a package that generates an Excel file to be displayed as; ...
PatBentley921's user avatar
0 votes
0 answers
137 views

I have a ssis package which gets data from sql and dumps to CSV file. There are half a million of rows and almost 100 columns and when i dump the data to Flat file destination, some of the column ...
TheSacredKiller's user avatar
0 votes
2 answers
64 views

I use SOAP to extract data from the BRENDA enzyme. After extracting I get the following flat data type: ecNumber3.2.1.23#piValue6.9!ecNumber3.2.1.23#piValue7.1!ecNumber4.4.1.14#piValue6 And I want ...
Rossy Clair's user avatar
0 votes
1 answer
79 views

I am having a csv file which contains 0 in timestamp column in source , when it is being inserted into oracle through informatica it is populated as NULL values. I am not sure whether this is correct ....
abirami ramachandran's user avatar
1 vote
1 answer
598 views

I am working on a project were we need to load flat file eg : (Gemstone_20220325.csv) I have given the source name as (Gemstone_*.csv) in script to search for the file in the path. But it is failing ...
abirami ramachandran's user avatar

1
2 3 4 5
17