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
What is an unconnected transformation?
How to create the source and target database connections in server manager?
Tell me about your experience in informatica? what is best mark you can give yourself? How to answer this question?
What are the guidelines to be followed while using union transformation?
What is the maplet?
Explain pmcmd command usage in informatica
what is size of u r database?
what are the deliverables?in your project?
What does role playing dimension mean?
Describe data concatenation?
What are the different transaction levels available in transaction control transformation?
What is data transformation manager process?
What are the various test procedures used to check whether the data is loaded in the backend, performance of the mapping, and quality of the data loaded in informatica?
In informatics server which files are created during the session rums?
What is a rank transform?