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 the difference between a shortcut of an object and copy of an object? Compare them.
Hi, What is version control in Informatia ? Can anyone just give an idea or introduction about this? Advance Thanks
how can one come to know wether the records loak into the target if we use update strategy
In which conditions we can not use joiner transformation (Limitaions of joiner transformation) ?
How to load the source table into flat file target(with columns) in informatica?
in realtime which situations u can use unconnected lookup transformation
Design a mapping to load the cumulative sum of salaries of employees into target table?
Why is sorter an active transformation?
Explian the connected and unconnected lookup transformation
ONE FLAT FILE IS THERE WHICH IS COMMA DALAMETED . HOW TO CHANGE THAT COMMA DELEMITER TO ANY OTHER AT THE TIME OF RUNNING ?
I have one source table and three target tables. When the session runs for the first time involving the mapping,i want that the loading should take place in 1st Target table only. The 2nd time the same session runs the loading should take place in 2nd Target only only and similarly when the session runs for the 3rd time loading should take place in Third only. And again when the session runs for the 4th time loading should take place in 1st Target table.
What are different types of transformations available in informatica?