oracle 점검
1. 테이블스페이스 사용량 체크 select ts_name, sum(total)/1024 "total(MB)", sum(used)/1024 "used(MB)", sum(free)/1024 "free(MB)", sum(used)*100/sum(total) "free %" from ( SELECT b.file_name fileName,--"FILE_NAME", -- DataFile Name b.tablespace_name ts_name,--"TABLESPACE_NAME", -- TableSpace Name b.bytes / 1024 total,--"TOTAL SIZE(KB)", -- 총 Bytes ((b.bytes - sum(nvl(a.bytes,0)))) / 1024 used,--"USED(KB)", --..