GRANT
Grants privilege to an existing user on the whole cluster or on a specific object.
Table of Contents
Synopsis
GRANT { { DQL | DML | DDL [,...] } | ALL [ PRIVILEGES ] }
[ON {SCHEMA | TABLE} identifier [, ...]]
TO user_name [, ...];
Description
GRANT
is a management statement to grant one or many privileges on the whole cluster or on a specific object to one or many existing users.
ON {SCHEMA | TABLE}
is optional, if not specified the privilege will be granted on the CLUSTER
level.
For usage of the GRANT
statement see Privileges.
Parameters
identifier: | The identifier of the corresponding object. If |
---|---|
user_name: | The name of an existing user. |