I need to add a auto-inc surrogate key to three tables in my data warehouse:
Note: These are not the real table names
JakMaster (JakMasterId, Date) (PK) Note: JakMasterId is varchar(60)
JakToRoad (JakMasterId, Date) (FK)
JakToBig (JakMasterId, Date) (FK)
What steps should I take to add a surrogate key to these three tables so that the new keys reference each other correctly?
Thanks!
I’m assuming you are wanting to replace JakMasterId with an auto-increment field so the other two tables don’t need a varchar(60) field and to improve query times, but that you are keeping JakMasterId as information.