[转帖]ORA-01688错误解决_MySQL, Oracle及数据库讨论区_Weblogic技术|Tuxedo技术|中间件技术|Oracle论坛|JAVA论坛|Linux/Unix技术|hadoop论坛_联动北方技术论坛  
网站首页 | 关于我们 | 服务中心 | 经验交流 | 公司荣誉 | 成功案例 | 合作伙伴 | 联系我们 |
联动北方-国内领先的云技术服务提供商
»  游客             当前位置:  论坛首页 »  自由讨论区 »  MySQL, Oracle及数据库讨论区 »
总帖数
2
每页帖数
101/1页1
返回列表
0
发起投票  发起投票 发新帖子
查看: 2453 | 回复: 1   主题: [转帖]ORA-01688错误解决        上一篇   下一篇 
liuliying930406
注册用户
等级:中校
经验:2027
发帖:210
精华:0
注册:2018-10-9
状态:离线
发送短消息息给liuliying930406 加好友    发送短消息息给liuliying930406 发消息
发表于: IP:您无权察看 2019-9-18 9:44:49 | [全部帖] [楼主帖] 楼主

性能测试过程中发现导入话单数据时报ORA-01688错误,话单数据导入失败。

ORA-01688: unable to extend table VMSREPORT.VMS_DEPOSIT_MSG_SDR partition VDMS_PART_0825 by 8192 in tablespace VMS_REPORT


查询下ora-01688的错误说明:

oracle@node76:~> oerr ora 01688
01688, 00000, "unable to extend table %s.%s partition %s by %s in tablespace %s"
// *Cause:  Failed to allocate an extent of the required number of blocks for
//          table segment in the tablespace indicated.
// *Action: Use ALTER TABLESPACE ADD DATAFILE statement to add one or more
//          files to the tablespace indicated.


查询表空间的使用率,VMS_REPORT表空间使用率已经超过99.9%。

因此基本可以断定,该错误应该是由于VMS_REPORT表空间已满,而数据文件又关闭了自动扩展功能,导致导入数据失败。

根据提示使用下面的命令增加一个数据文件,扩展表空间VMS_REPORT的大小:

ALTER TABLESPACE VMSREPORT ADD DATAFILE '+DG_DATA/vms_report01.dbf' SIZE 2048M AUTOEXTEND OFF;


再次测试,话单数据成功导入,未再出现ORA-01688错误。




赞(0)    操作        顶端 
联动大白
注册用户
等级:列兵
经验:91
发帖:0
精华:0
注册:2015-5-27
状态:离线
发送短消息息给联动大白 加好友    发送短消息息给联动大白 发消息
发表于: IP:您无权察看 2019-10-30 0:30:00 | [全部帖] [楼主帖] 2  楼

为了方便大家阅读,我对文章中错误号来解释一下吧!

Error Id: ORA-01688

Title: unable to extend table string.string partition string by string in tablespace string

Description:

unable to extend table string.string partition string by string in tablespace string

Action:

Use ALTER TABLESPACE ADD DATAFILE statement to add one or more files to the tablespace indicated.

Cause:

Failed to allocate an extent of the required number of blocks for table segment in the tablespace indicated.


也许你已明白,但对一个人有用也是我存在的理由!^_^ By:持之以恒的大白

-- 来自: 北京联动北方科技有限公司



赞(0)    操作        顶端 
总帖数
2
每页帖数
101/1页1
返回列表
发新帖子
请输入验证码: 点击刷新验证码
您需要登录后才可以回帖 登录 | 注册
技术讨论