How to send duplicates to one target and unique rows to one
target?target is empty
Answer Posted / kesava reddy
Using Source Qualifier Trnsformation ,
Explantion:
1.Take 2 Source Qualifier Transformations,and
2.One sq ports connect to Target(Unique Target) then Write
a SQL Query (sqlOverride) ,
SELECT DISTINCT EMPNO,ENAME
FROM EMP;
3.TAKE ANOTHER SQ AND CONNECT TO ALL PORTS TO TARGET,THEN
DEVELOP THE SQLOVERRIDE,
SELECT * FROM EMP WHERE ROWID IN(SELECT ROWID FROM EMP
MINUS
SELECT MAX(ROWID) FROM EMP
GROUP BY EMPNO,ENAME)
| Is This Answer Correct ? | 7 Yes | 2 No |
Post New Answer View All Answers
How do you migrate data from one environment to another?
What does reusable transformation mean?
How many input parameters can exist in an unconnected lookup?
What is exclusive and normal mode for repository services?
Tell me about your experience in informatica? what is best mark you can give yourself? How to answer this question?
write sql query vertical to horiozontal following table id name 1 100 2 dinesh 3 india 1 101 2 suresh 3 india 1 103 2 prakesh 3 usa i want output like id name country 100 dinesh india 101 suresh india 103 prakesh usa
What are the different types of olap? Give an example?
Is it possible to create multiple domains on a single Informatica server?
What is joiner transformation?
define galaxy repository in informatica
What is informatica etl tool?
How can we remove the duplicates from flat file source?
Why do we need informatica?
Which are the different editions of informatica powercenter that are available?
How an expression transformation differs from aggregator transformation?