REVOKE (Sequence)
Revokes sequence privileges from users and roles.
Syntax
REVOKE [ GRANT OPTION FOR ] { privilege[,…] | ALL [ PRIVILEGES ] }
ON {
SEQUENCE [[database.]schema.]sequence[,…]
| ALL SEQUENCES IN SCHEMA [database.]schema[,…] }
FROM grantee[,…]
[ CASCADE ]
Parameters
GRANT OPTION FOR
|
Revokes the grant option for the specified privileges. Current privileges for grantees remain unaffected. If you omit this clause, Vertica revokes both the grant option and current privileges. |
| privilege |
One of the following:
|
[database.]schema
|
Specifies a schema, by default myschema.thisDbObject If you specify a database, it must be the current database. |
sequence
|
The sequence on which to revoke privileges. |
ALL SEQUENCES IN SCHEMA schema
|
Revokes privileges from all sequences in the specified schema. |
| grantee |
Specifies whose privileges are revoked, one of the following: |
CASCADE
|
|
Privileges
One of the following:
- Superuser
- Privileges grantor
Examples
Revoke user Joe's privileges on sequence my_seq.
=> REVOKE ALL PRIVILEGES ON SEQUENCE my_seq FROM Joe; REVOKE PRIVILEGE