MSSQL資料庫提示 不支援對系統目錄進行即席更新

2021-08-26 09:26:54 字數 661 閱讀 4624

不支援對系統目錄進行即席更新

--如果"allow updates"選項被設定為"1",那麼你在使用語句:

exec sp_configure 'show advanced options', 1 ;

goreconfigure ;

--沒有加上with override,就會出現提示的錯誤

go--所以,如果你要解決問題,有兩個方法:

sp_configure 'allow updates', 0 ;

--設定為0

goreconfigure with override ;

go--或者在你執行下面個**的時候:

exec sp_configure 'show advanced options', 1 ;

goreconfigure with override ;

--加上with override

go--你可以執行下面**重現錯誤:

--code snippet

sp_configure 'allow updates', 1 ;

goreconfigure with override ;

goexec sp_configure 'show advanced options', 1 ;

goreconfigure ;

go

SQLITE資料庫不支援遠端訪問

sqlite資料庫不支援遠端訪問 成功建立表 except print 建立失敗 def chaxun aab 查詢指定表 sql select from mydlax sql select from s aab result cur.execute sql result cur.execute s...

Sql語句 不支援中文 國外資料庫

由於老美的不支援中文 sql 語句 第一 字段型別改為nvarchar,ntext 第二 強制轉化 n update dbo.role set rolename n 普通使用者 update dbo.type set typetitle n 熱門追風 descrption n 熱門追風 where ...

oracle資料庫不支援mysql中limit功能

oracle資料庫不支援mysql中limit功能,但可以通過rownum來限制返回的結果集的行數,rownum並不是使用者新增的字段,而是oracle系統自動新增的。1 使查詢結果最多返回前10行 select from ob call data log where rownum 10 2 使查詢...