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