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?

Answers were Sorted based on User's Feedback



we have tables like c1 a c2 b c3 c c4 x c5 y and i need output like abcx in a single r..

Answer / 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

we have tables like c1 a c2 b c3 c c4 x c5 y and i need output like abcx in a single r..

Answer / gunjan singhal

select c1+c2+c3+c4 from table1
union all
select c1+c2+c3+c5 from table1

Is This Answer Correct ?    0 Yes 7 No

Post New Answer

More Informatica Interview Questions

what is curr val use for in sequence generator?

2 Answers   Emphasis,


What are the transformations that are not supported in mapplet?

0 Answers  


Comment on significance of oracle 9i in informatica when compared to oracle 8 or 8i?

1 Answers  


what type of transformation is not supported by mapplets?

4 Answers   CTS,


how to read data from website into informatica? plsss send answers ASAP thanks in advance.

1 Answers   DELL,






In aggregator if u enable sorted input what will be the output and disable sorted wt is output

6 Answers  


S1 is having 1 lakh records and s2 is having 100 records, s2 should compare s1 if emp no is same data should be updated if not their it should insert the data.what are the transformation used?

5 Answers   TCS,


what is confirmed dimension?

6 Answers  


How to implement security measures using repository manager?

0 Answers  


What is difference between Informatica 6.2 Workflow and Informatica Workflow 7.1

4 Answers   IBM,


what is the hint? how to use it to reduce the query processing in program?

3 Answers   Cegedim,


What are the different threads in DTM process?

2 Answers  


Categories