How can I create a unique constraint on my column (SQL Server 2008 R2)?

SqlSql ServerSql Server-2008Unique Constraint

Sql Problem Overview


I have SQL Server 2008 R2 and I want to set a unique column.

There seems to be two ways to do this: "unique index" and "unique constraint". They are not much different from what I understand, although unique constraint is recommended by most, because you also get an index automatically.

How do I create a unique constraint?

ALTER TABLE Customer ADD CONSTRAINT U_Name UNIQUE(Name)

Is there a way to create a unique constraint through the SQL Server Management Studio?

Sql Solutions


Solution 1 - Sql

Set column as unique in SQL Server from the GUI:

They really make you run around the barn to do it with the GUI:

Make sure your column does not violate the unique constraint before you begin.

  1. Open SQL Server Management Studio.
  2. Right click your Table, click "Design".
  3. Right click the column you want to edit, a popup menu appears, click Indexes/Keys.
  4. Click the "Add" Button.
  5. Expand the "General" tab.
  6. Make sure you have the column you want to make unique selected in the "columns" box.
  7. Change the "Type" box to "Unique Key".
  8. Click "Close".
  9. You see a little asterisk in the file window, this means changes are not yet saved.
  10. Press Save or hit Ctrl+s. It should save, and your column should be unique.

Or set column as unique from the SQL Query window:

alter table location_key drop constraint pinky;
alter table your_table add constraint pinky unique(yourcolumn);

Changes take effect immediately:

Command(s) completed successfully.

Solution 2 - Sql

To create these constraints through the GUI you need the "indexes and keys" dialogue not the check constraints one.

But in your case you just need to run the piece of code you already have. It doesn't need to be entered into the expression dialogue at all.

Solution 3 - Sql

Here's another way through the GUI that does exactly what your script does even though it goes through Indexes (not Constraints) in the object explorer.

  1. Right click on "Indexes" and click "New Index..." (note: this is disabled if you have the table open in design view)

enter image description here

  1. Give new index a name ("U_Name"), check "Unique", and click "Add..."

enter image description here

  1. Select "Name" column in the next windown

enter image description here

  1. Click OK in both windows

Solution 4 - Sql

One thing not clearly covered is that microsoft sql is creating in the background an unique index for the added constraint

create table Customer ( id int primary key identity (1,1) , name nvarchar(128) ) 

--Commands completed successfully.

sp_help Customer

---> index
--index_name	index_description	index_keys
--PK__Customer__3213E83FCC4A1DFA	clustered, unique, primary key located on PRIMARY	id

---> constraint
--constraint_type	constraint_name	delete_action	update_action	status_enabled	status_for_replication	constraint_keys
--PRIMARY KEY (clustered)	PK__Customer__3213E83FCC4A1DFA	(n/a)	(n/a)	(n/a)	(n/a)	id


---- now adding the unique constraint

ALTER TABLE Customer ADD CONSTRAINT U_Name UNIQUE(Name)

-- Commands completed successfully.

sp_help Customer

---> index
---index_name	index_description	index_keys
---PK__Customer__3213E83FCC4A1DFA	clustered, unique, primary key located on PRIMARY	id
---U_Name	nonclustered, unique, unique key located on PRIMARY	name

---> constraint
---constraint_type	constraint_name	delete_action	update_action	status_enabled	status_for_replication	constraint_keys
---PRIMARY KEY (clustered)	PK__Customer__3213E83FCC4A1DFA	(n/a)	(n/a)	(n/a)	(n/a)	id
---UNIQUE (non-clustered)	U_Name	(n/a)	(n/a)	(n/a)	(n/a)	name

as you can see , there is a new constraint and a new index U_Name

Solution 5 - Sql

When you are in a Design view of your table, click on your desired column and expand the Table Designer tab at the top toolbar. Select the Indexes/Keys option.~

Table Designer tool tab

Then Add a new constraint and choose the right column and set its type to Unique Key, and name it somehow. And that's all! ^^ Creating unique constraint

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionWhite IslandView Question on Stackoverflow
Solution 1 - SqlEric LeschinskiView Answer on Stackoverflow
Solution 2 - SqlMartin SmithView Answer on Stackoverflow
Solution 3 - SqlTony L.View Answer on Stackoverflow
Solution 4 - SqldetzuView Answer on Stackoverflow
Solution 5 - SqlkoniecpolskiView Answer on Stackoverflow