-- 1.查询表空间空间
SELECT a.tablespace_name "表空间名",
total "表空间大小",
free "表空间剩余大小",
(total - free) "表空间使用大小",
total / (1024 * 1024 * 1024) "表空间大小(G)",
free / (1024 * 1024 * 1024) "表空间剩余大小(G)",
(total - free) / (1024 * 1024 * 1024) "表空间使用大小(G)",
round((total - free) / total, 4) * 100 "使用率 %"
FROM (SELECT tablespace_name, SUM(bytes) free
FROM dba_free_space
GROUP BY tablespace_name) a,
(SELECT tablespace_name, SUM(bytes) total
FROM dba_data_files
GROUP BY tablespace_name) b
WHERE a.tablespace_name = b.tablespace_name ;
-- 2.查询表空间的文件
select tablespace_name, file_id, file_name,
round(bytes/(1024*1024),0) total_space
from dba_data_files
order by tablespace_name;
-- 3.查询单个表空间
select tablespace_name,file_name,autoextensible from dba_data_files where tablespace_name = 'DZSMKITBS';
-- 4.拓展表空间
-- 自增
alter tablespace tablespace_name (表空间名) add datafile '+DATA' size 8G autoextend on
-- 非自增
alter tablespace tablespace_name (表空间名) add datafile '+DATA' size 8G
-- 5.创建表空间文件
create tablespace CYHTBS datafile '+DATA/RACDB/DATAFILE/WOFSSPACE.dbf' size 4096m autoextend on;
-- 6.修改表空间为自增
ALTER DATABASE DATAFILE '/home/app/oracle/oradata/dzsmk/dzsmktbs05.dbf' AUTOEXTEND ON NEXT 100M MAXSIZE 10000M;
网友评论