We're having an issue with a poorly coded SQL function(which works fine in live, but not in our test environment). This function is used to provide a default value in many tables, trying to ALTER the function returns a "Cannot ALTER ### because it is being referenced by object" error.

Is there any way round this error message? The only way I can think of us attempting to write a script to remove it from every table that has it as a default, altering the function and re-adding it after.

Thanks

link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

Since the object is referenced, you cannot modify it. This is what you do:

  1. Remove the default constraint from the table/column
    • Modify the function
    • Add the default constraint back
link|improve this answer
feedback

SQL Server will not allow you to modify a function that is bound to the DEFAULT constraint of a column.

Your only option is to remove the constraint before altering the function. (Source)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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