Skip to content

Instantly share code, notes, and snippets.

@mattou07
Created August 3, 2023 15:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mattou07/ccf74114d96dc046727bc7ff83a358f6 to your computer and use it in GitHub Desktop.
Save mattou07/ccf74114d96dc046727bc7ff83a358f6 to your computer and use it in GitHub Desktop.
Self contained SQL login for Umbraco database run on the specific database
CREATE USER [username] with password = 'password'
ALTER ROLE [db_datawriter] ADD MEMBER [username]
ALTER ROLE [db_ddladmin] ADD MEMBER [username]
ALTER ROLE [db_datareader] ADD MEMBER [username]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment