How can i send first half of the records to one target and
Remaining to other target?
Answer Posted / sakthi
i think we can write sql query in first source qualfier and and select another source qualifier and write sql over ride query
1)select * from employees where rownum <= ( select count(*)/2 from employees);
2)select * from employees minus (select * from employees where rownum <= ( select count(*)/2 from employees));
| Is This Answer Correct ? | 2 Yes | 1 No |
Post New Answer View All Answers
The question was on time stamp. what is the difference between HH and HH24 when to use when.
What are the differences between a connected lookup and unconnected lookup?
What do you mean by worklet?
What is DR strategy for Informatica project?
Plz can any one say me how to get the informatica certification materials and dumps
Quickly characterize reusable change?
In how many ways we can create ports?
what is the difference between informatica6.1 and infomatica7.1
What is the use of code page?
Explain the tuning lookup transformation - informatica
Why sorter is an active transformation?
Explain pmcmd command usage in informatica
What is the session task and command task?
What do mean by local and global repository?
Hi, I want to change date type char value integer value? I tried alter table tab_name modify (newcolumn newdatetype). But The columns have 10 million values(char type) so I want to load now numeric data. How it is possible? Old Values New Value(I want to load numeric data but the old value should be there in the column) Y 1 N 0 ERROR at line 1: ORA-01439: column to be modified must be empty to change datatype Please help on this. Thanks, GM