반응형
[^A-Za-z0-9]*

이렇게 하면 한글도 추출이 됩니다. ^^
반응형
SELECT   
    a.tablespace_name, a.alloc, b.free,  round((a.alloc-b.free)*100/a.alloc, 2)
FROM
    (select
                   tablespace_name, sum(bytes)/1024 alloc 
      from
                   dba_data_files
     group by
                   tablespace_name
    ) a,
    (select
                   tablespace_name, sum(bytes)/1024 free 
      from
                   dba_free_space
     group by 
                   tablespace_name
     ) b
WHERE 
    a.tablespace_name = b.tablespace_name
ORDER BY
    round((a.alloc-b.free)*100/a.alloc, 2)


간단히 확인할 수 있다. ^ㅁ^
반응형

(self.opener=self).close()

ㅋㅋㅋ

묻지 않고 닫기..

2003년에 적용했던 거다 쿠쿠쿠