Get Table Sizes in your Schema

本文提供了一种SQL查询方法,用于查看数据库中各表占用的空间大小,包括表名、所在表空间及所占空间的MB数。此查询对于数据库管理和优化空间非常有用。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

If you want to see how much space your tables are taking in the database, log in to the shcema and execute this SQL.

SELECT   segment_name table_name, MAX (tablespace_name) tablespace_name,
         SUM
(BYTES) / (1024 * 1024) table_size_mb
   
FROM user_extents
   
WHERE segment_name IN (SELECT tname
                           
FROM tab
                           
WHERE tabtype = 'TABLE')
GROUP BY segment_name
ORDER BY tablespace_name

The Above query tells you the table name, the table space it is residing in and the size in MB.

转载于:https://www.cnblogs.com/GoDevil/archive/2008/08/07/1262749.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值