I'm in SSMS connected to my SQL Database on Azure
I right clicked on the login - no properties choice in the menu
How can I change the password for a login?
asked Nov 16, 2023 at 1:07
1 Answer 1
It's not possible in the GUI of SSMS but you can do so with the following T-SQL script:
ALTER LOGIN david WITH PASSWORD = 'NewPasswordGoesHere';
More examples can be found in the docs for the ALTER LOGIN
command for Azure SQL Database.
answered Nov 16, 2023 at 3:02
lang-sql