Re: Are redundant fields ever appropriate?

From: --CELKO-- <71062.1056_at_compuserve.com>
Date: 5 Dec 2001 19:16:45 -0800
Message-ID: <c0d87ec0.0112051916.26f8c99f_at_posting.google.com>


>> [post rant later] Please do - I can't see why there's a problem
with the identity column - it provides an easy way of defining a primary key for any/all
tables. <<

When youy look at the reality you are trying to model, do you identify EVERYTHING in the entire universe by an integer? Well, if you were Pythagorus you would <g>.

The IDENTITY column is a hold over from the early programming language which were <i>very<i> close to the hardware. For example, the fields in a COBOL or FORTRAN program were assumed to be physically located in main storage in the order they were declared in the program. This meant that you could define a template that overlaid the same physical space and read the representation in several different ways. In COBOL, the command was REDEFINES, EQUIVALENCE in FORTRAN and a union in 'C'.

From a logical viewpoint, this redefinition makes no sense at all. It is confusing the numeral with the number the numeral represents. The history of programming after this point in time has been to divorce the logical and physical models completely.

The early SQLs were based on existing file systems. The data was kept in physically contiguous disk pages, in physically contiguous rows, made up of physically contiguous columns. In short, just like a deck of punch cards or a magnetic tape.

But physically contiguous storage is only one way of building a relational database and it is not always the best one. But aside from that, the whole idea of a relational database is that user is not supposed to know how things are stored at all, much less write code that depends on the particular physical representation in a particular release of a particular product.

One of the biggest errors is the IDENTITY column in the Sybase family (SQL Server and Sybase). People actually program with this "feature" and even use it as the primary key for the table! Now, let's go into painful details as to why this thing is bad.

The practical considerations are that IDENTITY is proprietary and non-portable, so you know that you will have maintenance problems when you change releases or port your system to other products. It also has some very strange bugs in both Sybase and SQL Server; go to a newsgroup and do a search.

But let's look at the logical problems. First try to create a table with two columns and try to make them both IDENTITY columns. If you cannot declare more than one column to be of a certain datatype, then that thing is not a datatype at all, by definition.

Next, create a table with one column and make it an IDENTITY column. Now try to insert, update and delete different numbers from it. If you cannot insert, update and delete rows from a table, then it is not a table by definition.

Finally create a simple table with one IDENTITY column and a few other columns. Use a few statements like

INSERT INTO Foobar (a, b, c) VALUES  ('a1', 'b1', 'c1'); 
INSERT INTO Foobar (a, b, c) VALUES  ('a2', 'b2', 'c2'); 
INSERT INTO Foobar (a, b, c) VALUES  ('a3', 'b3', 'c3'); 

to put a few rows into the table and notice that the IDENTITY column sequentially numbered them in the order they were presented. If you delete a row, the gap in the sequence is not filled in and the sequence continues from the highest number that has ever been used in that column in that particular table.

But now use a statement with a query expression in it, like this:

INSERT INTO Foobar (a, b, c)
SELECT x, y, z
  FROM Floob;

Since a query result is a table, and a table is a set which has no ordering, what should the IDENTITY numbers be? The entire, whole, completed set is presented to Foobar all at once, not a row at a time.  There are (n!) ways to number (n) rows, so which one do you pick? The answer has been to use whatever the physical order of the result set happened to be. That non-relational phrase "physical order" again.

But it is actually worse than that. If the same query is executed again, but with new statistics or after an index has been dropped or added, the new execution plan could bring the result set back in a different physical order. Can you explain from a logical model why the same rows in the second query get different IDENTITY numbers? In the relational model, they should be treated the same if all the values of all the attributes are identical.

Think about trying to do replication on two databases that differ only by an index, or by cache size or something that occasionally gives them different execution plans for the same statements. Want to try to maintain such a system?

There are better ways of creating identifiers. But you have to think about it, design it and it is not easy. IDENTITY on the other hand is the lazy programmer's way of getting something done fast, but not right.

>> I'm planning to run out and buy 1 or 2 of your texts in the near
future <,

My house payments thank you, sir.

>> Using identity columns (or in InterBase, generators or in other
systems autoinc fields) also simplifies SQL statements greatly. <<

There are lots of lazy programmers in the world. How do you verify that the key is assigned to the correct entity? When someone grabs the same tape and inserts the same rows into a table, how do you back out the dups? If you have a redundant natural key, then why did you ruin your portability by adding the IDENTITY column?

>> Do you think that one can ever be justified in having a table with
just one row? <<

Yes, and also a table with no rows, if that is what the reality from which the model is drawn looks like. Hopefully, it will be a table of something like customer complaints ... Received on Thu Dec 06 2001 - 04:16:45 CET

Original text of this message