oracle 系统表空间满了

前端之家收集整理的这篇文章主要介绍了oracle 系统表空间满了前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

远程连接到 oracle 所在机器
sqlplus /nolog
conn / as sysdba

参考:http://www.jb51.cc/article/p-ejxcxqdk-bpt.html

alter tablespace system add datafile ‘/home/oracle/systemother/system_01.dbf’ size 2048M
alter database datafile ‘/home/oracle/systemother/system_01.dbf’ autoextend on;

alter system set audit_trail=none scope=spfile;//关闭审计功能,正式环境不要执行
shutdown immediate;
startup

如果shutdown immediate 一直卡住。(几分钟了还没反应)
调用
shutdown abort
startup

当看到 Database opened 表示启动成功了。 Total System Global Area 167772160 bytes Fixed Size 1218316 bytes Variable Size 104859892 bytes Database Buffers 58720256 bytes Redo Buffers 2973696 bytes Database mounted. Database opened.

原文链接:/oracle/206869.html

猜你在找的Oracle相关文章