Roles and Privileges
OmniSci 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
Grant roles access privileges on database objects.
Grant roles to users.
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 OmniSci session is interrupted.
Database Object Privileges
There are four 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.
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.
DROP - Drop a table from the database.
DROP VIEW - Drop a view for this database.
DELETE DASHBOARD - Delete a dasboard for this database.
SELECT, INSERT, TRUNCATE, UPDATE, DELETE - Allow these operations on any table in the database.
SELECT VIEW - Select a view for this database.
EDIT DASHBOARD - Edit a dashboard for this database.
VIEW DASHBOARD - View a dashboard for this database.
VIEW SQL EDITOR - Access the SQL Editor in Immerse for this database.
Privileges granted on a database-type object are inherited by all tables of that database.
Privilege Commands
SQL | Description |
Create role. | |
Drop role. | |
Grant role to user or to another role. | |
Revoke role from user or from another role. | |
Grant role privilege(s) on a database table to a role or user. | |
Revoke role privilege(s) on database table from a role or user. | |
Grant role privilege(s) on a database view to a role or user. | |
Revoke role privilege(s) on database view from a role or user. | |
Grant role privilege(s) on database to a role or user. | |
Revoke role privilege(s) on database from a role or user. | |
Grant role privilege(s) on dashboard to a role or user. | |
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.
Create the
r_select
role.Grant the SELECT privilege on
table1
to ther_select
role. Any user granted ther_select
role gains the SELECT privilege.Grant the
r_select
role touser1
, givinguser1
the SELECT privilege ontable1
.Directly grant
user1
the INSERT privilege ontable1
.
See Example Roles and Privileges Session for a more complete example.
CREATE ROLE
CREATE ROLE
Create a role. Roles are granted to users for role-based database object access.
This clause requires superuser privilege and <roleName> must not exist.
Synopsis
Parameters
<roleName>
Name of the role to create.
Example
Create a payroll department role called payrollDept.
See Also
DROP ROLE
DROP ROLE
Remove a role.
This clause requires superuser privilege and <roleName> must exist.
Synopsis
Parameters
<roleName>
Name of the role to drop.
Example
Remove the payrollDept role.
See Also
GRANT
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 <roleNames> and <userNames> must exist.
Synopsis
Parameters
<roleNames>
Names of roles to grant to users and other roles. Use commas to separate multiple role names.
<userNames>
Names of users. Use commas to separate multiple user names.
Examples
Assign payrollDept role privileges to user dennis.
Grant payrollDept and accountsPayableDept role privileges to users dennis and mike and role hrDept.
See Also
REVOKE
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 <roleNames> and <userNames> must exist.
Synopsis
Parameters
<roleNames>
Names of roles to remove from users and other roles. Use commas to separate multiple role names.
<userName>
Names of the users. Use commas to separate multiple user names.
Example
Remove payrollDept role privileges from user dennis.
Revoke payrollDept and accountsPayableDept role privileges from users dennis and fred and role hrDept.
See Also
GRANT ON TABLE
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 <tableName> must have been created by the user invoking this command. The specified <tableName> and users or roles defined in <entityList> must exist.
Synopsis
Parameters
<privilegeList>
Parameter Value | Descriptions |
| Grant all possible access privileges on <tableName> to <entityList>. |
| Grant ALTER TABLE privilege on <tableName> to <entityList>. |
| Grant DELETE privilege on <tableName> to <entityList>. |
| Grant DROP privilege on <tableName> to <entityList>. |
| Grant INSERT privilege on <tableName> to <entityList>. |
| Grant SELECT privilege on <tableName> to <entityList>. |
| Grant TRUNCATE privilege on <tableName> to <entityList>. |
| Grant UPDATE privilege on <tableName> to <entityList>. |
<tableName>
Name of the database table.
<entityList>
Name of entity or entities to be granted the privilege(s).
Parameter Value | Descriptions |
| Name of role. |
| Name of user. |
Examples
Permit all privileges on the employees
table for the payrollDept role.
Permit SELECT-only privilege on the employees
table for user chris.
Permit INSERT-only privilege on the employees
table for the hrdept and accountsPayableDept roles.
Permit INSERT, SELECT, and TRUNCATE privileges on the employees
table for the role hrDept and for users dennis and mike.
See Also
REVOKE ON TABLE
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 <tableName> must have been created by the user invoking this command. The specified <tableName> and users or roles in <entityList> must exist.
Synopsis
Parameters
<privilegeList>
Parameter Value | Descriptions |
| Remove all access privilege for <entityList> on <tableName>. |
| Remove ALTER TABLE privilege for <entityList> on <tableName>. |
| Remove DELETE privilege for <entityList> on <tableName>. |
| Remove DROP privilege for <entityList> on <tableName>. |
| Remove INSERT privilege for <entityList> on <tableName>. |
| Remove SELECT privilege for <entityList> on <tableName>. |
| Remove TRUNCATE privilege for <entityList> on <tableName>. |
| Remove UPDATE privilege for <entityList> on <tableName>. |
<tableName>
Name of the database table.
<entityList>
Name of entities to be denied the privilege(s).
Parameter Value | Descriptions |
| Name of role. |
| Name of user. |
Example
Prohibit SELECT and INSERT operations on the employees
table for the nonemployee role.
Prohibit SELECT operations on the directors
table for the employee role.
Prohibit INSERT operations on the directors
table for role employee and user laura.
Prohibit INSERT, SELECT, and TRUNCATE privileges on the employees
table for the role nonemployee and for users dennis and mike.
See Also
GRANT ON VIEW
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 <viewName> must have been created by the user invoking this command. The specified <viewName> and users or roles in <entityList> must exist.
Synopsis
Parameters
<privilegeList>
Parameter Value | Descriptions |
| Grant all possible access privileges on <viewName> to <entityList>. |
| Grant DROP privilege on <viewName> to <entityList>. |
| Grant INSERT privilege on <viewName> to <entityList>. |
| Grant SELECT privilege on <viewName> to <entityList>. |
<viewName>
Name of the database view.
<entityList>
Name of entities to be granted the privileges.
Parameter Value | Descriptions |
| Name of role. |
| Name of user. |
Examples
Permit SELECT, INSERT, and DROP privileges on the employees
view for the payrollDept role.
Permit SELECT-only privilege on the employees
view for the employee role and user venkat.
Permit INSERT and DROP privileges on the employees
view for the hrDept and acctPayableDept roles and users simon and dmitri.
See Also
REVOKE ON VIEW
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 <viewName> must have been created by the user invoking this command. The specified <viewName> and users or roles in <entityList> must exist.
Synopsis
Parameters
<privilegeList>
Parameter Value | Descriptions |
| Remove all access privilege for <entityList> on <viewName>. |
| Remove DROP privilege for <entityList> on <viewName>. |
| Remove INSERT privilege for <entityList> on <viewName>. |
| Remove SELECT privilege for <entityList> on <viewName>. |
<viewName>
Name of the database view.
<entityList>
Name of entity to be denied the privilege(s).
Parameter Value | Descriptions |
| Name of role. |
| Name of user. |
Example
Prohibit SELECT, DROP, and INSERT operations on the employees
view for the nonemployee role.
Prohibit SELECT operations on the directors
view for the employee role.
Prohibit INSERT and DROP operations on the directors
view for the employee and manager role and for users ashish and lindsey.
See Also
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
Parameters
<privilegeList>
Parameter Value | Descriptions |
| Grant ACCESS (connection) privilege on <dbName> to <entityList>. |
| Grant all possible access privileges on <dbName> to <entityList>. |
| Grant ALTER TABLE privilege on <dbName> to <entityList>. |
| Grant CREATE TABLE privilege on <dbName> to <entityList>. Previously |
| Grant CREATE VIEW privilege on <dbName> to <entityList>. |
| Grant CREATE DASHBOARD privilege on <dbName> to <entityList>. |
| Grant CREATE privilege on <dbName> to <entityList>. |
| Grant DELETE privilege on <dbName> to <entityList>. |
| Grant DELETE DASHBOARD privilege on <dbName> to <entityList>. |
| Grant DROP privilege on <dbName> to <entityList>. |
| Grant DROP VIEW privilege on <dbName> to <entityList>. |
| Grant EDIT DASHBOARD privilege on <dbName> to <entityList>. |
| Grant INSERT privilege on <dbName> to <entityList>. |
| Grant SELECT privilege on <dbName> to <entityList>. |
| Grant SELECT VIEW privilege on <dbName> to <entityList>. |
| Grant TRUNCATE privilege on <dbName> to <entityList>. |
| Grant UPDATE privilege on <dbName> to <entityList>. |
| Grant VIEW DASHBOARD privilege on <dbName> to <entityList>. |
| Grant VIEW SQL EDITOR privilege in Immerse on <dbName> to <entityList>. |
<dbName>
Name of the database, which must exist, created by CREATE DATABASE.
<entityList>
Name of the entity to be granted the privilege.
Parameter Value | Descriptions |
| Name of role, which must exist. |
| Name of user, which must exist. See Users and Databases. |
Examples
Permit all operations on the companydb
database for the payrollDept role and user david.
Permit SELECT-only operations on the companydb
database for the employee role.
Permit INSERT, UPDATE, and DROP operations on the companydb
database for the hrdept and manager role and for users irene and stephen.
See Also
REVOKE ON DATABASE
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 <dbName> and roles or users in <entityList> must exist.
Synopsis
Parameters
<privilegeList>
Parameter Value | Descriptions |
| Remove ACCESS (connection) privilege on <dbName> to <entityList>. |
| Remove all possible privileges on <dbName> to <entityList>. |
| Remove ALTER TABLE privilege on <dbName> to <entityList>. |
| Remove CREATE TABLE privilege on <dbName> to <entityList>. Previously |
| Remove CREATE VIEW privilege on <dbName> to <entityList>. |
| Remove CREATE DASHBOARD privilege on <dbName> to <entityList>. |
| Remove CREATE privilege on <dbName> for <entityList>. |
| Remove DELETE privilege on <dbName> to <entityList>. |
| Remove DELETE DASHBOARD privilege on <dbName> to <entityList>. |
| Remove DROP privilege on <dbName> to <entityList>. |
| Remove DROP VIEW privilege on <dbName> to <entityList>. |
| Remove EDIT DASHBOARD privilege on <dbName> to <entityList>. |
| Remove INSERT privilege on <dbName> to <entityList>. |
| Remove SELECT privilege on <dbName> to <entityList>. |
| Remove SELECT VIEW privilege on <dbName> to <entityList>. |
| Remove TRUNCATE privilege on <dbName> to <entityList>. |
| Remove UPDATE privilege on <dbName> to <entityList>. |
| Remove VIEW DASHBOARD privilege on <dbName> to <entityList>. |
| Remove VIEW SQL EDITOR privilege in Immerse on <dbName> to <entityList>. |
<dbName>
Name of the database.
<entityList>
Parameter Value | Descriptions |
| Name of role. |
| Name of user. |
Example
Prohibit all operations on the employees
database for the nonemployee role.
Prohibit SELECT operations on the directors
database for the employee role and for user monica.
Prohibit INSERT, DROP, CREATE, and DELETE operations on the directors
database for employee role and for users max and alex.
See Also
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
Parameters
<privilegeList>
Parameter Value | Descriptions |
| Grant all possible access privileges on <dashboardId> to <entityList>. |
| Grant CREATE privilege to <entityList>. |
| Grant DELETE privilege on <dashboardId> to <entityList>. |
| Grant EDIT privilege on <dashboardId> to <entityList>. |
| Grant VIEW privilege on <dashboardId> to <entityList>. |
<dashboardId>
ID of the dashboard, which must exist, created by CREATE DASHBOARD. To show a list of all dashboards and IDs in omnisql, run the \dash
command when logged in as superuser.
<entityList>
Parameter Value | Descriptions |
| Name of role, which must exist. |
| Name of user, which must exist. See Users and Databases. |
Examples
Permit all privileges on the dashboard ID 740
for the payrollDept role.
Permit VIEW-only privilege on dashboard 730
for the hrDept role and user dennis.
Permit EDIT and DELETE privileges on dashboard 740
for the hrDept and accountsPayableDept roles and for user pavan.
See Also
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
Parameters
<privilegeList>
Parameter Value | Descriptions |
| Revoke all possible access privileges on <dashboardId> for <entityList>. |
| Revoke CREATE privilege for <entityList>. |
| Revoke DELETE privilege on <dashboardId> for <entityList>. |
| Revoke EDIT privilege on <dashboardId> for <entityList>. |
| Revoke VIEW privilege on <dashboardId> for <entityList>. |
<dashboardId>
ID of the dashboard, which must exist, created by CREATE DASHBOARD.
<entityList>
Parameter Value | Descriptions |
| Name of role, which must exist. |
| Name of user, which must exist. See Users and Databases. |
Revoke DELETE privileges on dashboard 740
for the payrollDept role.
Revoke all privileges on dashboard 730
for hrDept role and users dennis and mike.
Revoke EDIT and DELETE of dashboard 740
for the hrDept and accountsPayableDept roles and for users dante and jonathan.
See Also
Common Privilege Levels for Non-Superusers
The following privilege levels are typically recommended for non-superusers in Immerse. Privileges assigned for users in your organization may vary depending on access requirements.
Privilege | Command Syntax to Grant Privilege |
Access a database |
|
Create a table |
|
Select a table |
|
View a dashboard |
|
Create a dashboard |
|
Edit a dashboard |
|
Delete a dashboard |
|
Example: Roles and Privileges
These examples assume that tables table1
through table4
are created as needed:
The following examples show how to work with users, roles, tables, and dashboards.
Create User Accounts
Grant Access to Users on Database
Create Marketing Department Roles
Grant Marketing Department Roles to Marketing Department Employees
Grant Privelege to Marketing Department Roles
Create Sales Department Roles
Grant Sales Department Roles to Sales Department Employees
Grant Privilege to Sales Department Roles
Grant All Sales Roles to Sales Department Manager and Marketing Department Manager
Grant View on Dashboards
Use the \dash
command to list all dashboards and their unique IDs in Omnisci:
Here, the Marketing_Summary
dashboard uses table2
as a data source. The role marketingDeptRole2
has select privileges on that table. Grant view access on the Marketing_Summary
dashboard to marketingDeptRole2
:
Relationships Between Users, Roles, and Tables
The following table shows the roles and privileges for each user created in the previous example.
User | Roles Granted | Table Privileges |
salesDeptEmployee1 | salesDeptRole1 | SELECT on Tables 1, 3 |
salesDeptEmployee2 | salesDeptRole2 | SELECT on Table 3 |
salesDeptEmployee3 | salesDeptRole2 | SELECT on Table 3 |
salesDeptEmployee4 | salesDeptRole3 | SELECT on Table 4 |
salesDeptManagerEmployee5 | salesDeptRole1, salesDeptRole2, salesDeptRole3 | SELECT on Tables 1, 3, 4 |
marketingDeptEmployee1 | marketingDeptRole1 | SELECT on Tables 1, 2 |
marketingDeptEmployee2 | marketingDeptRole2 | SELECT on Table 2 |
marketingDeptManagerEmployee3 | marketingDeptRole1, marketingDeptRole2, salesDeptRole1, salesDeptRole2, salesDeptRole3 | SELECT on Tables 1, 2, 3, 4 |
Commands to Report Roles and Privileges
Use the following commands to list current roles and assigned privileges. If you have superuser access, you can see privileges for all users. Otherwise, you can see only those roles and privileges for which you have access.
Results for users, roles, privileges, and object privileges are returned in creation order.
\dash
\dash
Lists all dashboards and dashboard IDs in OmniSci. Requires superuser privileges. Dashboard privileges are assigned by dashboard ID because dashboard names may not be unique.
Example
omnisql> \dash database omnisci
Dashboard ID | Dashboard Name | Owner
1 | Marketing_Summary | omnisci
\object_privileges
objectType
`_
objectName`_
\object_privileges
objectType
`_
objectName`_Reports all privileges granted to the specified object for all roles and users. If the specified objectName does not exist, no results are reported. Used for databases and tables only.
Example
\privileges
roleName
|
userName
\privileges
roleName
|
userName
Reports all object privileges granted to the specified role or user. The roleName or userName specified must exist.
Example
\role_list
userName
\role_list
userName
Reports all roles granted to the given user. The userName specified must exist.
Example
\roles
\roles
Reports all roles.
Example
\u
\u
Lists all users.
Example
Example: Data Security
The following example demonstrates field-level security using two views:
view_users_limited
, in which users only see three of seven fields:userid
,First_Name
, andDepartment
.view_users_full
, users see all seven fields.
Source Data
Create Views
Create Users
Grant Access to Users on Database
Create Roles
Grant Roles to Users
Grant Privilege to View Roles
Verify Views
User readonly1
sees no tables, only the specific view granted, and only the three specific columns returned in the view:
User readonly2
sees no tables, only the specific view granted, and all seven columns returned in the view:
Last updated