Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is it a good practice to create an index to every foreing key in my database?

share|improve this question

3 Answers

up vote 10 down vote accepted

Yes it's a good practice, see here: When did SQL Server stop putting indexes on Foreign Key columns? scroll down to the Are there any benefits to indexing foreign key columns? section

share|improve this answer

Every foreign key? No. Where the selectivity is low (i.e. many values are duplicated), an index may be more costly than a table scan. Also, in a high activity environment (much more insert/update/delete activity than querying) the cost of maintaining the indexes may affect the overall performance of the system.

share|improve this answer
OK. So is there some numeric limit or threshold that may trigger the creation of an index? – GRGodoi Sep 6 '10 at 11:28

The reason for indexing a foreign key column is the same as the reason for indexing any other column: create an index if you are going to filter rows by the column.

For example, if you have table [User] (ID int, Name varchar(50)) and table [UserAction] (UserID int, Action varchar(50)) you will most probably want to be able to find what actions a particular user did. For example, you are going to run the following query:

select ActionName from [UserAction] where UserID = @UserID

If you do not intend to filter rows by the column then there is no need to put an index on it. And even if you do it's worth it only if you have more than 20 - 30 rows.

share|improve this answer
Are you sure that the index will not be useful during the foreign key validation when I execute an insert on UserAction? – GRGodoi Nov 8 '12 at 1:51
No. The validation is done against the table and column that holds the primary key or unique constraint (e.g. [User].[ID]). There is no need to validate the UserID column of the [UserAction] table. You can only reference a column that has primary key or unique constraint on it so it is always indexed. – ItsMe Nov 19 '12 at 2:38

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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