oracle表空间不够的处理方法

//查询表空间大小和使用了多少

select t.tablespace_name,d.file_name,

d.autoextensible,d.bytes,d.maxbytes,d.status

from dba_tablespaces t,dba_data_files d

where t.tablespace_name =d.tablespace_name

order by tablespace_name,file_name;

//给不足的表空间增加新的文件存储

alter tablespace neands3 add datafile

‘d:\oradata\cs\neands5.dbf’ size 5000m;

//设置表空间为自动增长

alter database datafile ‘d:\oradata\cs\neands5.dbf’

autoextend on next 5m maxsize 100m;

(0)
上一篇 2022年3月22日
下一篇 2022年3月22日

相关推荐