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?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
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 🙂