您的位置:首页 > 其它

ORA-01653: unable to extend table SYS.AUD$ by 128 in tablespace SYSTEM

2013-10-16 16:49 567 查看
今天登陆PL/SQL 报错如下:

ORA-01653: unable to extend table SYS.AUD$ by 128 in tablespace SYSTEM 意思是表空间已满

解决方法
以sqlplus / as sysdba 登录数据库

首先用下列SQL语句查看表空间的使用情况

select username,default_tablespace,temporary_tablespace from dba_users

where (default_tablespace='SYSTEM' or temporary_tablespace='SYSTEM') and username not in ('SYSTEM','SYS');

select tablespace_name,(bytes/1024/1024) M from dba_data_files;

百度出来2种方法处理表空间已满。

(1)更改system表空间的数据文件SYSTEM.dbf分配空间

alter database datafile '/u01/oradata/hxy/system01.dbf' resize 5524M;

(2)为system表空间另外新增一个数据文件

(3)把system表空间中的表移到非系统表空间

检查下是否有其他非系统表放在系统表空间下,

要是有的话,可以移到非系统表空间

alter table move tablespace tablespace_name
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: 
相关文章推荐