字号: 小 中 大 |
推荐给好友
上一篇 |
下一篇
oracle常用经典SQL查询
发布: 2008-10-20 11:00 |
作者: 不详 |
来源:
测试时代采编 |
查看: 229次 | 进入软件测试论坛讨论
oracle常用经典SQL查询
常用SQL查询:
1、查看表空间的名称及大小
select t.tablespace_name, round(sum(bytes/(1024*1024)),0) ts_size
from dba_tablespaces t, dba_data_files d
where t.tablespace_name = d.tablespace_name
group by t.tablespace_name;
2、查看表空间物理文件的名称及大小
select tablespace_name, file_id, file_name,
round(bytes/(1024*1024),0) total_space
from dba_data_files
order by tablespace_name;
文章来源于领测软件测试网 https://www.ltesting.net/