DBAsupport.com Forums - Powered by vBulletin
Results 1 to 2 of 2

Thread: About Tables and Privileges

  1. #1
    Join Date
    Apr 2003
    Location
    Chennai - India
    Posts
    8

    About Tables and Privileges

    Hi,

    How to find what are the privileges available for the user in a particular table.

    or in otherwords, what are the privs available for the user in a particular table provided the userid and tablename.

    Please let me know the query, or which dictionary table I need to look into.....

    Oracle Database version: 8i

    Thanks in advance

    Regards
    Ramu Ganapathi
    Thanks and Regards
    Ramu Ganapathi

  2. #2
    Join Date
    Nov 2000
    Location
    Israel
    Posts
    268
    select GRANTOR, PRIVILEGE, TABLE_NAME
    from DBA_TAB_PRIVS
    where GRANTEE='USERNAME'
    and TABLE_NAME='TABLE_NAME'
    /

    cheers.
    It is better to ask and appear ignorant, than to remain silent and remain ignorant.

    Oracle OCP DBA 9i,
    C++, Java developer

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  


Click Here to Expand Forum to Full Width