Reputation: 13
I want to implement SCD type 2 in databricks, I know this can be handled with MERGE. But I have historical data which is appended and am not sure how to implement SCD type 2 since the target table is empty as its initial load sample of my data.
ID | Name |
---|---|
1 | A |
2 | B |
1 | A2 |
3 | C |
3 | C2 |
Now how do implement SCD type 2 since target table is empty as its initial load.
Please do explain me with example.
Upvotes: 1
Views: 88
Reputation: 9798
You could either load the records in age order and in separate load runs - which is is unlikely to be practicable for large data volumes - or you manually create the SCD records for your historic data and then insert them into your target
Upvotes: 0