Back

Explore Courses Blog Tutorials Interview Questions
0 votes
2 views
in Azure by (12.7k points)

Create a new user/login in SQL Azure with access to read/insert/update on the database items like tables sp, view, etc.

This user will not have permission to drop table/drop procedures.

Please give me an example.

1 Answer

0 votes
by (9.6k points)

You can go to Active Admin Directory and add members to dbmanager and loginmanager roles. Otherwise, you can opt to use the Azure User Management console which is an open source that helps in managing the users and logins. 

For more details, please refer to this blog. To download the open source, click here.

Here is a step to create a user and give them access to your database:

USE [Mydata];  

GO  

CREATE USER [user1] FOR LOGIN [computer_name\user1];  

GO


 

For more permissions, please refer to this blog

Related questions

Browse Categories

...