檢視資料檔案大小

leon830216發表於2014-03-01
column file_name format a50

select
    tablespace_name,
    file_id,
    file_name,
    round(bytes/1024/1024) "SIZE(M)"
from
    dba_data_files
union all
select
    tablespace_name,
    file_id,
    file_name,
    round(bytes/1024/1024) "SIZE(M)"
from
    dba_temp_files
order by tablespace_name, file_id
/

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/22558114/viewspace-1097790/,如需轉載,請註明出處,否則將追究法律責任。

相關文章