Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 SQL Server 2008 r2。我在安装的时候选择了SQL认证的混合模式。
我已经给出sa了用户名并给出了一些密码,然后我忘记了密码。
sa
我不知道如何更改用户密码或删除密码并创建新用户登录?
尝试:
exec sp_password null, '<new password>', 'sa'
以 sysadmin 用户身份运行它,用您想要的任何新密码替换。
如果您可以以系统管理员身份登录系统,请运行以下命令。
ALTER LOGIN sa WITH PASSWORD = 'xx'
如果您无法以系统管理员身份登录,但至少可以以管理员身份登录服务器,请告诉我,我将向您发送有关如何解决问题的链接。