vote up 5 vote down star
5

Hi, I am using MS-SQL-server 2005. I want to constrain the values in a column to be unique, while allowing NULLS.

My current solution involves a unique index on a view like so:

CREATE VIEW vw_unq WITH SCHEMABINDING AS
    SELECT Column1
      FROM MyTable
     WHERE Column1 IS NOT NULL

CREATE UNIQUE CLUSTERED INDEX unq_idx ON vw_unq (Column1)

Any better ideas?

flag

3 Answers

vote up 4 vote down check

Pretty sure you can't do that, as it violates the purpose of uniques.

However, this person seems to have a decent work around: http://sqlservercodebook.blogspot.com/2008/04/multiple-null-values-in-unique-index-in.html

link|flag
It seems that you actually can do that. And the provided link is another way to do it as well. – Scott W Oct 10 '08 at 14:22
I know you can do it in Oracle, but I had no idea you could do it in SQL Server. Would love to see it done, though! :) – Abyss Knight Oct 10 '08 at 18:22
The workaround is actually decent, as you say. – Nuno G Oct 10 '08 at 22:48
vote up 7 vote down

The calculated column trick is widely known as a "nullbuster"; my notes credit Steve Kass:

CREATE TABLE dupNulls (
pk int identity(1,1) primary key,
X  int NULL,
nullbuster as (case when X is null then pk else 0 end),
CONSTRAINT dupNulls_uqX UNIQUE (X,nullbuster)
)
link|flag
vote up -3 vote down

Why are you making it a unique index? Are you trying to constrain the value of Column1? Then it needs to be on the table level. However, it's not meaningful to say "This column must be unique except that I can have an aribtrary number of NULLs." You can either have NULLs in the column, or a unique index, but not both.

link|flag

Your Answer

Get an OpenID
or

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