Replies: 1 comment 2 replies
-
Sorry for the late answer. Can you show me the code of the ETL process you built so far? Even an extract. It will help me to give you the correct hints and direction to follow. |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I'm using ETL.net to load data using Entity Framework, I have a transaction Data warehouse table that I want to fill from two tables from two different databases but have a field whose value is common in both.
Transaction Model for a data warehouse:
From Payment DB I will have the Payment Transaction Model:
From the sales database, I have Sales Transaction Model:
I tried to make two processes for each table ETL seek on PaymentTransactionId, but the second one always overrides the first one properties and is set as null not updating only the associated fields.
Beta Was this translation helpful? Give feedback.
All reactions