vote up 4 vote down star
1

Hello,

in work we have big database with unique indexes instead of primary keys and all works fine.

I`m designing new database for new project and I have a dilema:

in DB theory, primary key is fundamental element,it`s OK... but in REAL projects what are adventages and disadventages of both?

what do you use in projects?

EDIT:...and what about primary keys and replication on mssql server?

flag

79% accept rate

10 Answers

vote up 2 vote down

You can see it like this:

A Primary Key IS Unique

A Unique value doesn't have to be the Representaion of the Element

Meaning?; Well a primary key is used to identify the elemnt, if you have a "Person" you would like to have a Personal Identification Number ( SSN or such ) which is Primary to your Person.

On the other hand, the person might have an e-mail which is unique, but doensn't identify the person.

I always have Primary Keys, even in relationship tables ( the mid-table / connection table ) i might have them. Why? Well i like to follow a standard when coding, if the "Person" has an identifiery, the Car has an identifier, well, then the Person -> Car should have an identifier aswell!

link|flag
In your relationship tables: do you mean you introduce a new column with an artificial primary key (an integer for example) or do you use a composed primary key (person_id, car_id)? – unbeknown Jan 28 at 12:20
primary key (person_id, car_id) would be the best. But i generally create a new column, sure it gives some overhead but i've concidered it being good. You never know if you want to relate to a specific relation in a later scenario. – Filip Ekberg Jan 28 at 12:28
The other thing the surrogate primary key does for your composite/join table is ease maintenance of manual tasks. – Robert C. Barth Jan 28 at 19:35
You only need a primary key if you're going to have children. Why add a column and a sequence if the value appears nowhere, if the value is used for nothing? It's make-work in order to stop Access from asking for a PK. Make a PK if you need to identify the record in a child, otherwise it's a waste. – Mark Brady Feb 16 at 20:57
No, you don't throw away primay keys just because you won't have children, and you never know if the system grows big and one day actually need relations. A Primay key is used to determen what field is PRIMARY, initially has nothing to do with relations. – Filip Ekberg Feb 17 at 11:28
show 1 more comment
vote up 1 vote down

If something is a primary key, depending on your DB engine, the entire table gets sorted by the primary key. This means that lookups are much faster on the primary key because it doesn't have to do any dereferencing as it has to do with any other kind of index. Besides that, it's just theory.

link|flag
the table will ve sorted by the clustered index not neccesarily by the primary key. – Ray Booysen Jan 28 at 11:37
it just so happens that most people set their primary key to be the clustered index. – Ray Booysen Jan 28 at 11:39
Which we know is often a Really Bad Idea, unless we like hot-spots and unbalanced index trees in our tables, of course... – Mike Woodhouse Jan 28 at 12:49
1  
It's not ALWAYS a Really Bad Idea. Know your data, know your RDBMS, know what the choices mean. Rarely is choice ALWAYS good or bad. If was ALWAYS one, the database would mandate it or disallow it. They give you the choice because 'It Depends.' – Mark Brady Feb 16 at 21:10
vote up 0 vote down

In addition to what the other answers have said, some databases and systems may require a primary to be present. One situation comes to mind; when using enterprise replication with Informix a PK must be present for a table to participate in replication.

link|flag
vote up 0 vote down

As long as you do not allow NULL for a value, they should be handled the same, but the value NULL is handled differently on databases(AFAIK MS-SQL do not allow more than one(1) NULL value, mySQL and Oracle allow this, if a column is UNIQUE) So you must define this column NOT NULL UNIQUE INDEX

link|flag
1  
MS-SQL does allow multiple NULL values in a column that has a unique index, as should every RDBMS. Think of it this way: NULL is not a value, so when you insert a second NULL, it will never match an existing one. The expression (NULL == NULL) does not evalute to true or false, it evaluates to NULL. – gregmac Jan 29 at 5:03
thanx gregmac, I was not sure, if MS follows this. I remembered some MS Quirks with this, however some years ago(pre 2000) and could also be an old access-DB cough – Peter Parker Jan 29 at 10:41
+1 @gregmac for Null == Null is Null. – Mark Brady Feb 16 at 21:34
vote up 1 vote down

There are no disadvantages of primary keys.

To add just some information to @MrWiggles and @Peter Parker answers, when table doesn't have primary key for example you won't be able to edit data in some applications (they will end up saying sth like cannot edit / delete data without primary key). Postgresql allows multiple NULL values to be in UNIQUE column, PRIMARY KEY doesn't allow NULLs. Also some ORM that generate code may have some problems with tables without primary keys.

UPDATE:

