Moving from ints to GUIDs as primary keys - Stack Overflow most recent 30 from stackoverflow.com2009-11-27T12:10:59Zhttp://stackoverflow.com/feeds/question/138177http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/138177/moving-from-ints-to-guids-as-primary-keys4Moving from ints to GUIDs as primary keysAlexander Prokofyev2008-09-26T07:40:27Z2008-10-08T15:44:00Z
<p>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?</p>
<p>Thank you!</p>
<p><strong>Addition</strong></p>
<p>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?</p>
http://stackoverflow.com/questions/138177/moving-from-ints-to-guids-as-primary-keys/138185#1381852Answer by Glenn Slaven for Moving from ints to GUIDs as primary keysGlenn Slaven2008-09-26T07:42:42Z2008-09-26T08:16:28Z<p>Firstly: Dear God why?!?!?</p>
<p>Secondly, you're going to have to add the GUID column to all your tables first, then populate them based on the int value. Once done you can set the GUIDs to primary/foreign keys then drop the int columns.</p>
<p>To update the value you'd do something like</p>
<ol>
<li>Set the new GUIDs in the primary key table</li>
<li>Run this:</li>
</ol>
<p>.</p>
<pre><code>UPDATE foreignTable f
SET f.guidCol = p.guidCol
FROM primaryTable p
WHERE p.intCol = f.intCol
</code></pre>
http://stackoverflow.com/questions/138177/moving-from-ints-to-guids-as-primary-keys/138191#1381912Answer by Mike Stone for Moving from ints to GUIDs as primary keysMike Stone2008-09-26T07:46:03Z2008-09-26T07:53:56Z<p>Yeah, I'm with Glenn... I was actually hesitating on posting the same thing before he posted it....</p>
<p>Why would you not want an auto increment int primary key separate from your GUID? it's a lot more flexible, and you can just have the GUID column indexed so you have good performance on your queries...</p>
<p><hr /></p>
<p>As for the flexibility, I like to keep my id's as autoincrement ints because then the other seemingly unique and primary-key worthy item can change.</p>
<p>A great case of the flexibility is if you use usernames as a primary key. Even if they are unique, it is nice to be able to change them. What if users use an email address as their username? Being able to change the username and have it not affect all your queries is a big plus, and I suspect the same could be true with your GUIDs....</p>
http://stackoverflow.com/questions/138177/moving-from-ints-to-guids-as-primary-keys/138196#1381960Answer by TcKs for Moving from ints to GUIDs as primary keysTcKs2008-09-26T07:47:48Z2008-09-26T07:47:48Z<p>I think, you must do it manualy. Or you can write some utility for it. The scenario should be:</p>
<ul>
<li>Duplicate the "int" PK/FK columns with new "guid" columns.</li>
<li>Generates new values for "guid" PK columns.</li>
<li>Update values in "guid" FK columns with specified values ( you find the records via "int" PK ).</li>
<li>Remove references ( relations ) with "int" PK/FK columns.</li>
<li>Create similar references ( relations ) with "guid" PK/FK columns.</li>
<li>Remove "int" PK/FK columns.</li>
</ul>
http://stackoverflow.com/questions/138177/moving-from-ints-to-guids-as-primary-keys/138197#1381976Answer by Andy Jones for Moving from ints to GUIDs as primary keysAndy Jones2008-09-26T07:48:08Z2008-09-26T07:57:40Z<ul>
<li>Create a new column for the guid
value in the master table. Use the
uniqueidentifier data type, make it
not null with a newid() default so
all existing rows will be populated.</li>
<li>Create new uniqueidentifier columns
in the child tables.</li>
<li>Run update statements to build the guild relationships using the exisitng int relationships to reference the entities.</li>
<li>Drop the original int columns.</li>
</ul>
<p>In addition, leave some space in your data/index pages (specify fillfactor < 100) as guids are not sequential like int identity columns are. This means inserts can be anywhere in the data range and will cause page splits if your pages are 100% full.</p>
http://stackoverflow.com/questions/138177/moving-from-ints-to-guids-as-primary-keys/138269#1382693Answer by magius for Moving from ints to GUIDs as primary keysmagius2008-09-26T08:18:29Z2008-09-26T08:29:47Z<p>This is relevent in a system that implements the <strong>distributed computing model</strong>. If the system is required to know the primary key at the time when you persist information in the system, the use of a auto-incrementing primary key maintained by <strong>ONE</strong> handler will slow down the system. Instead, you need a mechanism like a GUID generator to create primary key (keep in mind that the true feature of a primary key is its uniqueness). So, I can scale up with multiple services, each creating its primary key, independently of each other.</p>
<p>I had dubious privilege of doing this before and basically what I had to do was to export the whole damned database into XML. Next, I had a Java application that uses the java.util.Random's nextLong() function to replace the primary key with their new guid keys. After that I imported the whole thing back in to the database. </p>
<p>Of course, the first time I tried to import the XML files back, I forgot to turn off the auto-number feature of the primary key field, so do learn from my mistakes. I'm sure that there're better ways of doing it, but this was a fast and dirty way of doing it ... and it worked. In case you wondering, the project was to make the application scale.</p>
http://stackoverflow.com/questions/138177/moving-from-ints-to-guids-as-primary-keys/138324#1383240Answer by Michael for Moving from ints to GUIDs as primary keysMichael2008-09-26T08:37:18Z2008-09-26T08:37:18Z<p>Funny I think I need to do the exact opposite because of another problem...</p>
<p><a href="http://stackoverflow.com/questions/138302/how-can-use-sqlbulkcopy-on-a-table-with-a-guid-primary-key-and-default-newseque">http://stackoverflow.com/questions/138302/how-can-use-sqlbulkcopy-on-a-table-with-a-guid-primary-key-and-default-newseque</a></p>
http://stackoverflow.com/questions/138177/moving-from-ints-to-guids-as-primary-keys/138336#1383360Answer by bernardn for Moving from ints to GUIDs as primary keysbernardn2008-09-26T08:45:42Z2008-09-26T08:45:42Z<p>It's a very good choice. I switched from longs to UUID for one of my applications and I don't regret it. If you use MS SQL Server it is included in standard (I use postgresql and it's only included in standard from 8.3 on). </p>
<p>Like mentioned by <a href="http://stackoverflow.com/questions/138177/moving-from-ints-to-guids-as-primary-keys#138185">Glenn Slaven</a>, you can recreate UUIDs from the keys you have in your current records. Be aware that they will not be unique though but that way it's easy to keep the relationships intact. New records you create after the move will be unique.</p>
http://stackoverflow.com/questions/138177/moving-from-ints-to-guids-as-primary-keys/138342#1383420Answer by Keith Williams for Moving from ints to GUIDs as primary keysKeith Williams2008-09-26T08:49:21Z2008-09-26T08:49:21Z<p>DON'T DO IT! We started out using GUIDs, and now we've almost finished moving to INTs as PKs; we're retaining the GUID for logging purposes (and for some tables of, er, "negotiable relational integrity" ;) ), but the speed increase of using ints has been phenomenal.</p>
<p>This only really became apparent when the table rowcounts crossed into millions, mind you.</p>
<p>Our biggest folly by far was using a NEWID() as the PK of our (sequential) log table - there was much head-smacking when we realised our error.</p>