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

Thread: Just a quick question

  1. #1
    Join Date
    Jan 2000
    Posts
    387

    Talking

    Hi,

    I have created grant access to certain tables to userA. If userA login to ORacle, what sql can userA use to query and see what table can userA access to??

    Thanks!

  2. #2
    Join Date
    Feb 2001
    Posts
    6
    Hi,

    Nice simple query

    Select table_name from user_tables;

    Bye

  3. #3
    Join Date
    Feb 2001
    Posts
    6
    Oops,

    Nice simple query should be

    select table_name from all_tables;

    This shows what you can access.

    user_tables shows your schema tables.

    Bye

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