首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 数据库 > 其他数据库 >

表空间治理

2013-11-15 
表空间管理(select tablespace_name,sum(bytes) bytes from dba_data_files group by tablespace_name) a,

表空间管理
(select tablespace_name,sum(bytes) bytes from dba_data_files group by tablespace_name) a,(select tablespace_name,sum(bytes) bytes,max (bytes) largest from dba_free_space group by tablespace_name)bwhere a.tablespace_name=b.tablespace_nameorder by ((a.bytes-b.bytes)/a.bytes) desc;??

热点排行