Home Forums SQL Server 2005 Administering Best practices Password Change - SQL Failover cluster (3 or 4 node cluster) RE: Best practices Password Change - SQL Failover cluster (3 or 4 node cluster)

  • 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.