0

Can we add new columns to existing type 2 (slowly changing) table ?

1 Answers1

0

Yes, you could because the updation of data to a new row would still be based on surrogate key.

So, still your data would be updated to a new row in case of redundant with a same surrogate key version even if u alter the table with a new column

Himanshu
  • 3,830
  • 2
  • 10
  • 29
  • Dont you think the definition of surrogate key will change.. and how do you backfill data when a new column is added in SCD2 .. what happens to the existing data – user3590303 Jan 27 '20 at 17:12
  • Not really the surrogate key will change the behaviour but it will change its value depending upon the data as it comes. – Himanshu Jan 27 '20 at 18:24