Created
April 26, 2018 22:48
-
-
Save wsmelton/e347663c6bdb8d69075298d53b2471dc to your computer and use it in GitHub Desktop.
SQL Ops Studio - User Snippets
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"New SQL Login": { | |
"prefix": "new-sql-login", | |
"body": [ | |
"CREATE LOGIN [${1:name of the login}] WITH PASSWORD = N'${2:password value}', CHECK_EXPIRATION = OFF, CHECK_POLICY = OFF;", | |
], | |
"description": "Create a new SQL Login" | |
}, | |
"New Windows Login": { | |
"prefix": "new-windows-login", | |
"body": [ | |
"CREATE LOGIN [${1:name of the login}] FROM WINDOWS;", | |
], | |
"description": "Create a new Windows Authentication Login" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment