zoukankan      html  css  js  c++  java
  • ORA00604: error occurred at recursive SQL level 1 ORA01653: unable to extend table SYS.AUD$ by 8192 in tablespace SYSTEM

    在用sqlplus user/password@truth登录数据库时报如下错误:
    ORA-00604: error occurred at recursive SQL level 1
    ORA-01653: unable to extend table SYS.AUD$ by 8192 in tablespace SYSTEM
    ORA-02002: error while writing to audit trail
    ORA-00604: error occurred at recursive SQL level 1
    ORA-01653: unable to extend table SYS.AUD$ by 8192 in tablespace SYSTEM


    ORA-00604: error occurred at recursive SQL level 1的错误指的是 内部的SQL语句执行失败
    ORA-01653: unable to extend table SYS.AUD$ by 8192 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 '/u04/oradata/truth/system01.dbf' resize 5524M;
    (2)为system表空间另外新增一个数据文件
    (3)把system表空间中的表移到非系统表空间
    检查下是否有其他非系统表放在系统表空间下,
    要是有的话,可以移到非系统表空间
    alter table move tablespace tablespace_name

  • 相关阅读:
    程序员之歌 littleflute原创
    生成网站缩略图的小工具,:)
    十个习惯
    用反编译工具透析.Net页面生成本质
    装箱拆箱陷阱揭秘
    图片上传——用一般处理程序实现
    Web.config文件中常用的配置节点
    初识三层,请多指教
    匪夷所思的题目,心理慢慢引导
    权重分配方法
  • 原文地址:https://www.cnblogs.com/vipsoft/p/2621533.html
Copyright © 2011-2022 走看看