GRANT
On this page
Grants the specified privileges to an existing user.
All of the privileges and their scope (global, database, table, etc.
Syntax
GRANT [TRANSFERABLE] priv_type [, priv_type [ ... ]] ON priv_levelTO user_or_role [, user_or_role [ ... ]][WITH GRANT OPTION][REQUIRE {SSL | NONE}]priv_type:ALL PRIVILEGES| SELECT| INSERT| UPDATE| DELETE| CREATE| DROP| RELOAD| PROCESS| FILE READ| FILE WRITE| INDEX| ALTER| SHOW METADATA| GRANT OPTION| SUPER| SYSTEM_VARIABLES_ADMIN| CREATE TEMPORARY TABLES| LOCK TABLES| CREATE VIEW| SHOW VIEW| CREATE USER| ALTER USER| CLUSTER| ALTER VIEW| DROP VIEW| BACKUP| CREATE DATABASE| DROP DATABASE| CREATE PIPELINE| DROP PIPELINE| ALTER PIPELINE| START PIPELINE| SHOW PIPELINE| EXECUTE| CREATE ROUTINE| ALTER ROUTINE| SHOW ROUTINE| CREATE POOL| DROP POOL| CREATE LINK| DROP LINK| SHOW LINK| OUTBOUND| ALTER TRACEpriv_level:*| *.*| database.*| database.tableuser_or_role:user [, user]| roleuser:'user_name'[@'host_name'] [IDENTIFIED BY 'password']role:ROLE 'role_name'
Arguments
priv_
priv_
-
USAGE
privilege is given by default when a user is created.It is a synonym for “no privileges”. All privileges must be given separately using the GRANT
command.memsql> CREATE DATABASE db1; Query OK, 1 row affected (1.33 sec) memsql> CREATE USER test; Query OK, 0 rows affected (0.01 sec) memsql> SHOW GRANTS FOR test; +----------------------------------+ | Grants for test@% | +----------------------------------+ | GRANT USAGE ON *.* TO 'test'@'%' | +----------------------------------+ 1 row in set (0.00 sec) memsql> exit $ memsql -u test Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 4 Server version: 5.7.32-debug SingleStoreDB source distribution (compatible; MySQL Enterprise & MySQL Commercial) Copyright (c) 2000, 2024, Oracle and/or its affiliates. Oracle is a registered trademark of Oracle Corporation and/or its affiliates. Other names may be trademarks of their respective owners. Type 'help;' or '\h' for help. Type '\c' to clear the current input statement. memsql> SHOW DATABASES; +--------------------+ | Database | +--------------------+ | information_schema | +--------------------+ 1 row in set (0.00 sec) memsql> USE db1; ERROR 1044 (42000): Access denied for user 'test'@'%' to database 'db1' memsql>
-
*.
- Global privileges are administrative or apply to all databases on a given server.* -
database.
- Database privileges apply to all objects in a given database.* Wildcards (%) are accepted in database names. The underscore character (_ ) can also be used as a wildcard to match any single character. A backspace (\) can precede an underscore to indicate the underscore is a literal part of a database name, e. g. db_
.1 A sharp character (#) must precede the database name if wildcards are used in a GRANT
command.This will allow users to be granted permissions to any database that fits the pattern. See the following examples. Grant access to user1 for all databases that starts with "db" and is followed by a single character, e.
g. db1
,db2
, ordba
:GRANT ALL ON `#db_`.* TO user1;Grant access to user2 for all databases that start with "db" and followed by zero or more characters, e.
g. db
,db1
,db123
, ordb_
:456 GRANT ALL ON `#db%`.* TO user2;Grant access to user3 for all databases that start with "db_
" and followed by zero or more characters, e. g. db_
,db_
,1 db_
, orabc db_
:123 GRANT ALL ON `#db\_%`.* TO user3; -
database.
- Table privileges apply to all columns in a given table in a given database.table
user_@'host_
part is optional.@'%'
will be appended to the user string.'demo-user'
is equivalent to 'demo-user'@'%'
.'%'
wildcard matches any hostname.user
and host_
need not be quoted if they are legal as unquoted identifiers.host_
string contains wildcard characters (such as %
), or a user string contains special characters (such as space or -
) or is a restricted keyword.
Remarks
-
The creation of users by using
GRANT
is disallowed andNO_
is enabled by default.AUTO_ CREATE_ USER -
A user with the
SUPER
permission can perform the following actions:-
Set global variables, run administrative commands, and change passwords for other users.
-
Access all available resource pools.
Permissions for additional resource pools can be given using the GRANT
command.
-
-
Refer to the Permission Matrix for the required permission.
-
USAGE
privilege allows users to connect to the cluster, view some SHOW Commands, and view objects on theinformation_
database.schema -
PROCESS
,FILE READ
,FILE WRITE
,SHOW METADATA
,SUPER
,CREATE USER
,SYSTEM_
,VARIABLES_ ADMIN CLUSTER
,CREATE POOL
, andDROP POOL
are global privileges.They can be granted only on *.
and not on specific databases or tables.* -
The
SYSTEM_
permission allows users to set certain engine variables.VARIABLES_ ADMIN These engine variables can be found by running the SHOW VARIABLES EXTENDED
command and confirming the value is "Yes" in theIn_
column.Allow_ List -
The
WITH GRANT OPTION
clause grants theGRANT OPTION
privilege, which allows a user to grant all privileges that the user already has to other users within a scoped database.The privilege_
engine variable must be left on the default valuetransfer_ mode grant_
for theoption WITH GRANT OPTION
clause to work as expected.The GRANT .
and. . WITH GRANT OPTION GRANT GRANT OPTION .
statements are synonymous.. . See Default Mode Permissions Changes for more information. Note: Different users with
GRANT OPTION
privilege may be able to combine their privileges.A user with both the
GRANT OPTION
andSUPER
privileges can grant any privilege to and revoke any privilege from the users (including themselves) within a scoped database. -
The
TRANSFERABLE
clause allows a user to grant individual privileges to another user.The privilege_
engine variable must be set totransfer_ mode per_
for theprivilege TRANSFERABLE
clause to work as expected.If privilege_
is left on the default valuetransfer_ mode grant_
and theoption TRANSFERABLE
clause is attempted, the user will receive an error.If a non-transferable privilege is granted to a user with the same privilege level as the grantee, then transferability is revoked. Note
The user must have
SYSTEM_
orVARIABLES_ ADMIN SUPER
privilege to change the value ofprivilege_
.transfer_ mode For example, after this statement, both
SELECT
andINSERT
ondb.
will be available to '* user'@'%
' and 'user'@'%
' will be able to grant them to others:GRANT TRANSFERABLE SELECT, INSERT ON db.* TO 'user'@'%' -
The
EXECUTE
permission allows a user to execute an extensibility object.For example, having this permission for UDFs, UDAFs, and TVFs allows the user to run them in SELECT
queries.Similarly, a user with EXECUTE
privileges for a stored procedure can run the SP using theCALL
orECHO
statements. -
The
CREATE ROUTINE
privilege allows a user to create an extensibility object (for example, a UDF, UDAF, TVF, or SP). -
The
ALTER ROUTINE
privilege allows a user to replace or delete an extensibility object (for example, a UDF, UDAF, TVF, or SP). -
GRANT
syntax for the following authentication users as follows: -
The
OUTBOUND
privilege is required to create an outbound connection between SingleStore and an a 3rd party object store via the following commands:-
SELECT .
S3, HDFS, Azure Blob, GCS, or Kafka.. . INTO Note
SELECT .
a file system storage requires both. . INTO SELECT
andFILE WRITE
privileges.Users will still be able to execute SELECT .
, but only if outbound connectivity is not created.. . FROM -
BACKUP .
S3, Azure Blob, or GCS.. . TO -
CREATE PIPELINE
with S3, HDFS, Azure Blob, GCS, or Kafka.
Without the required privileges, an error will be generated.
For example: SELECT ... INTO:singlestore> SELECT * FROM t1INTO S3 'testing/output'CONFIG '{"region":"us-east-1"}'CREDENTIALS '{"aws_access_key_id":"your_access_key_id","aws_secret_access_key":"your_secret_access_key"}';ERROR 1142 (42000): OUTBOUND command denied to user 'user1'@'%' for table 't1'BACKUP ... INTO:singlestore> BACKUP t1 INTO TO S3 'testing/output'CONFIG '{"region":"us-east-1"}'CREDENTIALS '{"aws_access_key_id":"your_access_key_id","aws_secret_access_key":"your_secret_access_key"}';ERROR 1227 (42000): Access denied; you need (at least one of) the OUTBOUND privilege(s) for this operationCREATE PIPELINE:singlestore> CREATE PIPELINE pipeline1AS LOAD DATA S3 'my-bucket-name'CONFIG '{"region": "us-east-1"}'CREDENTIALS '{"aws_access_key_id": "your_access_key_id", "aws_secret_access_key": "your_secret_access_key", "aws_session_token": "your_session_token"}'INTO TABLE 't1'FIELDS TERMINATED BY ',';ERROR 1227 (42000): Access denied; you need (at least one of) the OUTBOUND privilege(s) for this operationHere's how to set the privileges for a user to execute these commands:
SELECT ... INTO:singlestore> GRANT SELECT, FILE WRITE, OUTBOUND on *.* to user1;BACKUP ... INTO:singlestore> GRANT SELECT, FILE WRITE, BACKUP, OUTBOUND on *.* to user1;CREATE PIPELINE:singlestore> GRANT SELECT, FILE WRITE, CREATE PIPELINE, OUTBOUND on *.* to user1;The
OUTBOUND
privilege will be displayed in theSHOW GRANTS
command:SHOW GRANTS FOR user1;+-----------------------------------------------------------------------------------+ | Grants for user1@% | +-----------------------------------------------------------------------------------+ | GRANT SELECT, FILE WRITE, BACKUP, CREATE PIPELINE, OUTBOUND ON *.* TO 'user1'@'%' | +-----------------------------------------------------------------------------------+
-
-
The
ALTER USER
permission can be used to executeALTER USER
andSET PASSWORD
commands. -
This command causes implicit commits.
Refer to COMMIT for more information. -
This command can be run on any SingleStore node.
For more information, see the Cluster Management Commands. -
The
GRANT
command holds a global lock on the cluster until the processing of the command is completed.See Cluster Level Locks for more info.
Examples
The following examples demonstrates how to grant privileges to the existing singlestore_
user:
GRANT ALL PRIVILEGES ON *.* TO 'singlestore_admin' IDENTIFIED BY 'password' WITH GRANT OPTION;
Or
GRANT * ON *.* TO 'singlestore_admin' IDENTIFIED BY 'password' WITH GRANT OPTION;
Note: The privilege_
engine variable must be left on the default value grant_
for the WITH GRANT OPTION
clause to work as expected.SYSTEM_
privilege to be able to change the value of privilege_
.
GRANT TRANSFERABLE SELECT, INSERT ON db.* TO 'singlestore_admin';
Note: The privilege_
engine variable must be set to value per_
to grant transferable privileges.SYSTEM_
privilege to be able to change the value of privilege_
.
The following example demonstrates how to grant the specified privileges to all databases to the full_
role.
GRANT BACKUP, RELOAD ON *.* TO ROLE 'full_backup_role';
Note
If you removed ROLE
from the example above, the GRANT
command would apply privileges to the user 'full_
.
The following example demonstrates how to grant EXECUTE
and ALTER ROUTINE
privileges for the stored procedure recStock
to user 'adam'
.
GRANT EXECUTE, ALTER ROUTINE ON db_tmp1.recStock TO 'adam';
The following example demonstrates how to grant permissions for a resource pool p1
to a user u1
:
GRANT USAGE ON RESOURCE POOL p1 to 'u1';
The following example demonstrates how to grant the execute permission for a stored procedure or function:
GRANT EXCUTE ON dbname.procname TO username;
Related Topics
Last modified: August 5, 2024