Interviewer And Interviewee Guide

MS SQL Server Interview Question:

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

Submitted by: Administrator
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.
Submitted by: Administrator

Read Online MS SQL Server Job Interview Questions And Answers
Copyright 2007-2024 by Interview Questions Answers .ORG All Rights Reserved.
https://InterviewQuestionsAnswers.ORG.