0

I want to be able to see what permissions have been granted on a specific object in my Oracle geodatabase. What would my syntax look like in SQL Plus?

Thank you.

asked Oct 3, 2014 at 4:05

1 Answer 1

1

You can check object privileges on tables through the view dba_tab_privs.

Here's a query:

SELECT grantee, privilege FROM dba_tab_privs WHERE table_name='XXXXX';

You can also learn more about privileges and stuff from this really cool website:

http://www.dba-oracle.com/forensics/t_forensics_object_privileges.htm

answered Oct 3, 2014 at 4:28
2
  • Thanks a lot. Burleson is the man. I knew it was something along those lines but couldn't get it. Thanks Eric! Commented Oct 3, 2014 at 4:31
  • No problem, man! Have a good night. Commented Oct 3, 2014 at 4:49

Your Answer

Draft saved
Draft discarded

Sign up or log in

Sign up using Google
Sign up using Email and Password

Post as a guest

Required, but never shown

Post as a guest

Required, but never shown

By clicking "Post Your Answer", you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.