vote up 2 vote down star
2

Which sql data type should we use for number bases primary key:

  1. int
  2. bigint
  3. numeric
  4. float
flag

48% accept rate
It depends! In what sort of situation? More info required please... – Mitch Wheat Nov 1 '08 at 5:50
@Ramesh Soni: you have edited the question, but you haven't provided any more information... – Mitch Wheat Nov 1 '08 at 5:56

5 Answers

vote up 8 vote down check

Generally, int.

bigint if you think you'll have more rows than there are atoms in the universe.

uniqueidentifier is useful if you need globally unique keys (keys that are guaranteed to be unique across all tables in your schema, maybe even universally unique (I don't remember))

The other two I wouldn't use they're not integral types (they have fractions, which just don't make a lot of sense as keys)

link|flag
If you choose a uniqueidentifier, then consider making it a NONCLUSTERED primary key, otherwise inserts can have performance issues. – Brannon Nov 1 '08 at 6:34
Thanks for the upgrade, Brannon. – Ken Gentle Nov 1 '08 at 16:18
int is limited 'only' around 2 billions. I already reached this limit with some logging features ;) – Mose Nov 26 at 10:44
vote up 2 vote down

You really need to keep two separate issues apart:

1) the primary key is a logical construct - one of the key candidates that uniquely and reliably identifies a row in your table. This can be anything, really - an INT, a GUID, a string - pick what makes most sense for your scenario.

2) the clustering key (the column or columns that define the "clustered index" on the table) - this is a physical storage-related thing, and here, a small, stable, ever-increasing data type is your best pick - INT or BIGINT as your default option.

By default, the primary key on a SQL Server table is also used as the clustering key - but that doesn't need to be that way! I've personally seems massive performance gains over time when breaking up the previous GUID-based Primary Clustered Key into two separate key - the primary (logical) key on the GUID, and the clustering (ordering) key on a separate INT IDENTITY(1,1) column.

The index fragmentation was down to minimal levels, and thus the index seek performance was was up - highly recommended !

Marc

link|flag
Yeah totally agreed Marc - just it's pretty rare for average folk to see beyond the diagramming tools, and it's oh so easy to to right-click, set PK... – stephbu Jan 31 at 7:19
vote up 1 vote down

One huge reason to not use GUIDs for PKs is their terrible fill ratio for index pages - such misuse can dramatically increase your I/O performance costs. GUIDs should be left as AK's and instead drive queries with int-derived PK's wherever possible.

link|flag
That really is a bit inaccurate - GUID as a PK is okay- GUID as the CLUSTERING KEY is a desaster. The PK per se has no effect on the physical data organisation - that's the clustering key's job :) – marc_s Jan 28 at 21:57
vote up 1 vote down

unsigned int of whichever size that meets your particular needs

link|flag
1  
Except SQL server doesn't have unsigned datatypes. – Joe Jan 28 at 22:06
vote up 0 vote down

for 32-bit processors, an int is likely to be the most efficient size for processing.

link|flag
The word boundaries are less relevant than the space occupied switching up from Int to BigInt - unless you expect a row count in the billions, save the row bytes and spend them elsewhere. I/O cost is several orders more expensive than memory access. – stephbu Nov 1 '08 at 6:15
Agreed, I'm just adding another reason to use int. – le dorfier Nov 1 '08 at 19:07

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.