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 |
hi all, I have to do Informatica Certification? Can any body send me Some Informatica Certification Dumps/FAQS ? Advance Thanks... Send me----: raghukrams@yahoo.com
Can you copy the session to a different folder or repository?
What type of sorting algorithm does the Sorter Transformation use, to do its sorting Operation? 1. Bubble sort 2. Insertion sort 3. Shell sort 4. Merge sort 5. Heapsort 6. Quicksort 7. Bucket sort
What is exact use of 'Online' and 'Offline' server connect Options while defining Work flow in Work flow ?
How can a Lookup with Dynamic Cache be replaced in a mapping? Explain.
How to load last 10 records of flat file in to the target?
What is the difference between lookup override and souce qualifier override ?
write sql query following table city gender no chennai male 40 chennai female 35 bangalore male 25 bangalore female 25 mumbai female 15 i want the required output city male female chennai 40 35 bangalore 25 25 mumbai 15
What is a transaction control transformation?
What are the transformations that cannot be placed between the sort origin and the joiner transformation so that we do not lose the input sort order?
Hi Experts, I have a source table like this. Name Number Raj 2 Ram 1 Sam 2 John 1 In the target I need the ouptput like the below Raj Raj Ram Sam Sam John We dont know the number value . It will be changing as n.. Please help me regarding this. Thanks, Nataraj V
If a table contains 100 records we have to fetch 50-100 records from source to target?how