Quantcast
Channel: SQL Server Blog
Viewing all articles
Browse latest Browse all 1849

How Many Foreign Key Can You Have on A Single Table? – Interview Question of the Week #096

$
0
0

Question: How Many Foreign Key Can You Have on A Single Table?

I was asked above question in my recent SQLPASS presentations. I quickly answered that it is 253. However, after I returned home when I searched a bit more, I realized that my answer is not complete, hence this blog post.

Answer: SQL Server 2014 and earlier versions, supports 253 as a maximum foreign key table references per table. However, this limitation, changes in SQL Server 2016.

To understand the limitations in SQL Server 2016 we need to understand two important concepts

a) Outgoing Foreign Key References – A column in a table referring other table columns.

b) Incoming Foreign Key References – A column in a table which is referenced by other table columns.

Well, above definition can be still a bit confusing, so please refer to following image for additional clarification.

How Many Foreign Key Can You Have on A Single Table? - Interview Question of the Week #096 foreignkey-800x511

Now we know the answer of two important key words, let us see the answer to our original question.

A table can reference a maximum of 253 other tables and columns as foreign keys (Outgoing Foreign Key References). SQL Server 2016 increases the limit for the number of other table and columns that can reference columns in a single table (Incoming Foreign Key References), from 253 to 10,000. However, self referencing FK (where table column is referencing itself in the same table) still is limited to 253 in all the versions of SQL Server.

Here is limitation from Books On Line-

  • Greater than 253 FK references are supported for DELETE and UPDATE DML operations. MERGE operations are not supported.
  • A table with a FK  reference to itself is still limited to 253 foreign key references.
  • Greater than 253 FK  references are not currently available for column store indexes, memory-optimized tables, or Stretch Database.

Reference: Pinal Dave (http://blog.sqlauthority.com)

First appeared on How Many Foreign Key Can You Have on A Single Table? – Interview Question of the Week #096


Viewing all articles
Browse latest Browse all 1849

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>