oracle查看表是否分區(qū)?
如果查詢當(dāng)前用戶下得分區(qū)表:
select * from user_tables where partitioned='YES' 如果要查詢整個(gè)數(shù)據(jù)庫中的分區(qū)表:
select * from dba_tables where partitioned='YES' 如果要查詢某個(gè)用戶下得分區(qū)表:
select * from dba_tables where partitioned='YES' and owner='ABCDEFG' 其中ABCDEFG為用戶名