if i am having 10 records in source, i want 20 records in
target...how will you do it
Answers were Sorted based on User's Feedback
Answer / abhishek kumar
create one instance of target.
means we take two target(same) his name is different but
table is same.
src->sq->tgt101
|->tgt102
after session run we check
select * from tgt ;
it will will merge the output of tgt101 and 102 and give
result in one tgt table.
| Is This Answer Correct ? | 6 Yes | 2 No |
Answer / chandra
use union TR we get it...
source---->SQ-->UNION-->TRRGET
HEERE
in union TR take 2 input groups and drag source to 2 input
groups and drag union output ports to tatget
| Is This Answer Correct ? | 5 Yes | 1 No |
Answer / gyana
pls friends try this..its easy and flexible
--------------------------------------------
SOURCE ---->SOURCE QUALIFIER------->TARGET
IN SQ WRIT THE SQL QUERY
------------------------
SELECT * FROM EMP
UNION ALL
SELECT * FROM EMP WHERE ROWNUM<11
PLS LET ME KNOW IF I AM WRONG
| Is This Answer Correct ? | 4 Yes | 2 No |
user following code in java transformation
for( int i=0;i<2;i++)
{
output_port 1=input port 1;
output_port n=input port n;
generateRow();
}
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / priyank
Take 2 instances of the same source and join them using
Union transformation which acts as the UNION ALL command of
SQL i.e. it allows duplicates too.
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / jz
drop unique constraint in target table and select only
insert in session target properties run the session twice.
| Is This Answer Correct ? | 2 Yes | 3 No |
Answer / sateesh a
run the session twice.
before running the session disable the target truncate load
option and disable the distinct option in target.
| Is This Answer Correct ? | 1 Yes | 2 No |
Answer / subbu
U can run job two times, and u can put append option in target.
| Is This Answer Correct ? | 0 Yes | 1 No |
Write the unconnected lookup syntax?
In Datastage, we have row generator stage to generate dummy row. Is there any such transformation in Informatica. Thanks in advance, Kumar
I have source like this year account month amount ----- --------- ------ -------- 1999 salaries jan 9600 1999 salaries feb 2000 1999 salaries mar 2500 2001 benfits jan 3000 2001 benfits feb 3500 2001 benfits mar 4000 -->i need target like this year account month1 month2 month3 ----- --------- -------- -------- -------- 1999 salaries 9600 2000 2500 2001 benfits 3000 3500 4000
what is lookup ?
The Source coloumns are A,B,C with data row1- 10,20,30 row2- 40,50,60 row3-70,80,90 and so on. In the target I want one coloumn with the following data, Coloumn-X, row1-10,row2- 20,row3-30,row4-40,row5-50 and so on. How to achieve this?
What do you mean by enterprise data warehousing?
i have a data in my source as a flat files what test i have to perform the next step can any body help to me
How to load last n records of file into target table - informatica
what is scd?
Differences between version 7.x and 8.x.
0 Answers Accenture, Cognizant,
If there are 3 workflows are running and if 1st workflow fails then how could we start 2nd workflow or if 2nd workflow fails how could we start 3rd workflow?
without using emailtask how will send a mail from informatica?