oracle 查询哪些表分区

2021/6/3 19:24:28

本文主要是介绍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为用户名


这篇关于oracle 查询哪些表分区的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程