Home > Database > Mysql Tutorial > sqlserver 2005 忘记sa用户密码的解决方式

sqlserver 2005 忘记sa用户密码的解决方式

WBOY
Release: 2016-06-07 15:45:55
Original
1625 people have browsed it

SQLSERVER 2005登录时发现忘记sa登录密码不记得啦,在网上找到这个解决方案: 在sql 2005中, sa登录是可以禁用的, 因此, 楼主的这个问题可以照下面的步骤解决: 1. 用Windows身份验证登陆(这个应该是不会存在问题的, 在新安装好实例(SQL Server)的情况下, Win

SQLSERVER 2005登录时发现忘记sa登录密码不记得啦,在网上找到这个解决方案:

在sql   2005中,   sa登录是可以禁用的,   因此,   楼主的这个问题可以照下面的步骤解决:  

   
  1.   用Windows身份验证登陆(这个应该是不会存在问题的,   在新安装好实例(SQL   Server)的情况下,   Windows身份验证是不可能被禁用的(安装过程中没有可以设置禁用Windows身份验证的地方)  
        Manage   Studio   --   菜单"文件"--"连接对象资源管理器",   身份验证中选择"Windows   Authentication"  
   
  2.   连接成功后,   右键你的实例,   选择"属性"  
   
  3.   在"属性"窗口中,   转到"Security"(安全性)项,   在"服务器身份验证"中设置为"SQL   Server和Windows身份验证模式",   确定,   根据提示,   你应该重新启动sql服务  
   
  4.   重新启动sql服务后,   照用Windows身份验证连接,   然后执行下面的语句启用sa用户,   同时清除sa的密码(能成功登陆后再根据你的需要设置)  
   
  EXEC   sp_password   null,null,'sa'  
   
  ALTER   LOGIN   sa   ENABLE  
   
   

  5.   语句执行完成后,   再用sa连接你的实例,   应该就没有问题了.

 

参考此解决方案,可考虑通过windows验证登陆后修改sa密码,

通过命令修改:sp_password null,‘sa的最新密码','sa'  -- 密码要够复杂, 旧密码指定为null, 表示强制修改密码

通过management studio--security--logins--sa用户,右键属性设置新密码

设置"服务器身份验证"中设置为"SQL   Server和Windows身份验证模式",重新启动sqlserver服务后可用重新设置的密码登陆就OK啦

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template