性能测试过程中发现导入话单数据时报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错误。