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
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 |
SELECT F1.COL1,F2.COL2,F2.COL3 FROM A F1,A F2 ORDER BY 1,2
| Is This Answer Correct ? | 0 Yes | 0 No |
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 |
what is Partitioning ? where we can use Partition?
Describe the impact of several join conditions and join order in a joiner transformation?
How can we use mapping variables in informatica? Where do we use them?
What is the use of an aggregator cache file?
what is constraint based loading
SO many times i saw "$PM parser error " .what is meant by PM?
Explain pushdown optimization and types in informatica
What is workflow monitor?
What are steps to follow Informatica migration from 7x to 8x? Pls Explain...
In real time scenario where can we use mapping parameters and variables?
In Which scenario did u used Incremental loading?
What is meant by query override?