Is it possible to rename a constraint in SQL Server? I don\'t want to have to delete and create a new one because this constraint affects other already existing constraints
answer is true :
exec sp_rename @objname = 'Old_Constraint', @newname = 'New_Constraint', @objtype = 'object'