Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个包含 200 个哈希分区的表,我喜欢监控每个分区的每日大小增长(行和大小以 MB 为单位)。有关更多信息,另一个进程每天加载/更新此表上的行,我想知道增长模式。
我不是在寻找整体表大小脚本,而是在寻找每个分区的大小。
您可以使用以下语句检查分区的大小:
SELECT partition_name, bytes/1024/1024 "MB" FROM dba_segments WHERE segment_name = 'MYTABLE' AND segment_type = 'TABLE PARTITION';