ALL Keyword

You can use the ALL keyword to revoke both Alter and Select privileges from another user, from PUBLIC, or from a role.

The following example cancels any Alter and Select privileges that user mark holds on the cust_seq sequence object:
REVOKE ALL ON cust_seq FROM mark;
Whether mark can still access cust_seq after this statement executes depends on whether the user still holds Alter or Select privileges on cust_seq that were granted to PUBLIC, or if he holds a role to which unrevoked privileges on cust_seq have been granted.