How to revoke update privilege on a table from multiple oracle users?
Ezana Answered question 03/10/2022
Below is the sample script to revoke update privilege on a table from multiple users:
revoke update on cltbs_account from ASAFIG,BINT,TITB, WOIN,AME,ZEKA, GETCH, HABT, HELEN;
where ASAFIG,BINT,TITB, WOIN,AME,ZEKA, GETCH, HABT and HELEN are oracle users.
And cltbs_account is the table name.
Ezana Answered question 03/10/2022