Is there a quick script I can use in SQL Server to change the ID from int to unique identifier without physically going through and doing it manually. I have contemplated code gen to achieve this, but I would have thought using TSQL would be the quickest if possible that is!
Share
You could do it with a script.
Note that this wont deal with your foreign key constraints and will break, if you have foreign key constraints this gets interesting, but I’m sure you can see the pattern.