0

I'm in SSMS connected to my SQL Database on Azure

I right clicked on the login - no properties choice in the menu

enter image description here

How can I change the password for a login?

asked Nov 16, 2023 at 1:07

1 Answer 1

0

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
1
  • @DavidThielen No problem! Commented Nov 16, 2023 at 11:04

Your Answer

Draft saved
Draft discarded

Sign up or log in

Sign up using Google
Sign up using Email and Password

Post as a guest

Required, but never shown

Post as a guest

Required, but never shown

By clicking "Post Your Answer", you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.