# Roles and Privileges
HEAVY.AI supports data security using a set of database object access privileges granted to users or roles.
## Users and Privileges
When you create a database, the `admin` superuser is created by default. The `admin` superuser is granted all privileges on all database objects. Superusers can create new users that, by default, have no database object privileges.
Superusers can grant users selective access privileges on multiple database objects using two mechanisms: role-based privileges and user-based privileges.
### Role-based Privileges
1. Grant roles access privileges on database objects.
2. Grant roles to users.
3. Grant roles to other roles.
### User-based Privileges
When a user has privilege requirements that differ from role privileges, you can grant privileges directly to the user. These mechanisms provide data security for many users and classes of users to access the database.
You have the following options for granting privileges:
* Each object privilege can be granted to one or many roles, or to one or many users.
* A role and/or user can be granted privileges on one or many objects.
* A role can be granted to one or many users or other roles.
* A user can be granted one or many roles.
This supports the following many-to-many relationships:
* Objects and roles
* Objects and users
* Roles and users
These relationships provide flexibility and convenience when granting/revoking privileges to and from users.
Granting object privileges to roles and users, and granting roles to users, has a cumulative effect. The result of several grant commands is a combination of all individual grant commands. This applies to all database object types and to privileges inherited by objects. For example, object privileges granted to the object of database type are propagated to all table-type objects of that database object.
### Who Can Grant Object Privileges?
Only a superuser or an object owner can grant privileges for on object.
* A superuser has all privileges on all database objects.
* A non-superuser user has only those privileges on a database object that are granted by a superuser.
* A non-superuser user has `ALL` privileges on a table created by that user.
### Roles and Privileges Persistence
* Roles can be created and dropped at any time.
* Object privileges and roles can be granted or revoked at any time, and the action takes effect immediately.
* Privilege state is persistent and restored if the HEAVY.AI session is interrupted.
### Database Object Privileges
There are five database object types, each with its own privileges.
ACCESS - Connect to the database. The ACCESS privilege is a prerequisite for all other privileges at the database level. Without the ACCESS privilege, a user or role cannot perform tasks on any other database objects.
ALL - Allow all privileges on this database except issuing grants and dropping the database.
SELECT, INSERT, TRUNCATE, UPDATE, DELETE - Allow these operations on any table in the database.
ALTER SERVER - Alter servers in the current database.
CREATE SERVER - Create servers in the current database.
CREATE TABLE - Create a table in the current database. (Also CREATE.)
CREATE VIEW - Create a view for the current database.
CREATE DASHBOARD - Create a dashboard for the current database.
DELETE DASHBOARD - Delete a dashboard for this database.
DROP SERVER - Drop servers from the current database.
DROP - Drop a table from the database.
DROP VIEW - Drop a view for this database.
EDIT DASHBOARD - Edit a dashboard for this database.
SELECT VIEW - Select a view for this database.
SERVER USAGE - Use servers (through foreign tables) in the current database.
VIEW DASHBOARD - View a dashboard for this database.
VIEW SQL EDITOR - Access the SQL Editor in Immerse for this database.
Users with SELECT privilege on views do not require SELECT privilege on underlying tables referenced by the view to retrieve the data queried by the view. View queries work without error whether or not users have direct access to referenced tables. This also applies to views that query tables in other databases.
To create views, users must have SELECT privilege on queried tables in addition to the CREATE VIEW privilege.
SELECT, INSERT, TRUNCATE, UPDATE, DELETE - Allow these SQL statements on this table.
DROP - Drop this table.
Users with SELECT privilege on views do not require SELECT privilege on underlying tables referenced by the view to retrieve the data queried by the view. View queries work without error whether or not users have direct access to referenced tables. This also applies to views that query tables in other databases.
To create views, users must have SELECT privilege on queried tables in addition to the CREATE VIEW privilege.
SELECT - Select from this view. Users do not need privileges on objects referenced by this view.
DROP - Drop this view.
Users with SELECT privilege on views do not require SELECT privilege on underlying tables referenced by the view to retrieve the data queried by the view. View queries work without error whether or not users have direct access to referenced tables. This also applies to views that query tables in other databases.
To create views, users must have SELECT privilege on queried tables in addition to the CREATE VIEW privilege.
VIEW - View this dashboard.
EDIT - Edit this dashboard.
DELETE - Delete this dashboard.
DROP - Drop this server from the current database.
ALTER - Alter this server in the current database.
USAGE - Use this server (through foreign tables) in the current database.
Privileges granted on a database-type object are inherited by all tables of that database.
## Privilege Commands
| SQL | Description |
| ----------------------------------------------------------------------------------------- | --------------------------------------------------------------- |
| [CREATE ROLE](/installation-and-configuration/security/roles#create-role) | Create role. |
| [DROP ROLE](/installation-and-configuration/security/roles#drop-role) | Drop role. |
| [GRANT](/installation-and-configuration/security/roles#grant) | Grant role to user or to another role. |
| [REVOKE](/installation-and-configuration/security/roles#revoke) | Revoke role from user or from another role. |
| [GRANT ON TABLE](/installation-and-configuration/security/roles#grant-on-table) | Grant role privilege(s) on a database table to a role or user. |
| [REVOKE ON TABLE](/installation-and-configuration/security/roles#revoke-on-table) | Revoke role privilege(s) on database table from a role or user. |
| [GRANT ON VIEW](/installation-and-configuration/security/roles#grant-on-view) | Grant role privilege(s) on a database view to a role or user. |
| [REVOKE ON VIEW](/installation-and-configuration/security/roles#revoke-on-view) | Revoke role privilege(s) on database view from a role or user. |
| [GRANT ON DATABASE](/installation-and-configuration/security/roles#grant-on-database) | Grant role privilege(s) on database to a role or user. |
| [REVOKE ON DATABASE](/installation-and-configuration/security/roles#revoke-on-database) | Revoke role privilege(s) on database from a role or user. |
| [GRANT ON SERVER](/installation-and-configuration/security/roles#grant-on-dashboard) | Grant role privilege(s) on server to a role or user. |
| [REVOKE ON SERVER](/installation-and-configuration/security/roles#see-also-10) | Revoke role privilege(s) on server from a role or user. |
| [GRANT ON DASHBOARD](/installation-and-configuration/security/roles#grant-on-dashboard) | Grant role privilege(s) on dashboard to a role or user. |
| [REVOKE ON DASHBOARD](/installation-and-configuration/security/roles#revoke-on-dashboard) | Revoke role privilege(s) on dashboard from a role or user. |
### Example
The following example shows a valid sequence for granting access privileges to non-superuser `user1` by granting a role to `user1` and by directly granting a privilege. This example presumes that `table1` and `user1` already exist, and that `user1` has ACCESS privileges on the database where `table1` exists.
1. Create the `r_select` role.
2. Grant the SELECT privilege on `table1` to the `r_select` role. Any user granted the `r_select` role gains the SELECT privilege.
```
GRANT SELECT ON TABLE table1 TO r_select;
```
3. Grant the `r_select` role to `user1`, giving `user1` the SELECT privilege on `table1`.
4. Directly grant `user1` the INSERT privilege on `table1`.
```
GRANT INSERT ON TABLE table1 TO user1;
```
See [Example Roles and Privileges Session](/installation-and-configuration/security/roles#example-roles-and-privileges-session) for a more complete example.
## CREATE ROLE
Create a role. Roles are granted to users for role-based database object access.
This clause requires superuser privilege and \ must not exist.
### Synopsis
```
CREATE ROLE ;
```
### Parameters
**\**
Name of the role to create.
### Example
Create a payroll department role called **payrollDept**.
```
CREATE ROLE payrollDept;
```
### See Also
* [Users and Databases](/sql/data-definition-ddl/users-and-databases)
* [DROP ROLE](/installation-and-configuration/security/roles#drop-role)
## DROP ROLE
Remove a role.
This clause requires superuser privilege and \ must exist.
### Synopsis
```
DROP ROLE [IF EXISTS] ;
```
### Parameters
**\**
Name of the role to drop.
### Example
Remove the payrollDept role.
```
DROP ROLE payrollDept;
```
### See Also
* [Users and Databases](/sql/data-definition-ddl/users-and-databases)
* [CREATE ROLE](/installation-and-configuration/security/roles#create-role)
## GRANT
Grant role privileges to users and to other roles.
The ACCESS privilege is a prerequisite for all other privileges at the database level. Without the ACCESS privilege, a user or role cannot perform tasks on any other database objects.
This clause requires superuser privilege. The specified \ and \ must exist.
### Synopsis
```
GRANT TO , ;
```
### Parameters
**\**
Names of roles to grant to users and other roles. Use commas to separate multiple role names.
**\**
Names of users. Use commas to separate multiple user names.
### Examples
Assign **payrollDept** role privileges to user **dennis**.
```
GRANT payrollDept TO dennis;
```
Grant **payrollDept** and **accountsPayableDept** role privileges to users **dennis** and **mike** and role **hrDept**.
```
GRANT payrollDept, accountsPayableDept TO dennis, mike, hrDept;
```
### See Also
* [Users and Databases](/sql/data-definition-ddl/users-and-databases)
* [CREATE ROLE](/installation-and-configuration/security/roles#create-role)
* [GRANT ON TABLE](/installation-and-configuration/security/roles#grant-on-table)
* [GRANT ON DATABASE](/installation-and-configuration/security/roles#grant-on-database)
## REVOKE
Remove role privilege from users or from other roles. This removes database object access privileges granted with the role.
This clause requires superuser privilege. The specified \ and \ must exist.
### Synopsis
```
REVOKE FROM , ;
```
### Parameters
**\**
Names of roles to remove from users and other roles. Use commas to separate multiple role names.
**\**
Names of the users. Use commas to separate multiple user names.
### Example
Remove **payrollDept** role privileges from user **dennis**.
```
REVOKE payrollDept FROM dennis;
```
Revoke **payrollDept** and **accountsPayableDept** role privileges from users **dennis** and **fred** and role **hrDept**.
```
REVOKE payrollDept, accountsPayableDept FROM dennis, fred, hrDept;
```
### See Also
* [Users and Databases](/sql/data-definition-ddl/users-and-databases)
* [CREATE ROLE](/installation-and-configuration/security/roles#create-role)
* [GRANT](/installation-and-configuration/security/roles#grant)
## GRANT ON TABLE
Define the privilege(s) a role or user has on the specified table. You can specify any combination of the `INSERT`, `SELECT`, `DELETE`, `UPDATE`, `DROP`, or `TRUNCATE` privilege or specify all privileges.
The ACCESS privilege is a prerequisite for all other privileges at the database level. Without the ACCESS privilege, a user or role cannot perform tasks on any other database objects.
This clause requires superuser privilege, or \ must have been created by the user invoking this command. The specified \ and users or roles defined in \ must exist.
### Synopsis
```
GRANT ON TABLE TO ;
```
### Parameters
**\**
| Parameter Value | Descriptions |
| --------------- | ---------------------------------------------------------------------- |
| `ALL` | Grant all possible access privileges on \ to \. |
| `ALTER TABLE` | Grant ALTER TABLE privilege on \<*tableName*> to \<*entityList*>. |
| `DELETE` | Grant DELETE privilege on \ to \. |
| `DROP` | Grant DROP privilege on \ to \. |
| `INSERT` | Grant INSERT privilege on \ to \. |
| `SELECT` | Grant SELECT privilege on \ to \. |
| `TRUNCATE` | Grant TRUNCATE privilege on \ to \. |
| `UPDATE` | Grant UPDATE privilege on \ to \. |
**\**
Name of the database table.
**\**
Name of entity or entities to be granted the privilege(s).
| Parameter Value | Descriptions |
| --------------- | ------------- |
| `role` | Name of role. |
| `user` | Name of user. |
### Examples
Permit all privileges on the `employees` table for the **payrollDept** role.
```
GRANT ALL ON TABLE employees TO payrollDept;
```
Permit SELECT-only privilege on the `employees` table for user **chris**.
```
GRANT SELECT ON TABLE employees TO chris;
```
Permit INSERT-only privilege on the `employees` table for the **hrdept** and **accountsPayableDept** roles.
```
GRANT INSERT ON TABLE employees TO hrDept, accountsPayableDept;
```
Permit INSERT, SELECT, and TRUNCATE privileges on the `employees` table for the role **hrDept** and for users **dennis** and **mike**.
```
GRANT INSERT, SELECT, TRUNCATE ON TABLE employees TO hrDept, dennis, mike;
```
### See Also
* [REVOKE ON TABLE](/installation-and-configuration/security/roles#revoke-on-table)
* [Tables](/sql/data-definition-ddl/tables)
* [CREATE ROLE](/installation-and-configuration/security/roles#create-role)
* [GRANT ON DATABASE](/installation-and-configuration/security/roles#grant-on-database)
## REVOKE ON TABLE
Remove the privilege(s) a role or user has on the specified table. You can remove any combination of the `INSERT`, `SELECT`, `DELETE`, `UPDATE`, or `TRUNCATE` privileges, or remove all privileges.
This clause requires superuser privilege or \ must have been created by the user invoking this command. The specified \ and users or roles in \ must exist.
### Synopsis
```
REVOKE ON TABLE FROM ;
```
### Parameters
**\**
| Parameter Value | Descriptions |
| --------------- | --------------------------------------------------------------- |
| `ALL` | Remove all access privilege for \ on \. |
| `ALTER TABLE` | Remove ALTER TABLE privilege for \ on \. |
| `DELETE` | Remove DELETE privilege for \ on \. |
| `DROP` | Remove DROP privilege for \ on \. |
| `INSERT` | Remove INSERT privilege for \ on \. |
| `SELECT` | Remove SELECT privilege for \ on \. |
| `TRUNCATE` | Remove TRUNCATE privilege for \ on \. |
| `UPDATE` | Remove UPDATE privilege for \ on \. |
**\**
Name of the database table.
**\**
Name of entities to be denied the privilege(s).
| Parameter Value | Descriptions |
| --------------- | ------------- |
| `role` | Name of role. |
| `user` | Name of user. |
### Example
Prohibit SELECT and INSERT operations on the `employees` table for the **nonemployee** role.
```
REVOKE ALL ON TABLE employees FROM nonemployee;
```
Prohibit SELECT operations on the `directors` table for the **employee** role.
```
REVOKE SELECT ON TABLE directors FROM employee;
```
Prohibit INSERT operations on the `directors` table for role **employee** and user **laura**.
```
REVOKE INSERT ON TABLE directors FROM employee, laura;
```
Prohibit INSERT, SELECT, and TRUNCATE privileges on the `employees` table for the role **nonemployee** and for users **dennis** and **mike**.
```
REVOKE INSERT, SELECT, TRUNCATE ON TABLE employees FROM nonemployee, dennis, mike;
```
### See Also
* [GRANT ON TABLE](/installation-and-configuration/security/roles#grant-on-table)
* [GRANT ON DATABASE](/installation-and-configuration/security/roles#grant-on-database)
## GRANT ON VIEW
Define the privileges a role or user has on the specified view. You can specify any combination of the `SELECT`, `INSERT`, or `DROP` privileges, or specify all privileges.
This clause requires superuser privileges, or \ must have been created by the user invoking this command. The specified \ and users or roles in \ must exist.
### Synopsis
```
GRANT ON VIEW TO ;
```
### Parameters
**\**
| Parameter Value | Descriptions |
| --------------- | --------------------------------------------------------------------- |
| `ALL` | Grant all possible access privileges on \ to \. |
| `DROP` | Grant DROP privilege on \ to \. |
| `INSERT` | Grant INSERT privilege on \ to \. |
| `SELECT` | Grant SELECT privilege on \ to \. |
**\**
Name of the database view.
**\**
Name of entities to be granted the privileges.
| Parameter Value | Descriptions |
| --------------- | ------------- |
| `role` | Name of role. |
| `user` | Name of user. |
### Examples
Permit SELECT, INSERT, and DROP privileges on the `employees` view for the **payrollDept** role.
```
GRANT ALL ON VIEW employees TO payrollDept;
```
Permit SELECT-only privilege on the `employees` view for the **employee** role and user **venkat**.
```
GRANT SELECT ON VIEW employees TO employee, venkat;
```
Permit INSERT and DROP privileges on the `employees` view for the **hrDept** and **acctPayableDept** roles and users **simon** and **dmitri**.
```
GRANT INSERT, DROP ON VIEW employees TO hrDept, acctPayableDept, simon, dmitri;
```
### See Also
* [REVOKE ON VIEW](/installation-and-configuration/security/roles#revoke-on-view)
* [DDL-VIEWS](/sql/data-definition-ddl/views)
* [CREATE ROLE](/installation-and-configuration/security/roles#create-role)
* [GRANT ON DATABASE](/installation-and-configuration/security/roles#grant-on-database)
## REVOKE ON VIEW
Remove the privileges a role or user has on the specified view. You can remove any combination of the `INSERT`, `DROP`, or `SELECT` privileges, or remove all privileges.
This clause requires superuser privilege, or \ must have been created by the user invoking this command. The specified \ and users or roles in \ must exist.
### Synopsis
```
REVOKE ON VIEW FROM ;
```
### Parameters
**\**
| Parameter Value | Descriptions |
| --------------- | ------------------------------------------------------------- |
| `ALL` | Remove all access privilege for \ on \. |
| `DROP` | Remove DROP privilege for \ on \. |
| `INSERT` | Remove INSERT privilege for \ on \. |
| `SELECT` | Remove SELECT privilege for \ on \. |
**\**
Name of the database view.
**\**
Name of entity to be denied the privilege(s).
| Parameter Value | Descriptions |
| --------------- | ------------- |
| `role` | Name of role. |
| `user` | Name of user. |
### Example
Prohibit SELECT, DROP, and INSERT operations on the `employees` view for the **nonemployee** role.
```
REVOKE ALL ON VIEW employees FROM nonemployee;
```
Prohibit SELECT operations on the `directors` view for the employee role.
```
REVOKE SELECT ON VIEW directors FROM employee;
```
Prohibit INSERT and DROP operations on the `directors` view for the **employee** and **manager** role and for users **ashish** and **lindsey**.
```
REVOKE INSERT, DROP ON VIEW directors FROM employee, manager, ashish, lindsey;
```
### See Also
* [GRANT ON VIEW](/installation-and-configuration/security/roles#grant-on-view)
* [GRANT ON DATABASE](/installation-and-configuration/security/roles#grant-on-database)
## GRANT ON DATABASE
Define the valid privileges a role or user has on the specified database. You can specify any combination of privileges, or specify all privileges.
The ACCESS privilege is a prerequisite for all other privileges at the database level. Without the ACCESS privilege, a user or role cannot perform tasks on any other database objects.
This clause requires superuser privileges.
### Synopsis
```
GRANT ON DATABASE TO ;
```
### Parameters
**\**
| Parameter Value | Descriptions |
| ------------------ | -------------------------------------------------------------------------------- |
| `ACCESS` | Grant ACCESS (connection) privilege on \ to \. |
| `ALL` | Grant all possible access privileges on \ to \. |
| `ALTER TABLE` | Grant ALTER TABLE privilege on \ to \. |
| `ALTER SERVER` | Grant ALTER SERVER privilege on \ to \. |
| `CREATE SERVER` | Grant CREATE SERVER privilege on \ to \; |
| `CREATE TABLE` | Grant CREATE TABLE privilege on \ to \. Previously `CREATE`. |
| `CREATE VIEW` | Grant CREATE VIEW privilege on \ to \. |
| `CREATE DASHBOARD` | Grant CREATE DASHBOARD privilege on \ to \. |
| `CREATE` | Grant CREATE privilege on \ to \. |
| `DELETE` | Grant DELETE privilege on \ to \. |
| `DELETE DASHBOARD` | Grant DELETE DASHBOARD privilege on \ to \. |
| `DROP` | Grant DROP privilege on \ to \. |
| `DROP SERVER` | Grant DROP privilege on \ to \. |
| `DROP VIEW` | Grant DROP VIEW privilege on \ to \. |
| `EDIT DASHBOARD` | Grant EDIT DASHBOARD privilege on \ to \. |
| `INSERT` | Grant INSERT privilege on \ to \. |
| `SELECT` | Grant SELECT privilege on \ to \. |
| `SELECT VIEW` | Grant SELECT VIEW privilege on \ to \. |
| `SERVER USAGE` | Grant SERVER USAGE privilege on \ to \. |
| `TRUNCATE` | Grant TRUNCATE privilege on \ to \. |
| `UPDATE` | Grant UPDATE privilege on \ to \. |
| `VIEW DASHBOARD` | Grant VIEW DASHBOARD privilege on \ to \. |
| `VIEW SQL EDITOR` | Grant VIEW SQL EDITOR privilege in Immerse on \ to \. |
**\**
Name of the database, which must exist, created by CREATE DATABASE.
**\**
Name of the entity to be granted the privilege.
| Parameter Value | Descriptions |
| --------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `role` | Name of role, which must exist. |
| `user` | Name of user, which must exist. See [Users and Databases](https://github.com/omnisci/docs-internal/tree/124aa7f52b9253d65f2b447433cb7629fc06ab6a/installation-and-configuration/security/5_usersanddatabases.html). |
### Examples
Permit all operations on the `companydb` database for the **payrollDept** role and user **david**.
```
GRANT ALL ON DATABASE companydb TO payrollDept, david;
```
Permit SELECT-only operations on the `companydb` database for the **employee** role.
```
GRANT ACCESS, SELECT ON DATABASE companydb TO employee;
```
Permit INSERT, UPDATE, and DROP operations on the `companydb` database for the **hrdept** and **manager** role and for users **irene** and **stephen**.
```
GRANT ACCESS, INSERT, UPDATE, DROP ON DATABASE companydb TO hrdept, manager, irene, stephen;
```
### See Also
* [REVOKE ON DATABAS](/installation-and-configuration/security/roles#revoke-on-database)E
* [GRANT ON TABLE](/installation-and-configuration/security/roles#grant-on-table)
* [CREATE ROLE](/installation-and-configuration/security/roles#create-role)
## REVOKE ON DATABASE
Remove the operations a role or user can perform on the specified database. You can specify privileges individually or specify all privileges.
This clause requires superuser privilege or the user must own the database object. The specified \ and roles or users in \ must exist.
### Synopsis
```
REVOKE ON DATABASE FROM ;
```
### Parameters
**\**
| Parameter Value | Descriptions |
| ------------------ | ----------------------------------------------------------------------------------- |
| `ACCESS` | Remove ACCESS (connection) privilege on \ from \. |
| `ALL` | Remove all possible privileges on \ from \. |
| `ALTER SERVER` | Remove ALTER SERVER privilege on \ from \ |
| `ALTER TABLE` | Remove ALTER TABLE privilege on \ from \. |
| `CREATE TABLE` | Remove CREATE TABLE privilege on \ from \. Previously `CREATE`. |
| `CREATE VIEW` | Remove CREATE VIEW privilege on \ from \. |
| `CREATE DASHBOARD` | Remove CREATE DASHBOARD privilege on \ from \. |
| `CREATE` | Remove CREATE privilege on \ from \. |
| `CREATE SERVER` | Remove CREATE SERVER privilege on \ from \. |
| `DELETE` | Remove DELETE privilege on \ from \. |
| `DELETE DASHBOARD` | Remove DELETE DASHBOARD privilege on \ from \. |
| `DROP` | Remove DROP privilege on \ from \. |
| `DROP SERVER` | Remove DROP SERVER privilege on \ from \. |
| `DROP VIEW` | Remove DROP VIEW privilege on \ from \. |
| `EDIT DASHBOARD` | Remove EDIT DASHBOARD privilege on \ from \. |
| `INSERT` | Remove INSERT privilege on \ from \. |
| `SELECT` | Remove SELECT privilege on \ from \. |
| `SELECT VIEW` | Remove SELECT VIEW privilege on \ from \. |
| `SERVER USAGE` | Remove SERVER USAGE privilege on \ from \. |
| `TRUNCATE` | Remove TRUNCATE privilege on \ from \. |
| `UPDATE` | Remove UPDATE privilege on \ from \. |
| `VIEW DASHBOARD` | Remove VIEW DASHBOARD privilege on \ from \. |
| `VIEW SQL EDITOR` | Remove VIEW SQL EDITOR privilege in Immerse on \ from \. |
**\**
Name of the database.
**\**
| Parameter Value | Descriptions |
| --------------- | ------------- |
| `role` | Name of role. |
| `user` | Name of user. |
### Example
Prohibit all operations on the `employees` database for the **nonemployee** role.
```
REVOKE ALL ON DATABASE employees FROM nonemployee;
```
Prohibit SELECT operations on the `directors` database for the **employee** role and for user **monica**.
```
REVOKE SELECT ON DATABASE directors FROM employee;
```
Prohibit INSERT, DROP, CREATE, and DELETE operations on the `directors` database for **employee** role and for users **max** and **alex**.
```
REVOKE INSERT, DROP, CREATE, DELETE ON DATABASE directors FROM employee;
```
### See Also
* [GRANT ON DATABASE](/installation-and-configuration/security/roles#grant-on-database)
* [GRANT ON TABLE](/installation-and-configuration/security/roles#grant-on-table)
## GRANT ON SERVER
Define the valid privileges a role or user has for working with servers. You can specify any combination of privileges or specify all privileges.
This clause requires superuser privileges, or \ must have been created by the user invoking the command.
### Synopsis
```
GRANT ON SERVER TO ;
```
### Parameters
**\**
| Parameter Value | Descriptions |
| --------------- | ----------------------------------------------------------------------------------------------------- |
| `DROP` | Grant DROP privileges on \ on current database to \. |
| `ALTER` | Grant ALTER privilege on \ on current database to \. |
| `USAGE` | Grant USAGE privilege (through foreign tables) on \ on current database to \. |
**\**
Name of the server, which must exist on the current database, created by CREATE SERVER ON DATABASE.
**\**
| Parameter Value | Descriptions |
| --------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `role` | Name of role, which must exist. |
| `user` | Name of user, which must exist. See [Users and Databases](https://github.com/omnisci/docs-internal/tree/124aa7f52b9253d65f2b447433cb7629fc06ab6a/installation-and-configuration/security/5_usersanddatabases.html). |
### Examples
Grant DROP privilege on server `parquet_s3_server` to user **fred**:
```
GRANT DROP ON SERVER parquet_s3_server TO fred
```
Grant ALTER privilege on server `parquet_s3_server` to role **payrollDept**:
```
GRANT ALTER ON SERVER parquet_s3_server TO payrollDept;
```
Grant USAGE and ALTER privileges on server `parquet_s3_server` to role **payrollDept** and user **jamie**:
```
GRANT USAGE, ALTER ON SERVER parquet_s3_server TO payrollDept, jamie;
```
### See Also
* [REVOKE ON SERVER](/installation-and-configuration/security/roles#grant-on-dashboard-1)
## REVOKE ON SERVER
Remove privileges a role or user has for working with servers. You can specify any combination of privileges or specify all privileges.
This clause requires superuser privileges, or \ must have been created by the user invoking the command.
### Synopsis
```
REVOKE ON SERVER FROM ;
```
### Parameters
**\**
| Parameter Value | Descriptions |
| --------------- | ------------------------------------------------------------------------------------------------------- |
| `DROP` | Remove DROP privileges on \ on current database for \. |
| `ALTER` | Remove ALTER privilege on \ on current database for \. |
| `USAGE` | Remove USAGE privilege (through foreign tables) on \ on current database for \. |
**\**
Name of the server, which must exist on the current database, created by CREATE SERVER ON DATABASE.
**\**
| Parameter Value | Descriptions |
| --------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `role` | Name of role, which must exist. |
| `user` | Name of user, which must exist. See [Users and Databases](https://github.com/omnisci/docs-internal/tree/124aa7f52b9253d65f2b447433cb7629fc06ab6a/installation-and-configuration/security/5_usersanddatabases.html). |
### Examples
Revoke DROP privilege on server `parquet_s3_server` for user **inga**:
```
REVOKE DROP ON SERVER parquet_s3_server FROM inga
```
Grant ALTER privilege on server `parquet_s3_server` for role **payrollDept**:
```
REVOKE ALTER ON SERVER parquet_s3_server FROM payrollDept;
```
Grant USAGE and ALTER privileges on server `parquet_s3_server` for role **payrollDept** and user **marvin**:
```
REVOKE USAGE, ALTER ON SERVER parquet_s3_server FROM payrollDept, marvin;
```
### See Also
* [GRANT ON SERVER](/installation-and-configuration/security/roles#grant-on-dashboard)
## GRANT ON DASHBOARD
Define the valid privileges a role or user has for working with dashboards. You can specify any combination of privileges or specify all privileges.
This clause requires superuser privileges.
### Synopsis
```
GRANT [ON DASHBOARD ] TO ;
```
### Parameters
**\**
| Parameter Value | Descriptions |
| --------------- | ------------------------------------------------------------------------ |
| `ALL` | Grant all possible access privileges on \ to \. |
| `CREATE` | Grant CREATE privilege to \. |
| `DELETE` | Grant DELETE privilege on \ to \. |
| `EDIT` | Grant EDIT privilege on \ to \. |
| `VIEW` | Grant VIEW privilege on \ to \. |
**\**
ID of the dashboard, which must exist, created by CREATE DASHBOARD. To show a list of all dashboards and IDs in heavysql, run the `\dash` command when logged in as superuser.
**\**
| Parameter Value | Descriptions |
| --------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `role` | Name of role, which must exist. |
| `user` | Name of user, which must exist. See [Users and Databases](https://github.com/omnisci/docs-internal/tree/124aa7f52b9253d65f2b447433cb7629fc06ab6a/installation-and-configuration/security/5_usersanddatabases.html). |
### Examples
Permit all privileges on the dashboard ID `740` for the **payrollDept** role.
```
GRANT ALL ON DASHBOARD 740 TO payrollDept;
```
Permit VIEW-only privilege on dashboard `730` for the **hrDept** role and user **dennis**.
```
GRANT VIEW ON DASHBOARD 730 TO hrDept, dennis;
```
Permit EDIT and DELETE privileges on dashboard `740` for the **hrDept** and **accountsPayableDept** roles and for user **pavan**.
```
GRANT EDIT, DELETE ON DASHBOARD 740 TO hrdept, accountsPayableDept, pavan;
```
### See Also
* [REVOKE ON DASHBOARD](/installation-and-configuration/security/roles#revoke-on-dashboard)
## REVOKE ON DASHBOARD
Remove privileges a role or user has for working with dashboards. You can specify any combination of privileges, or all privileges.
This clause requires superuser privileges.
### Synopsis
```
REVOKE [ON DASHBOARD ] FROM ;
```
### Parameters
**\**
| Parameter Value | Descriptions |
| --------------- | -------------------------------------------------------------------------- |
| `ALL` | Revoke all possible access privileges on \ for \