I am having a FLAT FILE SOURCE as first line:
1000,null,null,null
second line as:null,2000,null,null 3rd line
as :null,null,3000,null and final line as:
null,null,null,4000 ............................Now i want
the OUTPUT as 1000,2000,3000,4000 to a FLAT FILE only.For
more clarification i
want to elimate nulls and want in a single line. Please
help me out
Answer Posted / maheshkumar bvn
first convert flat file to oracle table
create table num_test(field1 int,field2 int,field3
int,field4 int);
insert into num_test values(1000,null,null,null);
insert into num_test values(null,2000,null,null);
insert into num_test values(null,null,3000,null);
insert into num_test values(null,null,null,4000);
select max(field1),max(field2),max(field3),max(field4) from
num_test;
result:
1000 2000 3000 4000
| Is This Answer Correct ? | 7 Yes | 8 No |
Post New Answer View All Answers
How can you increase the performance in joiner transformation?
Sequence generator, when you move from develoment to production how will you reset
Tell me any other tools for scheduling purpose other than workflow manager pmcmd?
Explain about cumulative Sum or moving sum?
What is native users?
What are pre and post-session shell commands?
which one is better performance wise joiner or look up
What do you mean incremental aggregation?
The question was on time stamp. what is the difference between HH and HH24 when to use when.
What is a sequence generator transformation?
Separate from an archive server and a powerhouse?
Hi all , I am planning for informatica S - PowerCenter 8 Mapping Design certification. I have rewuired the dumps for the same. if anyone of you having the same pl. share it with me. This will be of great help. My contact is : sagardev7@gmail.com TIA , Sagar
What is event and what are the tasks related to it?
Can we use the mapping parameter or variables developed in one mapping into any other reusable transformation?
Differentiate between Load Manager and DTM?