I have a development database where I have added new records to a number of tables.
I want to move these changes to production database. The problem is that the ID columns in both have different values.
For ex. Last StudentId in dev is 10 and in production it is 25. Therefore the corresponding FK IDs also different.
I have generated scripts but I am bit puzzled on how to execute on production because of this issue.
One other approach is that I have even exported data from tables and pasted to Excel. In Excel I will update the IDs and paste this to production table.
What is the best practice to do this safely?