Question: I executed a ALTER DATABASE COLLATE statement and received the following error message. How can I fix and proceed with ALTER DATABASE COLLATE procedure? ALTER DATABASE My database COLLATE Latin1_General_100_CI_AS_KS ; Msg 5075, Level 16, State 1, Line 1 The object 'CK_MyCheckConstraint_Uid' is dependent on database collation. The database collation cannot be changed if a schema-bound object depends on it. Remove the dependencies on the database collation and then retry the operation. Answer: The reason for this message is you haven’t met one or more of these conditions: 1) Must have an exclusive lock on the database - read...
Read more →