Ad hoc update to system catalogs is not supported

Ad hoc update to system catalogs is not supported

執行 exec sp_configure 'show advanced options',1

下reconfigure時,出現Ad hoc update to system catalogs is not supported.錯誤訊息:

clip_image002

是因為allow updates被鎖住了:

clip_image004

先將allow updates的configure_value改為0, 再執行exec sp_configure 'show advanced options', 下 reconfigure就沒問題了。

exec sp_configure 'allow updates',0;

exec sp_configure 'show advanced options', 1;

reconfigure

exec sp_configure

clip_image006