Informatica Scenario Segregating Unique and Duplicate Rows:Best 2 approaches

preview_player
Показать описание
The Video demonstrates how the unique and duplicate records can be segregated from source and loaded to 2 different targets.It shows 2 approaches which covers for both table and flat file as source
#InformaticaPowercenter #InformaticaTutorials #TechCoach
Рекомендации по теме
Комментарии
Автор

very clear and quick explanation. Thanks

chitravable
Автор

What if my rows are
A B X
A B Y

Will it consider duplicate since you have group by only col1 and col2

omkarkulkarni
Автор

Another variation could be : SQ query: select col1, col2, col3, count(*) OVER (PARITION BY col1, col2, col3) from scenario3. This will give you both the duplicating rows instead of just one.

vaibhavgautam
Автор

Hi...Nice explaination. However, if out of duplicate records if I want to load 1 version into target (to avoid losing data) along with the duplicate table as shown in example below, how you will handle it?


Source
Col1 Col2 Col3
A B C
A B C
P Q R
X Y Z

Target Unique :
Col1 Col2 Col3
A B C
P Q R
X Y Z

Target Duplicate :
Col1 Col2 Col3
A B C

swapnilmahalle
Автор

could you please explain with flat file as source through expression transformation in detail.

pankhuriverma
Автор

Aggregate transformation should be the last transformation right?? Then how router is used here after aggregator???

Shivraj-gtin
Автор

Nice explanation with two different approaches

ameysa
Автор

nice explanation...pls post more videos based on in string and sub string

TheSwatirock
Автор

If a file contains some special characters in records how to separate these characters ....please give me a in advance

sudeshnanath
Автор

But u did not use group by for all the three cols in aggregator. Plz explain why

AlokMauryaCSEengineer