資料庫做完快照后發現查看資料庫屬性失敗
ADDITIONAL INFORMATION:
無法顯示請求的對話框, (SqlMgmt)
------------------------------
屬性 DefaultFullTextLanguageLcid 不可用于 資料庫“[sk_Master]”,該物件可能沒有此屬性,也可能是訪問權限不足而無法檢索, (Microsoft.SqlServer.Smo)
For help, click: https://go.microsoft.com/fwlink?ProdName=Microsoft+SQL+Server&ProdVer=15.0.18131.0+((SSMS_Rel).190606-1032)&EvtSrc=https://www.cnblogs.com/sysmenu/p/Microsoft.SqlServer.Management.Smo.ExceptionTemplates.PropertyCannotBeRetrievedExceptionText&EvtID=DefaultFullTextLanguageLcid&LinkId=20476
------------------------------
解決方案:
use sk_Master; GO EXEC sp_configure 'show advanced options', 1 ; GO RECONFIGURE GO EXEC sp_configure 'default full-text language', 1043 ; GO RECONFIGURE GO
參考鏈接:https://docs.microsoft.com/en-us/sql/database-engine/configure-windows/configure-the-default-full-text-language-server-configuration-option?view=sql-server-ver15
轉載請註明出處,本文鏈接:https://www.uj5u.com/shujuku/1212.html
標籤:SQL Server
