如何查询临时表空间被啥占用了

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何查询临时表空间被啥占用了相关的知识,希望对你有一定的参考价值。

参考技术A sys用户登录, 查看临时表空间的使用情况 SELECT temp_used.tablespace_name, total - used as "Free", total as "Total", round(nvl(total - used, 0) * 100 / total, 3) "Free percent" FROM (SELECT tablespace_name, SUM(bytes_used)本回答被提问者采纳

如何在Oracle中查看各个表,表空间占用空间的大小

在Oracle中查看各表及表空间占用空间大小可用sql语句执行查看。

Oracle版本:Oracle 10g

一、查看表占用空间大小语句:

select t.segment_name, t.segment_type, sum(t.bytes / 1024 / 1024) "占用空间(M)"
from dba_segments t
where t.segment_type=\'TABLE\'
group by OWNER, t.segment_name, t.segment_type;

查询结果:

二、查看表空间占用空间大小语句:

select a.tablespace_name,a.bytes/1024/1024 "Sum MB",(a.bytes-b.bytes)/1024/1024 "used MB",b.bytes/1024/1024 "free MB",round(((a.bytes-b.bytes)/a.bytes)*100,2) "percent_used" 
from 
(select tablespace_name,sum(bytes) bytes from dba_data_files group by tablespace_name) a, 
(select tablespace_name,sum(bytes) bytes,max(bytes) largest from dba_free_space group by tablespace_name) b 
where a.tablespace_name=b.tablespace_name 
order by ((a.bytes-b.bytes)/a.bytes) desc

查询结果:

参考技术A 使用以下语句查看当前用户每个表占用空间的大小:
Select Segment_Name,Sum(bytes)/1024/1024 From User_Extents Group By Segment_Name

使用一下语句查看每个表空间占用空间的大小:
Select Tablespace_Name,Sum(bytes)/1024/1024 From Dba_Segments Group By Tablespace_Name

以上是关于如何查询临时表空间被啥占用了的主要内容,如果未能解决你的问题,请参考以下文章

oracle 临时表空间 占用磁盘空间

数据库sql大字段占用临时表空间

如何查看oracle临时表空间当前使用了多少空间的大小

ORA-25153临时表空间为空

临时表空间移动并清理

如何查看oracle中某个用户占用表空间大小情况