oracle 查询哪些表分区

我的数据库里有部分表是分区表,请问怎么能查到有哪些表是分区表?

如果查询当前用户下得分区表:
select * from user_tables where partitioned='YES'
如果要查询整个数据库中的分区表:
select * from dba_tables where partitioned='YES'
如果要查询某个用户下得分区表:
select * from dba_tables where partitioned='YES' and owner='ABCDEFG'
其中ABCDEFG为用户名
温馨提示:答案为网友推荐,仅供参考
第1个回答  2011-12-27
v$dba_tables
v$user_tables
第2个回答  2011-12-27
select * from USER_TABLES
where partitioned='YES';
相似回答