Skip to content

Instantly share code, notes, and snippets.

@jarek-przygodzki
Created January 24, 2013 23:16
Show Gist options
  • Save jarek-przygodzki/4629376 to your computer and use it in GitHub Desktop.
Save jarek-przygodzki/4629376 to your computer and use it in GitHub Desktop.
SQL Server enable the 'sa' account
USE [master]
GO
ALTER LOGIN [sa] WITH PASSWORD=N'password'
GO
ALTER LOGIN [sa] ENABLE
GO
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment