For SQL server is it better to use an uniqueidentifier(GUID) or a bigint for an identity column?
|
|
That depends on what you're doing:
Update
|
|||||||||||
|
|
Jeff Atwood has already answered everything in this comprehensive post. |
|||
|
|
|
In general I'd recommend a |
|||
|
|
|
Depends no what you need. DB Performance would gain from integer while GUIDs are useful for replication and not requiring to hear back from DB what identity has been created, i.e. code could create GUID identity before inserting into row. |
|||
|
|
|
If you're planning on using merge replication then a |
|||
|
|
|
Are you doing replication or do you have sales people who run disconnected databses that need to merge, use a GUID. Otherwise I'd go for an int or bigint. They are far easier to deal with in the long run. |
|||
|
|
|
It really depends on whether or not the information coming in is somehow sequential. I highly recommend for things such as users that a GUID might be better. But for sequential data, such as orders or other things that need to be easily sortable that a bigint may well be a better solution as it will be indexed and provide fast sorting without the cost of another index. |
|||||
|
|
It really depends whether you're expecting to have replication in the picture. Replication requires a row UUID, so if you're planning on doing that you may as well do it up front. |
|||
|
|
|
Unless you have a real need for a GUID, such as being able to generate keys anywhere and not just on the server, then I would stick with using INTEGER-based keys. GUIDs are expensive to create and make it harder to actually look at the data. Plus, have you ever tried to type a GUID in an SQL query? It's painful! |
|||||
|
|
I'm with Andrew Rollings. Now you could argue space efficiency. An int is what, 8 bytes max? A guid is going to much longer. But I have two main reasons for preference: readability and access time. Numbers are easier for me than GUIDs (since I can always find the next/previous record easily). As for access time, note that some DBs can start to have BIG problems with GUIDs. I know this is the case with MySQL (MySQL InnoDB Primary Key Choice: GUID/UUID vs Integer Insert Performance). This may not be much of a problem with SQL Server, but it's something to watch out for. I'd say stick with INT or BIGINT. The only time I would think you'd want the GUID is when you are going to give them out and don't want people to be able to guess the IDs of other records for security reasons. |
|||
|
|