1. 查表空间名字、大
1. 查表空间名字、大小、已用大小、未用大小、已用百分比、未用百分比
select tablespace_name, sum(totalM), sum(usedM), sum(remainedM),
sum(usedM) / sum(totalM) * 100, sum(remainedM) / sum(totalM) * 100
from
(
select b.file_id, b.tablespace_name, b.file_name,
b.bytes / 1024 / 1024 totalM,
( b.bytes - sum( nvl( a.bytes, 0) ) ) / 1024 / 1024 usedM,
sum( nvl(a.bytes,0) ) / 1024 / 1024 remainedM,
sum( nvl(a.bytes,0) ) / (b.bytes) * 100 usedPer,
(100-sum( (nvl(a.bytes,0) ) / (b.bytes) * 100)) remainedPer
from dba_free_space a, dba_data_files b
where a.file_id = b.file_id
group by b.tablespace_name, b.file_name, b.file_id, b.bytes
order by b.tablespace_name
)
group by tablespace_name
前台目前的功能有: 1.搜索:它可以多方面来搜索:关键字来搜索,多个关键字之间用空格分开(如:南内环 计算机),将搜索把有南内环街上的计算机公司; 按行业浏览,行业类别分三层,你可以依次选择你需要的类别来搜索这个行业下的所有单位; 地区关键字搜索:根据你所选择的地区和关键字来显示相关单位; 行业地区搜索:你可以不输入关键字直接来查找某个地区的所有行业下的单位,你也可以输入关键字来搜索相应地区的行业
0

每个人都需要一台速度更快、更稳定的 PC。随着时间的推移,垃圾文件、旧注册表数据和不必要的后台进程会占用资源并降低性能。幸运的是,许多工具可以让 Windows 保持平稳运行。
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号