欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

oracle表空间不够的处理方法

程序员文章站 2022-06-17 20:00:53
//查询表空间大小和使用了多少 select t.tablespace_name,d.file_name, d.autoextensible,d.bytes,d.maxbytes,d.status...

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

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;