Reputation: 399
We have a table already existing in oracle 11g database which allows read as well as write operations. I want to block both read as well as write operations to the table. Can you please help?
Upvotes: 1
Views: 181
Reputation: 43533
Use the REVOKE command to take permissions away from other users. You cannot revoke privileges from the table owner, however.
You could also export the table and then drop it. Nobody can read it then :-)
Upvotes: 3