Reputation: 13101
I got to explore table 't1'.
How to see:
This gives a good start but need more info (above):
select * from ALL_PART_TABLES where table_name = 't1'
Thanks.
Upvotes: 0
Views: 27940
Reputation: 1450
The below query gives the number of rows in SUBPARTITION
select num_rows, PARTITION_NAME , SUBPARTITION_NAME
FROM ALL_TAB_SUBPARTITIONS
where table_name = 'yourtable';
The below query gives the number of rows in PARTITION and also the number of sub partitions.
select num_rows, PARTITION_NAME, SUBPARTITION_COUNT
FROM ALL_TAB_SUBPARTITIONS
where table_name = 'yourtable';
Upvotes: 1