How to compare two streams? #446
Unanswered
jignesh-dalal
asked this question in
Q&A
Replies: 1 comment
-
At the moment, these is no way out of the box to compare two stream. Maybe by using the |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Input Stream 1:
ID,Name
1,Danny
2,Fred
3,Sam
Input Stream 2:
ID,name
1,Danny
3,Pamela
4,Fernando
Output:
ID,name,Status
1,Danny,Unchanged
2,Fred,Deleted
3,Pamela,Changed
4,Fernando,New
Can this be achieved using Etl.Net?
Beta Was this translation helpful? Give feedback.
All reactions