`

unable to extend table SYS.AUD$ by 8192 in tablespace SYSTEM

阅读更多

 

转载请注明出处:http://www.pm-road.com/index.php/2015/01/15/341/

今天在调项目的时候,突然报了这样一个错误 :

unable to extend table SYS.AUD$ by 8192 in tablespace SYSTEM

具体错误信息如下:

WARN – com.mchange.v2.resourcepool.BasicResourcePool$AcquireTask@1a78424 — Acquisition Attempt Failed!!! Clearing pending acquires. While trying to acquire a needed new resource, we failed to succeed more than the maximum number of allowed acquisition attempts (5). Last acquisition attempt exception:  – [21:30:31,771]com.mchange.v2.resourcepool.BasicResourcePool
java.sql.SQLException: 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

at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:112)
at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:331)
at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:283)
at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:278)
at oracle.jdbc.driver.T4CTTIoauthenticate.receiveOauth(T4CTTIoauthenticate.java:785)
at oracle.jdbc.driver.T4CConnection.logon(T4CConnection.java:362)
at oracle.jdbc.driver.PhysicalConnection.<init>(PhysicalConnection.java:414)
at oracle.jdbc.driver.T4CConnection.<init>(T4CConnection.java:165)
at oracle.jdbc.driver.T4CDriverExtension.getConnection(T4CDriverExtension.java:35)
at oracle.jdbc.driver.OracleDriver.connect(OracleDriver.java:801)
at com.mchange.v2.c3p0.DriverManagerDataSource.getConnection(DriverManagerDataSource.java:134)
at com.mchange.v2.c3p0.WrapperConnectionPoolDataSource.getPooledConnection(WrapperConnectionPoolDataSource.java:182)
at com.mchange.v2.c3p0.WrapperConnectionPoolDataSource.getPooledConnection(WrapperConnectionPoolDataSource.java:171)
at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager.acquireResource(C3P0PooledConnectionPool.java:137)
at com.mchange.v2.resourcepool.BasicResourcePool.doAcquire(BasicResourcePool.java:1014)
at com.mchange.v2.resourcepool.BasicResourcePool.access$800(BasicResourcePool.java:32)
at com.mchange.v2.resourcepool.BasicResourcePool$AcquireTask.run(BasicResourcePool.java:1810)
at com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread.run(ThreadPoolAsynchronousRunner.java:547)

 

一看这个错误,发现是因为数据库的表空间不足造成的,

所以解决这种问题大概有三种办法

(1)更改system表空间的数据文件SYSTEM.dbf分配空间
alter database datafile ‘/u04/oradata/truth/system.dbf’ resize 2048M;   //因为数据量很大,而且表内有多个用户,所以扩容到了2G,另外前面的system.dbf这个名字可和当时创建数据库时命名空间一致;
(2)为system表空间另外新增一个数据文件
(3)把system表空间中的表移到非系统表空间
检查下是否有其他非系统表放在系统表空间下,
要是有的话,可以移到非系统表空间
alter table move tablespace tablespace_name

unable to extend table SYS.AUD$ by 8192 in tablespace SYSTEM

unable to extend table SYS.AUD$ by 8192 in tablespace SYSTEM

分享到:
评论

相关推荐

    ORA-01688:unable to extend table name(执行存储过程时的错误).pdf

    标题 "ORA-01688:unable to extend table name" 指的是在执行Oracle数据库存储过程时遇到的一个特定错误。这个错误通常发生在尝试扩展一个表或分区时,由于表空间已满,无法分配更多的空间。表空间是Oracle数据库中...

    原生js实现jquery $.extend方法

    原生js实现jquery $.extend方法 通过遍历对象属性来实现

    Jquery实现$.fn.extend和$.extend函数_.docx

    在JavaScript中,jQuery库提供了两种扩展对象的方法,即`$.fn.extend`和`$.extend`。它们都用于增加或修改现有对象的功能,但应用场景不同。本文将深入解析这两种方法的实现原理和用途。 首先,`$.fn.extend`是用于...

    ORA-01688:unable to extend table name(执行存储过程时的错误).docx

    标题 "ORA-01688:unable to extend table name" 描述了一个常见的Oracle数据库错误,这通常发生在尝试扩展表空间但空间不足时。错误消息显示 "name partition NAME by NUM in tablespace NAME2010-11-10 16:04:25...

    underscore.extend与$.extend实例比较分析

    在JavaScript开发中,`underscore` 和 `jQuery` 都提供了扩展对象的功能,即 `_.extend()` 和 `$.extend()` 方法。这两个方法允许开发者合并一个或多个对象的属性到目标对象中,实现对象间的属性拷贝。本文将深入...

    Jquery实现$.fn.extend和$.extend函数

    在jQuery库中,`$.fn.extend` 和 `$.extend` 是两个非常重要的功能,它们用于扩展jQuery的功能和对象。这两个函数虽然名字相似,但作用却截然不同。 首先,`$.fn.extend` 是用于扩展jQuery选择器对象的方法。当你...

    【1积分】android-extend-1.0.6.aar

    使用方式:把资源放到libs下,在gradle app 中添加 低版本:compile files('libs/android-extend-1.0.6.aar') 高版本:implementation files('libs/android-extend-1.0.6.aar')

    this.$toast() 了解一下?

    总结来说,`this.$toast()`的实现利用了Vue的`Vue.extend()`和`$mount()`,将组件实例化并动态挂载到DOM上,提供了一种便捷的全局提示功能。这样的设计提高了代码复用性,减少了重复导入和管理组件的复杂度,使前端...

    深入理解jquery的$.extend()、$.fn和$.fn.extend()

    在jQuery中,`$.extend()`、`.fn`(即`jQuery.fn`)和`.fn.extend()`是开发者用于增强其功能和创建插件的关键部分。下面我们将详细探讨这三个概念。 1. `$.extend()` `$.extend()`方法用于合并一个或多个对象的属性...

    android-extend-1.0.5.aar依赖库com.guo.android_extend

    虹软ArcSoft 人脸识别AndroidDemo中有一个Lib通过公网始终无法下载,替换进去就好了。 依赖替换为 implementation files('libs/android-extend-1.0.5.aar')。 依赖库com.guo.android_extend

    bootstrap-table-pagejump.zip

    $.extend($.fn.bootstrapTable.Constructor.EVENTS, { 'page-change.bs.table': 'onPageChange' }); $.fn.bootstrapTable.methods.push('jumpToPage'); $.fn.bootstrapTable.extend({ jumpToPage: function ...

    jQuery api手册

    开发者也可以通过`$.extend()`或`.fn.extend()`创建自己的插件。 ### 总结 jQuery API手册是开发者的宝贵资源,涵盖了从基础操作到高级特性的详细指南。通过深入学习和实践,开发者能更高效地编写高性能的前端代码...

    AngularJS - Novice to Ninja.pdf.pdf )

    Unit and End-to-End Testing in AngularJS . . . . . . . . . . . . . . . . . . . . . . . . 17 Where to Put Your Tests . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 19 How to Run ...

    Domino服务起不来解决办法

    Windows Registry Editor Version 5.00 [HKEY_LOCAL_MACHINE\SOFTWARE\Lotus\Domino] "Path"="F:\\lotus" "DataPath"="F:\\lotus\\Data" "Description"="Lotus Domino" "Name"="nserver.exe" "Version"=dword:...

    jquery $.fn $.fx是什么意思有什么用

    总结而言,$.fn允许我们为jQuery实例添加方法,$.extend和jQuery.fn.extend提供了添加新方法的途径,$.fx是处理动画的核心属性,而$.fx.off提供了关闭动画的开关。这些工具和属性结合起来,极大地增强了jQuery的功能...

    extend.Template.js

    页面数据展示的提出方法,通过在页面上放置模板参数,并初始化Template Dom类,将Html复制并放入文本数据,添加到页面上,依赖于jQuery和extend.Page.js

    com.guo.android_extend:android-extend:1.0.6

    标题 "com.guo.android_extend:android-extend:1.0.6" 提示我们这是一个 Android 库项目,属于开发者郭某的扩展库,版本号为 1.0.6。通常,这种格式表示的是 Maven 或 Gradle 的依赖坐标,用于在构建 Android 项目时...

    android-widget-extend

    各种控件组件展示。 支持API10+ 水平滑动listView。 异步加载图片。 双指缩放,拖动。 项目链接:https://github.com/gqjjqg/android-widget-extend

Global site tag (gtag.js) - Google Analytics