I have a table 'users' with 'login' column defined as:

[login] VARCHAR(50) UNIQUE NOT NULL

Now I want to remove this unique constraint/index using SQL script. I found its name UQ_users_7D78A4E7 in my local database but I suppose it has a different name on another database.

What is the best way to drop this unique constraint? Or at least any...

Thanks.

link|improve this question

4  
@Mitch Wheat: I found my unique constraint in sys.indexes table but I have not found any links to table which contains this index. Any help? – SKINDER Mar 31 '11 at 13:01
@Mitch Wheat: I have found a link to my table - it is object_id, but I cannot find a link to necessary column... – SKINDER Mar 31 '11 at 13:15
feedback

3 Answers

up vote 1 down vote accepted

SKINDER, your code does not use column name. Correct script is:

declare @table_name nvarchar(256)  
declare @col_name nvarchar(256)  
declare @Command  nvarchar(1000)  

set @table_name = N'users'
set @col_name = N'login'

select @Command = 'ALTER TABLE ' + @table_name + ' drop constraint ' + d.name
    from sys.tables t 
    join sys.indexes d on d.object_id = t.object_id  and d.type=2 and d.is_unique=1
    join sys.index_columns ic on d.index_id=ic.index_id and ic.object_id=t.object_id
    join sys.columns c on ic.column_id = c.column_id  and c.object_id=t.object_id
    where t.name = @table_name and c.name=@col_name

print @Command

--execute (@Command)
link|improve this answer
feedback

ALTER TABLE users DROP CONSTRAINT 'constraints_name'

link|improve this answer
)) yes, 'constraints_name'... but WHAT IS THIS CONSTRAINT NAME?! – SKINDER Mar 31 '11 at 13:43
the constraint name is random. If you want it to be fixed you need to assign it a name on creation. CREATE TABLE users(login varchar(50) constraint uq_users_login UNIQUE) – Filip De Vos Mar 31 '11 at 14:27
@Filip De Vos: this table has already been created. And now I cannot remove this index using script. Is there any solution except copying data into a new table without constraint and removing old table (it is rather difficult because I have foreign keys that link to another column in this table)? – SKINDER Mar 31 '11 at 15:04
feedback

I have stopped on the script like below (as I have only one non-clustered unique index in this table):

declare @table_name nvarchar(256)  
declare @col_name nvarchar(256)  
declare @Command  nvarchar(1000)  

set @table_name = N'users'
set @col_name = N'login'

select @Command = 'ALTER TABLE ' + @table_name + ' drop constraint ' + d.name
    from sys.tables t join sys.indexes d on d.object_id = t.object_id  
    where t.name = @table_name and d.type=2 and d.is_unique=1

--print @Command

execute (@Command)

Has anyone comments if this solution is acceptable? Any pros and cons?

Thanks.

link|improve this answer
If it works then it's a good script :) don't labour over the problem if this has solved your problem. It's not as though you will be executing a script like this every minute. – Tony Apr 1 '11 at 7:38
feedback

Your Answer

 
or
required, but never shown

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