Do not recommend ad hoc updates to system catalogues, use override option to force this configuration
This error message occurs in one of these two situations:
When the allow updates option is enabled, SQL Server allows direct updates to the system tables, so any user who can log on as the SQL Server system administrator can update the system tables directly with ad-hoc queries and can create stored procedures that update the system catalog. Incorrect changes to the system tables can cause unrecoverable database corruption or data loss.
Caution Severe problems can result from the direct manipulation of the system catalogs. Do not modify the system catalogs unless instructed to do so by your primary support provider.
If you are aware of the danger and have a specific reason to enable the allow updates option (for example, you have been instructed to do so by your primary support provider), follow these steps:
sp_configure 'allow updates',1 go
sp_configure 'allow updates', 0 go RECONFIGURE WITH OVERRIDE go
Caution Always perform step 2 to prevent ad-hoc queries on the system tables, which might result in unrecoverable database corruption or data loss.
.