i have a source table

ID NAME SAL

101 A 1000
102 B 2000
103 C 1500

target load should be

ID NAME SAL

101 A 1000
101 B 2000
101 C 1500
102 A 1000
102 B 2000
102 C 1500
103 A 1000
103 B 2000
103 C 1500

Answers were Sorted based on User's Feedback



i have a source table ID NAME SAL 101 A 1000 102 B 2000 103 C 1500 target load sh..

Answer / raj

In SQL override write tha fallowing query

select a.id,b.name,b.sal from <table name> a,<table name> b

The above query is nothing but a cartesion product.

Is This Answer Correct ?    23 Yes 0 No

i have a source table ID NAME SAL 101 A 1000 102 B 2000 103 C 1500 target load sh..

Answer / sudheer113

SELECT F1.COL1,F2.COL2,F2.COL3 FROM A F1,A F2 ORDER BY 1,2

Is This Answer Correct ?    0 Yes 0 No

i have a source table ID NAME SAL 101 A 1000 102 B 2000 103 C 1500 target load sh..

Answer / kondeti srinivas

IF IT IS SOURCE FLAT FILE THEN SQL OVER RIDE WILL NOT WORK

IF IT IS FLAT FILE USE UNION TRANSFORMER AND
CONNECT 3 SAME SOURCE STRUCTURES OF FLAT FILES TO UNION T/F AND CONNECT TO TARGET. IT WILL GIVE THE REQUIRED OUTPUT

Is This Answer Correct ?    1 Yes 2 No

Post New Answer

More Informatica Interview Questions

How can you define a transformation? What are different types of transformations in Informatica?

10 Answers  


i have two sources two flatfiles same structure one flatfile contain 100 million recs another flatfile contain 10 million recs i have to connect single target(performance oriented answer) what are the steps we have to do this scenario

4 Answers   Polaris,


what is filelist concept in informatica

4 Answers  


Filter transformation in the condition one of the data is NULL would the record be dropped.

2 Answers  


What is the use of target designer?

0 Answers  






If one flat file contains n number records., we have to load in target from 51 to 100.. how to use expressions in Informatica..?

2 Answers  


how can u generate sequence of values in which target has more than 2billion of records.(but with sequence generator u can generate upto 2 biliion only)

6 Answers   Accenture,


Explain lookup transformation in informatica

0 Answers   Informatica,


what are the limitations of pushdown optimization technique ? Advance thanks

3 Answers   Puma,


What are the differences between oltp and olap?

0 Answers  


What is batch and describe about types of batches?

2 Answers  


difference between source based commit? and target based commit? which is better with respect to performance?

6 Answers   IBM,


Categories