GRANT give the associated privileges to a user or group. Statements that begin with REVOKE remove those privileges from a user or group.
A full list of privileges can be found in the Ocient Privileges Reference.
Supported DCL SQL statements are:
- GRANT PRIVILEGE
- REVOKE PRIVILEGE
- GRANT ROLE
- REVOKE ROLE
When you create an object in the system, database, or schema, the Ocient System automatically grants you all valid privileges for that type of object. For example, if you create a table in a database, the system grants you all privileges that apply to the created table. For details, see Table Privileges.For non-SSO users, the system assigns creator privileges to the user. For SSO users, the system follows specific criteria to assign the privileges. To understand the criteria the system uses, see User Access Control and Workload Management with SSO.
Grant Privileges
TheGRANT statement grants privileges to a user or group. The privileges that you can grant in the GRANT statement map to the tables and differ per object. The WITH GRANT OPTION keywords specify that the grantee can also grant privileges on that object.
To grant privileges, you must have:
VIEWprivileges for the specified user or group being granted new privileges.SYSAUTHprivileges over the system or database object that the specified user or group is being granted privileges on.
SQL
When you grant any privilege to a user on a system or database object other than the
VIEW privilege, the database implicitly grants the VIEW privilege on the specified object to the user, as well as associated object types (e.g., DROP VIEW ON DATABASE also grants VIEW VIEW ON DATABASE and VIEW ON DATABASE).SELECT SQL statement on a table to a trusted group.
SQL
SELECT privilege for all tables and views on the database_name database to a trusted group.
SQL
SELECT privilege for all tables and views on all databases in the system to a trusted group.
SQL
Revoke Privileges
TheREVOKE statement revokes privileges from a user or group.
To revoke privileges, you must have:
VIEWprivileges for the specified user or group having their privileges revoked.SYSAUTHprivileges over the system or database object from which the specified user or group has their privileges revoked.
SQL
When you revoke the
VIEW privilege on a system or database object, the database implicitly revokes all privileges on the specified object from the user.If you revoke the VIEW privilege on an associated object type, the system revokes the privileges for that object type. For example, grant the DROP TABLE privilege to the user by using the GRANT DROP TABLE ON DATABASE SQL statement. Due to implicit granting by the system, this action causes the user to have DROP TABLE, VIEW TABLE, and VIEW privileges. If you revoke the VIEW TABLE privilege using the REVOKE VIEW TABLE ON DATABASE SQL statement, then the system revokes the privileges for the associated type. In this case, the user only retains the VIEW privilege on the database.SQL
Ocient Privileges Reference
These tables describe the privilege options on each object in Ocient and the allowed privileges.As of version 23.0, Ocient DCL has replaced the
TRUNCATE privilege with the DELETE privilege.Any TRUNCATE privileges, whether manually granted or assigned as part of a user role, should automatically convert to DELETE privileges following a system upgrade to version 23.0 or later.Ocient System Privileges
Database Privileges
Schema Privileges
Granting privileges using DCL statements promotes an implicit schema to an explicit schema. For details, see Schemas.
View Privileges
Table Privileges
Machine Learning Model Privileges
Data Pipeline Privileges
Data Pipeline Function Privileges
User Privileges
Group Privileges
System Catalog and Object or View Visibility
Thesys.privileges table in the system catalog exposes the privileges in the system. This table displays this information:
- Timestamp of the grant
- Grantor
- Grantee
- Privilege granted
- Object type
- Object id
- Grantable
VIEW and SELECT privileges just like ordinary tables. By default, everyone has VIEW and SELECT privileges on all system catalog tables.
You can see the objects within the system catalog tables only if you have sufficient privileges on those objects. These objects require a VIEW or SELECT privilege or membership in a group or role to provide visibility. When you execute queries against a system catalog table, you do not see or know the existence of objects to which you do not have access.
Views offer a similar functionality because the database does not check privileges to the underlying tables and views after you create a view. You can create a table with sensitive information and restrict visibility by creating a view on top of the table with only certain rows or columns. Someone else with the SELECT privilege to the view can query the view, even without any privileges to the underlying table.
Roles
Similar to groups, users can inherit privileges by being granted one of the predefined roles in Ocient. The names of and privileges assigned to roles in Ocient are predefined by the system. Roles can be applicable to the Ocient System or one of the user-defined databases. The roles in Ocient are as follows: System Roles- Security Administrator — Can read, create, and modify all users and groups.
- System Administrator — Can read, create, and modify system objects such as tables, clusters, databases, etc. Can see and delete any queries system-wide.
- System Analyst — Read-only access to the entire system. Can see all queries in the system.
- Database Administrator — Can read, create, and modify database objects such as tables, clusters, databases, etc. This role can also create users for the database. Can see and delete all queries in the database.
- Database Analyst — Read-only rights to database objects and data within the database. Can see all queries in the database.
- Public — Every user who has access to the database has the Public role by default. You can grant other privileges to this role. This role allows the creation of a schema using the
CREATE SCHEMASQL statement and allows the viewing of other roles by default.
Grant Role Membership
Grants a role to a user or group. SyntaxSQL
Example
This example grants
user1 the system administrator role.
SQL
Revoke Role Membership
Revokes a role from a user or group. SyntaxSQL
Example
This example revokes the system administrator role from
user1.
SQL
Default Role Privileges
Security Administrator Privileges
System Administrator Privileges
System Analyst Privileges
Database Administrator Privileges
Database Analyst Privileges
Public Privileges
Query Visibility
The visibility of queries depends on which database you are logged into and your assigned privileges. Users with no additional VIEW QUERIES or VIEW REDACTED QUERIES privileges can view only queries that they submit themselves. The VIEW QUERIES privilege allows access to queries for all users in these system catalog tables:sys.queriessys.completed_queriessys.planssys.active_query_scheduler_infosys.all_operator_instancessys.completed_operator_instancessys.op_inst_debug_info
sys.queriessys.completed_queries
Database Administrator or System Administrator role. Use the WITH GRANT OPTION keywords to allow a user to further grant this privilege to other users and groups.
Login Impacts on Query Visibility
Along with having role privileges, users also must be logged into the appropriate database to view queries:- If the user logs in to the
SYSTEMdatabase, the user can see all queries from all databases. - If the user logs in to a database other than
SYSTEM, the user can see queries in only that database.

