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
========================================================================================================
本文深入解析了SQL数据库中的DBA_TABLES、ALL_TABLES和USER_TABLES三个视图的区别与联系,详细解释了每个视图的含义及应用场景。
2402

被折叠的 条评论
为什么被折叠?



