Hi,
I have some requirement:
Target table:
PK1 | Pk2 | Pk3 | Column1 | Status |
A | B | C | test1 | Active |
D | E | F | test1 | Active |
G | H | I | test1 | Active |
Source table:
PK1 | Pk2 | Pk3 | Column1 | Status |
A | B | C | test1 | Active |
D | E | F | test1 | Active |
My data flow is like :
Source--->Query--->Table Comparison--->Map Operation-->Target.
inside table comparison I am using PK1,PK2,PK3 as primary key and compare column as Status.
in Map operation : Delete : Update
Final Target table should be:
PK1 | Pk2 | Pk3 | Column1 | Status |
A | B | C | test1 | Active |
D | E | F | test1 | Active |
G | H | I | test1 | Inactive |
I am not getting this result as its not detecting the deleted rows which are not in source.
Any help will be much appreciated.
Thanks in advance.
-Amit