we have tables like
c1 a
c2 b
c3 c
c4 x
c5 y
and i need output like abcx in a single row and abcy in
a single row? how do u do this?
Answer Posted / krishnendu guha
I believe c1 c2 c3 are the columns
you can override the source qualifier with the following
query
select c1,c2,c3,c4 from table1
union all
select c1,c2,c3,c5 from table1
this should do..
| Is This Answer Correct ? | 10 Yes | 9 No |
Post New Answer View All Answers
lookup transformation with screenshots
What are the modules in Power Center
Why update strategy and union transformations are active? Explain with examples.
How to load last n records of file into target table - informatica
How do you load first and last records into target table?
Explain the features of connected and unconnected lookup.
What is standalone command task?
What do you understand by SOA of Informatica?
How to display session logs based upon particular dates. If I want to display session logs for 1 week from a particular date how can I do it without using unix. ?
What are the tasks that source qualifier perform?
What are junk dimensions?
How do you load unique records into one target table and duplicate records into a different target table?
Can we override a native sql query within informatica?
How to generate sequence numbers using expression transformation?
Explain why we use partitioning the session in informatica?