Personally, I am in favor of foreign keys because it formalizes the relationship between the tables. I realize that your question presupposes that the programmer is not introducing data that would violate referential integrity, but I have seen way too many instances where data referential integrity is violated, despite best intentions! Pre-foreign key constraints (aka declarative referential integrity or DRI) lots of time was spent implementing these relationships using triggers. The fact that we can formalize the relationship by a declarative constraint is very powerful. @John - Other databases may automatically create indexes for foreign keys, but I believe that SQL Server does not. In SQL Server, foreign key relationships are only constraints. In SQL Server, you must defined your index on foreign keys separately (which can be of benefit.)