ORA-01659: unable to allocate MINEXTENTS beyond 10

来源:互联网 发布:华为连不上移动数据 编辑:程序博客网 时间:2024/05/29 13:22
cmd>impdp导入数据的时候的错误提示是:

;;; 
Import: Release 11.2.0.3.0 - Production on Sat Jan 25 21:07:22 2014

Copyright (c) 1982, 2011, Oracle and/or its affiliates.  All rights reserved.
;;; 
Connected to: Oracle Database 11g Enterprise Edition Release 11.2.0.3.0 - 64bit Production
With the Partitioning, OLAP, Data Mining and Real Application Testing options
Master table "SYSTEM"."SYS_IMPORT_FULL_01" successfully loaded/unloaded
Starting "SYSTEM"."SYS_IMPORT_FULL_01":  system/******** directory=datadump dumpfile=acs2014012506.dmp logfile=acs201401250906.log remap_schema=acs:acs table_exists_action=replace 
Processing object type SCHEMA_EXPORT/USER
ORA-31684: Object type USER:"ACS" already exists
Processing object type SCHEMA_EXPORT/SYSTEM_GRANT
Processing object type SCHEMA_EXPORT/ROLE_GRANT
Processing object type SCHEMA_EXPORT/DEFAULT_ROLE
Processing object type SCHEMA_EXPORT/PRE_SCHEMA/PROCACT_SCHEMA
Processing object type SCHEMA_EXPORT/TABLE/TABLE
ORA-39171: Job is experiencing a resumable wait.
ORA-01659: unable to allocate MINEXTENTS beyond 1 in tablespace ACS
ORA-39171: Job is experiencing a resumable wait.
ORA-01659: unable to allocate MINEXTENTS beyond 1 in tablespace ACS
ORA-39171: Job is experiencing a resumable wait.
ORA-01659: unable to allocate MINEXTENTS beyond 1 in tablespace ACS
ORA-39171: Job is experiencing a resumable wait.
ORA-01659: unable to allocate MINEXTENTS beyond 1 in tablespace ACS
ORA-39171: Job is experiencing a resumable wait.


解决方法:

SQL> alter database

  2  datafile '/opt/ora10/product/oradata/sun/jxy.dbf' resize 2048m;
再次执行命令脚本通过。 

0 0