vote up 3 vote down star

Hi All, How can I drop all the default constraints belonging to a particular table in SQL 2005?

flag

I have deleted my answer since I'm not 100% sure and i am not able to test. – Peter Apr 20 at 7:52
Your own solution seems ok thouh, no? – Peter Apr 20 at 7:53

2 Answers

vote up 1 vote down check

One solution from a search: (Edited for Default constraints)

SET NOCOUNT ON

DECLARE  @constraintname SYSNAME, @objectid int,
           @sqlcmd         VARCHAR(1024)

DECLARE CONSTRAINTSCURSOR CURSOR  FOR
SELECT NAME, object_id
FROM   SYS.OBJECTS
WHERE  TYPE = 'D' AND @objectid = OBJECT_ID('Mytable')

OPEN CONSTRAINTSCURSOR

FETCH NEXT FROM CONSTRAINTSCURSOR
INTO @constraintname, @objectid

WHILE (@@FETCH_STATUS = 0)
BEGIN
    SELECT @sqlcmd = 'ALTER TABLE ' + OBJECT_NAME(@objectid) + ' DROP CONSTRAINT ' + @constraintname
    EXEC( @sqlcmd)
    FETCH NEXT FROM CONSTRAINTSCURSOR
    INTO @constraintname, @objectid
END

CLOSE CONSTRAINTSCURSOR
DEALLOCATE CONSTRAINTSCURSOR
link|flag
changing OBJECT_NAME to PARENT_OBJECT_NAME worked well thanx. – vinay_rockin Apr 22 at 8:24
vote up 0 vote down

Just why do you want to do this? Dropping constraints is a pretty drastic action and affects all users not just your process. Maybe your problem can be solved some other way. If you aren't the dba of the system, you should think very hard about whether you should do this. (Of course in most systems, a dba wouldn't allow anyone else the permissions to do such a thing.)

link|flag
I am using Several fields that need to support Unicode and I dont find any other way of doing this. therefore I am changing the datatype of the columns and in process droping the constraints and creating them again....... – vinay_rockin Apr 21 at 11:04

Your Answer

Get an OpenID
or

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