In PostgreSQL 9.x, you can grant permissions on all sequences in one schema to a role. The syntax is
GRANT SELECT
ON ALL SEQUENCES IN SCHEMA schema_name
TO role_name
The role can be either a group role or a login role (user name).
In PostgreSQL 9.x, you can grant permissions on all sequences in one schema to a role. The syntax is
GRANT SELECT
ON ALL SEQUENCES IN SCHEMA schema_name
TO role_name
The role can be either a group role or a login role (user name).