本文主要是介绍Property IsLocked is not available for Login '[sa]',希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
錯誤:SQL SERVER 2005 安裝完成后,以系統用戶登錄到管理界面,查看SA屬性時出現:
Cannot show requested dialog. (SqlMgmt)
Property IsLocked is not available for Login '[sa] '. This property may not exist for this object, or may not be retrievable due to insufficient access rights.
原因:錯誤原因可能是安裝時選擇的用戶登錄模式是“windows系統用戶”模式,導致sa用戶被鎖定了。
辦法:
alter login sa
with password = 'yourpwd' unlock,
check_policy = off,
check_expiration = off
这篇关于Property IsLocked is not available for Login '[sa]'的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!