Answers

Question and Answer:

  Home  MS SQL Server

⟩ How To Change the Password of a Login Name in MS SQL Server?

If a developer lost the password of his or her login name, you can reset the password with the "ALTER LOGIN" statement as shown in this tutorial example:

-- Login with sa

ALTER LOGIN ggl_DBA WITH PASSWORD = 'globalguideline';

GO

Command(s) completed successfully.

ggl_DBA's password is changed now. Try it with the SQLCMD tool:

C:>SQLCMD -S LOCALHOSTSQLEXPRESS -U ggl_DBA -P globalguideline

1> QUIT

You can also use the "ALTER LOGIN" to change your own password.

 136 views

More Questions for you: