I have several default constraints which now have illegal names due to a name-normalization script error (apparently sp_rename
does a poor job of validating the newname
parameter).
Some columns have actual default names in the format
[[DF_SomeTable_SomeColumn]]
or
[dbo.[DF_SomeOtherDefault]]
Neither sp_rename
nor Alter Table Drop Constraint
can remove them as they are reported as syntax errors.
How can I get rid of them, or rename them?
The easiest way is probably to have SQL give you the correctly escaped constraint names using the
quotename
function. You can query the catalog views to generate the drop statements for you based on the table names. As an example:Obviously, add the appropriate filtering to your query.