Viewing 9 posts - 1 through 9 (of 9 total)
Emm, if there still have trouble on resetting your sql sa password, you can try to get help from some sql server password recovery software, which can easily and instantly...
September 23, 2010 at 3:28 am
Use command prompt is also an easy way to reset lost sa password. See the commands below:
Method 3: Use Command Prompt to reset your lost SQL sa password
...
September 22, 2010 at 3:18 am
And here is another way that maybe also could reset ours lost sa password, but i have problems to verify this way, can somebody give some ideas about the method.
Method...
September 20, 2010 at 8:56 pm
Change SQL Server Password by Windows Authentication
If Builtin/Administrator is present in SQL Server, you can login with an ID which is member of Administrators group and change sa password in...
August 31, 2010 at 12:34 am
Want to change sql server password, try using command prompt.
Osql –S yourservername –E
1> EXEC sp_password NULL, 'yourpassword', 'sa'
2> GO
It helps.
August 30, 2010 at 10:03 pm
Change SQL Server Password by Windows Authentication
If Builtin/Administrator is present in SQL Server, you can login with an ID which is member of Administrators group and change sa password in...
August 17, 2010 at 7:47 pm
You can use command prompt to change sql password.
Osql -S yourservername -E
1> EXEC sp_password NULL, 'yourpassword', 'sa'
2> GO
Here is an article describes 4 methods to change sql server password,...
August 16, 2010 at 7:20 pm
You can change sql sa password by command prompt.
Osql –S yourservername –E
1> EXEC sp_password NULL, ’yourpassword’, ’sa’
2> GO
This article is given 4 methods to change sql password, that could be...
August 15, 2010 at 9:25 pm
Maybe the SA password was change by accidental.
July 30, 2010 at 1:01 am
Viewing 9 posts - 1 through 9 (of 9 total)