Posts Change SQL Server Account Password
Post
Cancel

Change SQL Server Account Password

Here is the SQL statement that helps you to change the SQL account password,

[cc lang=”sql”]

ALTER LOGIN Account_Name WITH

PASSWORD = ‘New_Password’

OLD_PASSWORD = ‘Old_Password’;

[/cc]

This post is licensed under CC BY 4.0 by the author.