Run this Script
USE MyDatabasename
GO
sp_configure 'allow updates', 1
GO
RECONFIGURE WITH OVERRIDE
GO
sp_resetstatus 'MyDatabasename'
GO
sp_configure 'allow updates', 0
GO
RECONFIGURE WITH OVERRIDE
GO