Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What's the difference between creating a UNIQUE index as "index" or as "constraint" in SQL Server?

When creating an index over a column that is going to be UNIQUE (but not the primary key of the table), SQL server let's me choose a few options:

1) I can choose for it to be a Constraint or an Index.
I'm guessing this means that if I set it as constraint, it won't use it when querying, only when writing. However, the only efficient way I can think of for SQL Server to enforce that constraint is by actually building an index. What is the use for this option?

2) Also, if I set it as "index", it let's me specify that it should ignore duplicate keys. This is the most puzzling for me...
I again guess it means the opposite of constraint. It probably means "use it when querying, but don't even check when writing".
But then why would I set it as UNIQUE?
I'm guessing there are some optimizations SQL Server can do, but i'd like to understand it better.

Does anyone know what exactly SQL Server does with these options?
What's the use case for setting an index to be Unique, but ignore duplicate keys?

NOTE: This is for SQL Server 2000


EDIT: According to what you said, however... If I create a Constraint, will it be used to speed up queries that filter using the fields in the constraint?

Thanks!

like image 634
Daniel Magliola Avatar asked Oct 21 '08 14:10

Daniel Magliola


People also ask

What is the difference between create index and create unique index?

Index: It is a schema object which is used to provide improved performance in the retrieval of rows from a table. Unique Index: Unique indexes guarantee that no two rows of a table have duplicate values in the key column (or columns).

What is the difference between index and constraint?

Index - improves the performance of retrieval and sort operations on Table data. Unique Constraints - a combination of values that uniquely identify a row in the Table. Foreign Key - a column (or collection of columns) that enforce a relationship between two Tables.

Is a unique constraint also an index?

Yes, absolutely. A unique constraint creates a unique index.

Does unique constraint create index SQL?

We know that the unique constraint in SQL Server creates a unique SQL Server index as well. SQL Server allows us to disable an index as well without dropping it.


1 Answers

A UNIQUE constraint is part of the ISO/ANSI SQL standard, whereas indexes are not because the Standard is implementation agnostic. SQL Server, in common with most SQL DBMSs, will use an index to implement a UNIQUE constraint.

Arguably, using UNIQUE rather than index in a SQL script is slightly more portable but as always the proprietary syntax should not be ruled out if it provids opportunities for optimization etc.

like image 191
onedaywhen Avatar answered Oct 24 '22 05:10

onedaywhen