Created
April 8, 2020 05:06
-
-
Save coderdipto/86c24c985b49b3a9b23c8691b4ad2a29 to your computer and use it in GitHub Desktop.
Create user SQL Server T-SQL
This file contains hidden or 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
-- Creates the login AbolrousHazem with password '340$Uuxwp7Mcxo7Khy'. | |
CREATE LOGIN sudipto | |
WITH PASSWORD = 'Root1234'; | |
GO | |
-- Creates a database user for the login created above. | |
CREATE USER sudipto FOR LOGIN sudipto; | |
GO |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment