title | description | author | ms.author | ms.reviewer | ms.service | services | ms.topic | ms.date |
---|---|---|---|---|---|---|---|---|
Manage Azure Data Explorer database permissions |
This article describes role-based access controls for databases and tables in Azure Data Explorer. |
orspod |
v-orspod |
mblythe |
data-explorer |
data-explorer |
conceptual |
09/24/2018 |
Azure Data Explorer enables you to control access to databases and tables, using a role-based access control model. Under this model, principals (users, groups, and apps) are mapped to roles. Principals can access resources according to the roles they're assigned.
This article describes the available roles and how to assign principals to those roles using the Azure portal and Azure Data Explorer management commands.
Azure Data Explorer has the following roles:
Role | Permissions |
---|---|
Database admin | Can do anything in the scope of a particular database. |
Database user | Can read all data and metadata in the database. Additionally, they can create tables (becoming the table admin for that table) and functions in the database. |
Database viewer | Can read all data and metadata in the database. |
Database ingestor | Can ingest data to all existing tables in the database, but not query the data. |
Database monitor | Can execute '.show ...' commands in the context of the database and its child entities. |
Table admin | Can do anything in the scope of a particular table. |
Table ingestor | Can ingest data in the scope of a particular table, but not query the data. |
-
Sign in to the Azure portal.
-
Navigate to your Azure Data Explorer cluster.
-
In the Overview section, select the database where you want to manage permissions.
-
Select Permissions then Add.
-
Under Add database permissions, select the role that you want to assign the principal to, then Select principals.
-
Look up the principal, select it, then Select.
-
Select Save.
-
Sign-in to https://dataexplorer.azure.com, and add your cluster if it's not already available.
-
In the left pane, select the appropriate database.
-
Use the
.add
command to assign principals to roles:.add database databasename rolename ('aaduser | [email protected]')
. To add a user to the Database user role, run the following command, substituting your database name and user..add database <TestDatabase> users ('aaduser=<[email protected]>')
The output of the command shows the list of existing users and the roles they're assigned to in the database.