up vote 18 down vote favorite
3
share [g+] share [fb]

Suppose I have 2 tables, Products and ProductCategories. Both tables have relationship on CategoryId. And this is the query.

select p.ProductId, p.Name, c.CategoryId, c.Name AS Category
from Products p inner join ProductCategories c on p.CategoryId = c.CategoryId
where c.CategoryId = 1;

When I create execution plan, table ProductCategories performs cluster index seek, which is as expectation. But for table Products, it performs cluster index scan, which make me doubt. Why FK does not help improve query performance?

So I have to create index on Products.CategoryId. When I create execution plan again, both tables perform index seek. And estimated subtree cost is reduced a lot.

My questions are:

  1. Beside FK helps on relationship constraint, does it have any other usefulness? Does it improve query performance?

  2. Should I create index on all FK columns (liked Products.CategoryId) in all tables?

link|improve this question

feedback

8 Answers

up vote 40 down vote accepted

Foreign Keys are a relational integrity tool, not a performance tool. At least in SQL Server, the creation of an FK does not create an associated index, and you should create indexes on all FK fields to improve look up times.

link|improve this answer
2  
+1: Model is one thing. Performance is another. – S.Lott Feb 3 '09 at 14:17
1  
Good models (generally) perform better. – Kenny Evitt Mar 20 '11 at 3:03
feedback

A foreign key is a relational database concept for ensuring database integrity.

Any performance implications/improvements will be specific to the database technology being used and are secondary to the purpose of a foreign key.

It is good practice in SQL Server to ensure that all foreign keys have at least a non clustered index on them.

I hope this clears things up for you but please feel free to request more details.

Cheers, John

link|improve this answer
1  
Performance is an easier sell than 'database integrity'. – Kenny Evitt Mar 20 '11 at 3:02
@Kenny Evitt if you don't have integrity, your data is useless. I find that sells very easily. – HLGEM Aug 24 '11 at 17:14
@HLGEM Getting a 404 error once in a while is still quite bearable. Having exceptional throughput in return using cheaper resources and less complex systems, now that sells very easily too. You might be interested in the C.A.P. theorem. – Daniel Dinnyes Oct 19 '11 at 14:17
@Daniel Dinnyes, data integrity isn't about getting a 404 error. It's about having usable data. It's about not losing orders and financial data for reports for instance because of the incompetence of the developers. There is NO EXCUSE for not using foreign keys. – HLGEM Oct 19 '11 at 14:20
@HLGEM If 404 error is not about exchanging data integrity for simplicity (i.e. not having foreign keys) then I don't know what. Enforcing checks for referential integrity is an overhead which in certain dire circumstances is not affordable. – Daniel Dinnyes Oct 20 '11 at 0:56
show 1 more comment
feedback
  1. As stated here Foreign keys boost performance

  2. You should always create indexes on FK columns to reduce lookups. SQL Server does not do this automatically.

regards,

Lieven

link|improve this answer
1  
Here's a link that details ways in which they can degrade performance devx.com/getHelpOn/10MinuteSolution/16595/0/page/2 – cmsjr Feb 3 '09 at 14:31
1  
That makes sense but you'll only run into this with a massive delete statement. Perhaps the conclusion should be that in OLAP environments, non-indexed FK's would improve performance while in OLTP environments, it would degrade performance. – Lieven Feb 3 '09 at 14:56
1  
The link in this Answer is dead. This is unfortunate as it's the only argument here for FKs improving performance. – Chris Moschini Oct 11 '11 at 18:40
feedback

You can use it to help make a query more efficient. It does allow you to restructure queries in SQL Server to use an outer join instead of an inner one which removes sql servers necesity of having to check if there is a null in the column. You don't need to put that qualifier in because the foreign key relationship already inforces that for you.

So this:

    select p.ProductId, p.Name, c.CategoryId, c.Name AS Category 
from Products p inner join ProductCategories c on p.CategoryId = c.CategoryIdwhere c.CategoryId = 1;

Becomes this:

SELECT p.ProductId, p.Name, c.CategoryId, c.Name AS Category 
FROM ProductCategories c 
LEFT OUTER JOIN Products P ON
c.CategoryId = p.CategoryId 
WHERE c.CategoryId = 1;

This won't necessarily make a huge performance in small queries, but when tables get large it can be more efficient.

link|improve this answer
feedback

Your best performance bet is to use Indexes on fields you use frequently. If you use SQL Server you can use profiler to profile a specific database and take the file that outputs and use the tuning wizard to recieve recommendations on where to place your indexes. I also like using profiler to flush out long running stored procedures, I have a top ten worst offenders list I publish every week, keeps people honest :D.

link|improve this answer
feedback

I do not know much about SQL server, but in case of Oracle, having a foreign key column reduces the performance of data-loading. That is because database needs to check the data integrity for each insert. And yes, as it is already mentioned, having an index on foreign key column is a good practice.

link|improve this answer
feedback

Check this out

http://www.microsoft.com/technet/abouttn/flash/tips/tips%5F122104.mspx

link|improve this answer
I just noticed that Lieven had already posted this link – devanalyst Aug 29 '09 at 12:53
feedback

Adding a foreign key in table will not improve the performance, simply saying if you are inserting a record in a ProductCategories table database will try to find the foreign key column has a value which exist in a products table's primary key value, this look up, operation is overhead on your database every time you add a new entry in ProductCategories table. So by adding a foreign key will not improve your database performance but it will take care about the integrity of your database. Yes it will improve the performance of you db if you are checking integrity using foreign key instead of running many queries for checking the record is exist in database in your program.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.