Home > Database > Mysql Tutorial > SQLServer更改sa用户名的方法

SQLServer更改sa用户名的方法

WBOY
Release: 2016-06-07 18:01:17
Original
1474 people have browsed it

SQLServer更改sa用户名的方法,需要的朋友可以参考下。

首先,在企业管理器的查询分析器中运行以下代码(注意,进入查询分析器的用户名的角色要为System administrator,而且是各个数据库的db owner):
代码如下:
sp_configure 'allow updates', 1
go
RECONFIGURE WITH OVERRIDE
go

然后再运行以下代码
代码如下:
update sysxlogins set name='你要改成的名字' where sid=0x01
update sysxlogins set sid=0xE765555BD44F054F89CD0076A06EA823 where name='你要改成的名字'

接着:
代码如下:
sp_configure 'allow updates', 0
go
RECONFIGURE WITH OVERRIDE
go

然后,你查看一下SQL SERVER的角色,就会发现SA的用户名,已经改为你的新名子了。
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