您的位置:首页 > 数据库 > Oracle

user_all_tables,user_tables等oracle系统表说明

2017-07-26 14:23 393 查看
dba_tables : 系统里所有的表的信息,需要DBA权限才能查询

all_tables : 当前用户有权限的表的信息(只要对某个表有任何权限,即可在此视图中看到表的相关信息)

user_tables: 当前用户名下的表的信息

所以以上3个视图中,user_tables的范围最小,all_tables看到的东西稍多一些,而dba_tables看到最多的信息

---------------------------------------------------------------------------------------

---------------------------------------------------------------------------------------

DBA_TABLES describes all relational tables accessible to the DBA user

DBA_TABLES是DBA用户所拥有的或有访问权限的表

ALL_TABLES describes all relational tables accessible to the current user

ALL_TABLES是某一用户所拥有的或有访问权限的表

USER_TABLES describes all relational tables owned by the current user

USER_TABLES是某一用户所拥有的表

故DBA_TABLES >= ALL_TABLES >= USER_TABLES

 

DBA_ALL_TABLES Description of all object and relational tables in the database

DBA_ALL_TABLES是DBA用户所拥有的或有访问权限的对象和表

 

ALL_ALL_TABLES Description of all object and relational tables accessible to the user

ALL_ALL_TABLES是某一用户拥有的或有访问权限的对象和表

 

USER_ALL_TABLES Description of all object and relational tables owned by the user's

USER_ALL_TABLES是某一用户所拥有的对象和表

 

故DBA_ALL_TABLES >= ALL_ALL_TABLES >= USER_ALL_TABLES

 
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: