show/hide this revision's text 6 edited tags
show/hide this revision's text 5 edited tags
show/hide this revision's text 4 deleted 338 characters in body

I use several referenced tables with integer primary keys. Now I want to change ints to GUIDs leaving all references intact. What is the easiest way to do it?

Thank you!

Addition

I do understand the process in general, so I need more detailed advices, for example, how to fill new GUID column. Using default value newid() is correct, but what for already existing rows?

Addition 2

I see, as for old rows it can be done using a kind of query after setting default [id2] value to newid():

INSERT INTO [Test] [text] SELECT [text] FROM [Test];
DELETE FROM [Test] WHERE [id2] IS NULL;

([id] - old int primary key, [id2] - new GUID based primary key, [text] - meaningful data)

show/hide this revision's text 3 Added a query to rebuild primary key
show/hide this revision's text 2 Clarified question
show/hide this revision's text 1