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
EXL informatica Questions
What is Session and Batches?
How to elaborate tracing level?
What is lookup change?
What is pmcmd command?
Explain the mapping variable usage example in informatica
Can u generate reports in Informatica?
Describe expression transformation?
What are the steps involved in the migration from older version to newer version of Informatica Server?
Explain your project of banking domian.
I have three same source structure tables. But, I want to load into single target table. How do I do this? Explain in detail through mapping flow.
Hello , I am unable to work with SQL transformation at least. Where do i need to give connection for sql transformaton ? At session level there is no property . I have created a SQL Transformation and chosen query mode. But do i need to pass connection information to it ? I don't know where do i need to write a query ? I have written a query in file and that file path i gave in the properties of SQL Transformation. But it is not working. Could any one of you please let know how can i work with SQL Transformation? Advance Thanks.
What is the sequence generator transformation in informatica?
How do you handle two sessions in Informatica
How can we store previous session logs?