As far as I know it is not possible to replicate tables without primary keys in MSSQL, at least without problems (details).

link|flag
There is overhead when new rows are inserted or that column is updated . – Mark Brady Feb 16 at 21:11
vote up 2 vote down

Foreign keys work with unique constraints as well as primary keys. From Books Online:

A FOREIGN KEY constraint does not have to be linked only to a PRIMARY KEY constraint in another table; it can also be defined to reference the columns of a UNIQUE constraint in another table

For transactional replication, you need the primary key. From Books Online:

Tables published for transactional replication must have a primary key. If a table is in a transactional replication publication, you cannot disable any indexes that are associated with primary key columns. These indexes are required by replication. To disable an index, you must first drop the table from the publication.

Both answers are for SQL Server 2005.

link|flag
THAT scares the hell out of me (first quote). Why? I have a person table with an arbitrary ID that's my PK but I decide to add a UK to Phone, Email, & SSN... so now 4 different tables join to person on 4 different columns? I think I'd forgo any flexibility you might get for consistency. – Mark Brady Feb 16 at 21:05
vote up 1 vote down

There is no such thing as a primary key in relational data theory, so your question has to be answered on the practical level.

Unique indexes are not part of the SQL standard. The particular implementation of a DBMS will determine what are the consequences of declaring a unique index.

In Oracle, declaring a primary key will result in a unique index being created on your behalf, so the question is almost moot. I can't tell you about other DBMS products.

I favor declaring a primary key. This has the effect of forbidding NULLs in the key column(s) as well as forbidding duplicates. I also favor declaring REFERENCES constraints to enforce entity integrity. In many cases, declaring an index on the coulmn(s) of a foreign key will speed up joins. This kind of index should in general not be unique.

link|flag
A primary key in MS SQL Server always is both UNIQUE and NOT NULL - e.g. it's really just a Unique index, but with the added restriction that it cannot be NULL. – marc_s Jan 31 at 21:53
Oracle can enforce a Unique Constraint with a non-unique index. I'd be surprised if MSSS couldn't. Saying "it's really just a unique index" is a disservice. – Mark Brady Feb 16 at 21:36
vote up 0 vote down

OK thanks guys I try to design my database with primary keys,

but another related question

What about bussiness specific primary keys?

I read somewhere, that primary keys should be unique numbers not related with bossiness model

link|flag
vote up 0 vote down

I almost never create a table without a numeric primary key. If there is also a natural key that should be unique, I also put a unique index on it. Joins are faster on integers than multicolumn natural keys, data only needs to change in one place (natural keys tend to need to be updated which is a bad thing when it is in primary key - foreign key relationships). If you are going to need replication use a GUID instead of an integer, but for the most part I prefer a key that is user readable especially if they need to see it to distinguish between John Smith and John Smith.

The few times I don't create a surrogate key are when I have a joining table that is involved in a many-to-many relationship. In this case I declare both fields as the primary key.

link|flag
vote up 0 vote down

The choice of when to use a surrogate primary key as opposed to a natural key is tricky. Answers such as, always or never, are rarely useful. I find that it depends on the situation.

As an example, I have the following tables:

CREATE TABLE toll_booths (
    id            INTEGER       NOT NULL PRIMARY KEY,
    name          VARCHAR(255)  NOT NULL,
    ...
    UNIQUE(name)
)

CREATE TABLE cars (
    vin           VARCHAR(17)   NOT NULL PRIMARY KEY,
    license_plate VARCHAR(10)   NOT NULL,
    ...
    UNIQUE(license_plate)
)

CREATE TABLE drive_through (
    id            INTEGER       NOT NULL PRIMARY KEY,
    toll_booth_id INTEGER       NOT NULL REFERENCES toll_booths(id),
    vin           VARCHAR(17)   NOT NULL REFERENCES cars(vin),
    at            TIMESTAMP     DEFAULT CURRENT_TIMESTAMP NOT NULL,
    amount        NUMERIC(10,4) NOT NULL,
    ...
    UNIQUE(toll_booth_id, vin)
)

We have two entity tables (toll_booths and cars) and a transaction table (drive_through). The toll_booth table uses a surrogate key because it has no natural attribute that is not guaranteed to change (the name can easily be changed). The cars table uses a natural primary key because it has a non-changing unique identifier (vin). The drive_through transaction table uses a surrogate key for easy identification, but also has a unique constraint on the attributes that are guaranteed to be unique at the time the record is inserted.

http://database-programmer.blogspot.com has some great articles on this particular subject.

link|flag

Your Answer

Get an OpenID
or

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