By: Armando Prato | Updated: 2007-07-30 | Comments (9) | Related: 1 | 2 | 3 | 4 | 5 | > Constraints
Problem
Some time ago, I had a water cooler discussion with one my company's java developers about maintaining data integrity. His belief was that all data integrity checks should be handled in the logic tier of an n-tier system. I politely explained why I consider this a bad practice. Foreign keys are specifically provided by SQL Server to prevent your database from storing invalid data relationships and should be a mainstay in every relational database model developed!
Solution
Foreign keys are part of the family of constraints that SQL Server provides to ensure database integrity. You may be familiar with other constraint types that help maintain data integrity such as Primary Key constraints, Unique constraints, Default constraints, and Check constraints. Each of these constraint types serves a specific purpose. The foreign key's purpose is to ensure the relationship integrity between a parent table and its child tables.
You can define a foreign key as follows
ALTER TABLE DBO.<child table> ADD CONSTRAINT <foreign key name> FOREIGN KEY <child column> REFERENCES DBO.<parent table>(<parent column>) {ON [DELETE|UPDATE] CASCADE} |
The following example declares that a line item row cannot exist without an associated order header row. The ON DELETE CASCADE option tells the database engine that if the parent ORDER HEADER row's ORDERNUMBER is deleted, then any LINE ITEM tied to the ORDER HEADER by the deleted ORDERNUMBER should be automatically deleted as well.
ALTER TABLE DBO.LINEITEM ADD CONSTRAINT FK_LINEITEM_ORDERNUMBER FOREIGN KEY (ORDERNUMBER) REFERENCES DBO.ORDERHEADER(ORDERNUMBER) ON DELETE CASCADE |
There are obvious reasons for defining foreign key constraints in your data model
- They physically define the business by preventing data integrity issues in your database. (e.g. The database prevents line items from being created without an existing order header)
- They logically document the business by showing how all data relates to each other. To someone new to your organization, this allows him/her to get a good understanding of how the business works. (e.g. Every order taken must have a valid customer assigned)
- Foreign Keys are native to SQL Server and are designed to prevent data integrity issues. Business logic developers should not be in the business of verifying table relationships.
The not so obvious
- If defined and indexed correctly, they can be leveraged by the SQL Server query engine to generate extremely efficient query plans.
Unlike primary key constraints and unique constraints, foreign key constraints are not automatically indexed by SQL Server. However, indexing the column used in your foreign key is a good idea for a few reasons
- Without an index, user deletion of a parent row from the database would force the SQL Server query engine to scan the child table referenced in the foreign key to ensure that data integrity is not compromised. Consider a child table with hundreds of thousands of rows; an index can speed this lookup considerably.
- The performance of the foreign key CASCADE options (ON DELETE CASCADE, ON UPDATE CASCADE) can be improved dramatically with the use of an index since the engine performs a query to search for the rows that should be automatically deleted or updated.
- The performance of JOINs between the parent and child tables on the foreign key column is greatly improved. It's a natural assumption that tables that are related may be queried together to produce result sets. Consider the earlier ORDERHEADER/LINEITEM example. It would be natural for queries to be executed that would require not only elements of the LINE ITEMs but also of the ORDERHEADER (e.g. order date, the CSR who entered the order)
Next Steps
- When developing and maintaining data models, examine where your model can benefit from a foreign key relationship
- Ensure your foreign key columns are indexed to prevent table scanning during data deletion, cascading actions, and query JOINs.
- Read more about foreign key CASCADE options in the SQL Server Books Online under Cascading Options or Cascading Actions.
- Read more about the other SQL Server constraints: Primary Key, Unique, Default, and Check in the SQL Server Books Online
About the author
This author pledges the content of this article is based on professional experience and not AI generated.
View all my tips
Article Last Updated: 2007-07-30