Select Privilege

You can grant the Select privilege on a sequence to another user or to a role. The Select privilege enables a specified user or role to use sequence.CURRVAL and sequence.NEXTVAL expressions in SQL statements to read and to increment (respectively) the value of a sequence.

The following statement grants the Select privilege to user mark on the cust_seq sequence object:
GRANT SELECT ON cust_seq TO mark;