i have 2 files. First file contains a,b,c,d as rows and second file contains 1,2,3,4 as rows. how do we make single a1b2c3d4 and 4 different rows a1, b2, c3,d4.
Answers were Sorted based on User's Feedback
Answer / jatin chawla
1. Use fuse component to join two files and will give output
col1 col2
a 1
b 2
c 3
d 4
Then in Reformat do out.col :: string_concat (col1,col2)
| Is This Answer Correct ? | 3 Yes | 1 No |
Answer / enu
Another method we can also use interleave component which gathers data in round robin.
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / apoorva
We can use Partition by round robin component with block size 1.
| Is This Answer Correct ? | 1 Yes | 1 No |
I am having 10 records in i/p file,and i want to load only one record at a time to the output file.Then how can i do it?
How you can test a dbc file ?
What is the difference between Generate Records Component and Create Data Component?
One file contains header,body,trailer records and header in a single row as well as trailer too.How to segregate these header,trailer and body records and once it gets segregated,i want to make the body data in reverse i.e if i have 10 body records,the 10th record should be the first record,9th record should be the second line,etc..
what is macro?At what situation we have to face?
What do you understand by a cartesian join?
What is a data processing cycle and what is its significance?
Whenever we load data into oracle table from staging table using exchange partition...then I read somewhere that data actually doesn't move in this and this command only reset the pointer in the data dictionary...so if data doesn't move then how data is loaded into the main table ? I mean wat is the point of pointer update in data dictionary?
Do we really work with ACTUALDATA in development phase.
What is the return type of lookup_not_loaded() ? Does it return 0 or 1 to signify true or false or does it return index ...can someone please explain.
What is the language used in Ab Initio ?
Have you worked with packages?