Enforcing Data Quality while using Surrogate Keys

  • I can't say I spend any time on enforcing referential data integrity since I moved from Access to SQL years ago. I've never had a problem in 10 years. As I see it, enforcing data integrity is to compensate for something that should never happen in the first place. It would be like adding if/then/else statements in .NET that would never be executed unless somewhere else in your program you did something incorrect. What it comes done to, is that it is hard to justfy spending time on it on a per application basis.

  • baconm (9/8/2009)


    This article makes it sound like you have to choose between a natural key with a unique index or a surrogate key with a unique index. Every time I use a surrogate primary key I create a unique key on the columns that comprise the natural key. Surrogate and natural keys each have their role and work best when used for the purpose they were intended. Natural keys are the basis of relational database theory and if you do not have them I do not Know why you would use a relational database. Surrogate keys can be used to simplify joins and allow the natural key to change without having to cascade all the dependent foreign keys.

    I have to agree that surrogate keys have no role during logical modeling. All entities should have a unique identifier and at the physical level you can add surrogate keys for all tables that have children and multiple column unique identifiers. I have seen "designers" that immediately switch to surrogate keys in the logical modal as soon as the unique identifier goes beyond 2 or 3 attributes without ever identifying the full natural key. It always leads to duplicates and application failure when more than one row is returned. Yes, I agree, your application is perfect and doesn't allow duplicates but users are devious and will always find that odd navigation path that will allow them to insert duplicates!

    It is also difficult to find the surrogate key for a given row if you do not know and are not enforcing uniqueness on the natural key. How often to you SELECT * FROM blahblah WHERE surrogate_key_id = 2468? Usually your first query is SELECT surrogate_key_id FROM blahblah WHERE COMPANY_NAME = "ACME" AND LOCATION = 'CINCINATTI' to get the surrogate key to use in subsequent queries. Company name and location are the natural key in BLAHBLAH and should be indexed. Using my method they are indexed as a result of being in a unique key and the surrogate key would also be indexed as the primary key.

    As a practical matter, carrying all the unique identifier columns down through all generations can lead to a natural key of 10's of columns. Here is an extreme example using what I believe are natural keys for a person and a department. I propose the natural key of a person is first, middle and last name, suffix, date and time of birth, location of birth, father and mother (who also have the same natural identifier) of the person. In this case the father and mother natural keys are comprised of 8 columns which is 16 columns for two parents plus the other 6 columns for a person makes 22 columns to identify one employee. I propose that the natural key for a department is company name, company location, date incorporated, incorporation location, (natural key for company) department name, department location and date department created. That is 6 columns. Now associate an employee with a department and you have 28 columns in the natural key for the employee department intersection table. You are looking at 34 predicates in your where clause to join these 4 tables.

    On the other hand, if you add a surrogate key to the person table (employee and parents) you drop the number of columns in the employee table to 2 surrogate columns for the parents and the 6 others for a total of 8. Now if the company table has a surrogate key the department table drops to 4 columns and if department has a surrogate key the intersaction table now has 2 columns. To join the same 4 tables there are only 3 predicates in the join clause.

    I have a question because I am not a Business Rules person. What is this Unification Business Rule? I do not understand the purpose. I searched the web and didn't get any hits in the first few pages. Can anyone give me some references so I can understand?

    I think exactly the same.

  • Wow, never had a problem! Are you a one man shop? How big is you largest database? How much data? What tool do you use to develop applications? How many applications and what is the biggest? Why do you use access instead of just storing the data in a OS file with your own structure?

    Today's RDBMS's have a lot of capabilities that you do not have to use but I prefer to have a safety net. I like to have constraint enforcement in the application to give the user prompt feedback when they enter something incorrectly and in the db so that when a developer forgets to enforce a data rule the mistake is caught before bad data is stored in the database. Even if we had perfect programmers, our users are very creative and they can find navigation paths that get around application constraints but they have never been able to bypass database constraints. As a matter of fact we have some data errors that we cannot reproduce and we had to add a unique constraint to prevent the problem. Also, the data rules are easy to find if they are located in one place, the database, and application developers can reference this information to make sure they are implementing all the data rules.

    I have never had a severe wreck but I don't intend to disable the airbags in my car since there are idiots out there that I have no control over.

  • @baconm

    If I understand Brian's post he's not entirely out in left field, although I think running with *no* data integrity is a huge mistake.

    I think what he's saying is designing an application so that it's impossible for bad data to get to the SQL engine is the best solution.

    And I half-way agree with him--but I'm a belt, suspenders and jumpsuit kind of guy myself... 🙂

    I run a one man shop and it's very nice to be developer, DBA, and systems analyst all rolled into one. Of course most folks don't understand the impact of that "tiny" new feature, but hey, that's life...

    At any rate I think letting the SQL engine handle basic integrity tasks is a much better solution. Things like referential integrity, bounds checking, unique constraints are no brainers for the DB, no question. Auditing's another DB level task that as a developer I'm *happy* to let the DB handle. The coding overhead is minimal and the results damn near foolproof.

    Howsomever:

    Some things are better handled by the application. There's no need to bother the DB with things like checking to see if input to a numeric field is actually numeric! Using combo boxes to make it impossible to choose an impossible field value is another way to leverage local processing power.

    The database is busy enough, no need to make it work harder than it must. Not to mention eliminating excessive talk on the wire, which is a good thing too.

    If you're a DBA you tend to want *everything* in the back end. Not a good idea. Your server is a limited resource being devoured by a swarm of users. Those users have abundent local resources. The best designs take advantage of those local resources.

    It's all about balance. Let the DB do what it's good at and the application do what it's good at.

Viewing 4 posts - 16 through 18 (of 18 total)

You must be logged in to reply to this topic. Login to reply