数据库
首页 > 数据库> > oracle 查询哪些表分区

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为用户名

标签:tables,partitioned,分区,查询,分区表,oracle,YES,where,select
来源: https://blog.51cto.com/u_15241951/2852410