- 论坛徽章:
- 0
|
如何转换??
原帖由 "huanggzcn" 发表:
create tablenew as
select * from tableold a,tableold b
where a.表空间名称='TEMP1' and b.表空间名称='TEMP2';
用*可以代替所有的字段
你的方法我没有看懂,我的意思是直接取得表空间的使用率还有使用空间,我的代码如下:
select s.tablespace_name tablespace_name,
to_char((sum(s.UsedSpace)/sum(s.bytes))*100,'9999999.99')||'%' SEP_USE,
to_char(((sum(s.UsedSpace))/1024/1024),'9999999') USE_SPACE,
from ( select b.file_id,
b.tablespace_name,
b.bytes,
(b.bytes-sum(nvl(a.bytes,0))) UsedSpace,
sum(nvl(a.bytes,0)) FreeSpace,
(sum(nvl(a.bytes,0))/(b.bytes)) * 100 FreePercentRatio
from sys.dba_free_space a,sys.dba_data_files b
where (
b.tablespace_name = 'TEMP1'
or b.tablespace_name = 'TEMP2'
)
and a.file_id(+)=b.file_id
group by b.file_id,b.tablespace_name,b.bytes
order by b.tablespace_name
) s
group by s.tablespace_name
order by s.tablespace_name |
|