English 中文(简体)
如何更改本地 Sql 服务器 sa 密码?
原标题:How to change my local sql server sa password?

如何改变2008年本地安装 Sql 服务器的sa 密码?

<强 > 注:我不知道sa账户的密码

问题回答

线条的回复真的迟了 但我刚刚丢失了 并重设了SA的密码

你们在简易的步伐之下,

  1. 在窗口验证模式中连接 SQL 服务器 。

  2. 前往“ 坚固” 安全 < / 坚固”, 并探索它 。

  3. 跳转到 < 强度 > 安全 < 强度 > 下 < 强度 > /强度 < 强度 > 。

  4. 选择用户 < 加固>sa

  5. 点击 < 强度 > / 强点 < 强度 > 并选择 < 强度 > properies

  6. You will get reset password option here, change it and log-in with new password again.

欢呼声:

单行

USE [master]
GO
ALTER LOGIN [sa] WITH PASSWORD=N NewPassword 
GO

也可以进入安全,右单击 ss,选择属性并在密码字段中更改属性





相关问题
Performance impact of indexed view in MS SQL Server 2008

Does anyone have experience with using indexed view in MS SQL Server 2008? I am trying to find out how does indexed view affect performance of insert / update statements, that are adding / updating ...

Lock Escalation - What s happening here?

While altering a table (removing a column) in SQL Server 2008, I clicked the Generate Change Script button and I noticed that the change script it generated drops the column, says "go" and then runs ...

Round to nearest 5 in SQL Server

I have a Money column in my SQL Server 2008 table. In my below query how can I round it to nearest 5$ select FineAmount from tickets Thanks

热门标签