Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Mailing Lists -> Oracle-L -> RE: PK or not PK

RE: PK or not PK

From: John Carlson <jcarlson_at_cj.com>
Date: Wed, 07 May 2003 15:41:39 -0800
Message-ID: <F001.00593388.20030507154139@fatcity.com>


It looks like I am outnumbered and need the PK. However; the main argument seems to be to ensure I don't have duplicate data. As I see it, if I add a PK which is only an artificially generated sequence number that has no meaning, I can still get duplicate data. It will just have a unique number assigned to it. That might make it easier to clean up if I knew which sequence numbers to delete but then, you might be able to use the rowid for the same purpose. There are also times you expect duplicate rows so you can count the number of times an event happened.

Just to clarify a few points, we are on Unix, Sun, oracle 9.2. I have been a DBA for over 20 years and 10 years on oracle. I believe in primary keys, foreign keys, and enforcing logical relationships. I am just saying that there are times when some of the rules don't fit the application. Yes, I have had to clean up data integrity problems in the past but most of those have been where the table did have a primary key and someone updated the wrong data.

One other tidbit of info we have found. If you are using partitioned tables and doing a lot of 'exchange partition' operations, the use of a primary key greatly slows the process down. However, you can still have a unique index, just don't call it a PK. One of Oracle's little idiosyncrasies.

Thanks for the help.
John

-----Original Message-----
Sent: Wednesday, May 07, 2003 2:34 PM
To: Multiple recipients of list ORACLE-L

I find any amount of resources used, large or small, to ensure data integrity has a greater ROI for the business than not having data integrity. The small costs you save up front by skimping on relational design will cost the business many times more in support and maintenance.

Currently we have a similar issue with an Application Engineer, the engineers stance on the database is that it should be interchangeable at a moments notice. In other words, treating the database as a black box that only stores data. What most OO engineers fail to realize is that data integrity starts with the data not the application. Applications come and go but the data will continue to be accessed from the database.

Getting back to your question to PK or not PK, you'll be wise if you use PK's on your tables. If you don't use PK's you'll find yourself fighting the never ending battle of data cleanup.

Mark Moynahan

-----Original Message-----
Sent: Wednesday, May 07, 2003 12:07 PM
To: Multiple recipients of list ORACLE-L

I am searching for arguments for NOT having a primary key. All I seem to find are discussions about how to use artificial or surrogate keys but nothing about not needing them at all.

For example, a one to many relationship. Parent table has a primary key but the child table does not have any natural unique key. You create a foreign key with a non-unique index on the child table and that is all you really need. Now, the application queries the parent child relationship and lists rows for a given parent. The user then selects one of the rows and the program needs to select that record for update. This can easily be accomplished with rowid; however, our developers use a tool which ( in an effort to be a generic tool ) cannot handle oracle's rowid and insists on having a primary key on the child table.

My argument is that this is a total waste of resources. It takes overhead to maintain an index and it also consumes disk space and serves no useful purpose. Their argument is that they want their code to be independent of the database so we could switch from oracle to any other database without changing any code. I say that is ridiculous because you always have to 'tune' your code to work efficiently and each one has their own unique requirements. Another argument is that in a true relational database, all tables must have a primary key. I don't know anyone who has a 'true' relational database just like you are supposed to use third normal form. But, in order to help queries be more efficient, we often back off to second normal form. It just isn't realistic or practical in the real world to conform to all the 'rules'.

Can anyone help me out or am I fighting a loosing battle?

TIA,
John Carlson
www.cj.com
Santa Barbara, CA. USA
--
--

Please see the official ORACLE-L FAQ: http://www.orafaq.net
--

Author: John Carlson
  INET: jcarlson_at_cj.com

Fat City Network Services    -- 858-538-5051 http://www.fatcity.com
San Diego, California        -- Mailing list and web hosting services
---------------------------------------------------------------------
To REMOVE yourself from this mailing list, send an E-Mail message to: ListGuru_at_fatcity.com (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing). Received on Wed May 07 2003 - 18:41:39 CDT

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US