|
-
all_tables will only show tables that a user have been granted with privilege either directly to a user or thru role. query the dba_tab_privs:
select grantee, privilege, table_name from dba_tab_privs where grantee = 'YOURUSER';
or the role that being granted to the user:
select grantee, granted_role from dba_role_privs
where grantee = 'YOURUSER';
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|