Oracle 怎么查看表大小

xiaoxiao2021-02-28  97

select round(BYTES/1024/1024,2)||'M' from user_segments where segment_name='表名';

每张表都是作为“段”来存储的,可以通过user_segments视图查看其相应信息,segment_name 就是要查询的表名(大写)。

转载请注明原文地址: https://www.6miu.com/read-51027.html

最新回复(0)