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
Answer Posted / 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 |
Post New Answer View All Answers
What is the sequence generator transformation in informatica?
How can we remove the duplicates from flat file source?
What is lookup change?
Briefly explain the aggregator transformation?
COM components can be used in Informatica
lookup transformation with screenshots
Implementation methodology
Explain is there any way to read the ms excel datas directly into informatica? Like is there any possibilities to take excel file as target?
What is blocking transformation?
What are the performance considerations when working with aggregator transformation?
How we can use union transformation?
What are the different ways to implement parallel processing in informatica?
How to join three sources using joiner?
How to create a non-reusable instance of reusable transformations?
What are some examples of informatica etl programs?