摘要:
oracle查看表空间及大小 --1、查看表空间的名称及大小 SELECT t.tablespace_name, round(SUM(bytes / (1024 * 1024)), 0) ts_size FROM dba_tablespaces t, dba_data_files d WHERE t 阅读全文
摘要:
select * from v$tablespace;select * from dba_tablespaces where contents like 'TEMP%';select * from v$tempfile f,v$tablespace t where f.TS# = t.TS#;cre 阅读全文