↧
Answer by Henrik Staun Poulsen for Creating SQL Azure login for single database
I've found it a lot easier to work with the Azure Active Directory, instead of SQL Logins.So I've created a group called "my-developers", and added the developers to the group, then I ran this on the...
View ArticleAnswer by Caleb Doise for Creating SQL Azure login for single database
Connect to master database and do the following:CREATE LOGIN YourNewUser WITH PASSWORD = '<strong password here>';Connect directly to database that the new user should own:CREATE USER...
View ArticleCreating SQL Azure login for single database
I want to create separate logins for each database we create on a SQL Azure database server which only have read / edit permissions for a single database and do not have drop permissions, and to...
View Article