Reset SA user in sql 2005

Login into the sql server via the command line using the “osql -E or -U options

ALTER LOGIN sa WITH PASSWORD = ‘Newpassword’;
GO

Comments are closed.