GRANT SUNDECK ROLE
Grant Sundeck ADMIN privilege to a Snowflake user.
- See also:
- REVOKE SUNDECK ROLE, SHOW SUNDECK GRANTS
GRANT SUNDECK ROLE ADMIN TO USER <name-identifier>
<name-identifier>
- Specifies the identifier for Snowflake username. You can list the Snowflake username identifiers by run
Show users
in your Snowflake account. If the identifier contains spaces, special characters, or mixed-case characters, the entire string must be enclosed in double quotes. Identifiers enclosed in double quotes are also case-sensitive (e.g. “My Object”).
Please be aware that Snowflake username may be different from login name of Snowflake user. You may use Describe user <your_username>
to check the properties of the specified Snowflake user.
GRANT SUNDECK ROLE ADMIN TO USER FOO;
GRANT SUNDECK ROLE ADMIN TO USER "test@foo.bar";