how to change password?

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • vinod
    New Member
    • Aug 2006
    • 40

    how to change password?

    Dear experts,
    i'm getting problem with sql server 2000. actually i changed the service from automatic to manual, right from that day,sql server is not working on my machine.when i checkd in the properties of sql server registration, it is showing some around 8 letter password. actually i will connect with sa and password sa.

    where should i change the password? is there any other solution?

    or is it better to uninstall and install again? if so what about my databases?


    please help me in this regard
  • michelle
    New Member
    • Jul 2006
    • 11

    #2
    Hello vinod,

    Go to the folder security;
    Double click on the user;
    Change the password (don't forget it!!!)
    Pressing on the Ok button;
    Repeat the password.

    In principle, if you press as password of only one character, for security reasons sqlserver 2000 will show you as password 10 stars.

    For testing create a new user and change the password.

    Good luck,
    Michelle.

    Comment

    • masdi2t
      New Member
      • Jul 2006
      • 37

      #3
      on 'edit sql registration properties' window, use windows authentication first. after u've logon, change the password on Security->Logins section.

      Comment

      • yitiana
        Banned
        New Member
        • Aug 2010
        • 1

        #4
        You can use command prompt to change the password.
        Code:
        Osql -S yourservername -E 
        1> EXEC sp_password NULL, 'yourpassword', 'sa'
        2> GO
        Last edited by Niheel; May 24 '12, 07:06 AM. Reason: link spam

        Comment

        Working...