查看oracle的分区表都有哪些分区
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了查看oracle的分区表都有哪些分区相关的知识,希望对你有一定的参考价值。
参考技术A SELECT * FROM USER_TAB_PARTITIONS WHERE TABLE_NAME='要查的表名'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为用户名 参考技术A v$dba_tables
v$user_tables 参考技术B select * from USER_TABLES
where partitioned='YES';
以上是关于查看oracle的分区表都有哪些分区的主要内容,如果未能解决你的问题,请参考以下文章