0

I'm trying to import a database dump into our local Oracle 11.2g using the IMPDP functionality, but am getting the following error:

ORA-39171: Job is experiencing a resumable wait.
ORA-01658: unable to create INITIAL extent for segment in tablespace {TABLESPACE}

All of the answers/solutions I have seen for this, tell you to ALTER the tablespace with the following command:

ALTER DATABASE DATAFILE 'C:\APP\ADMIN\ORADATA\ORCL\TABLESPACE.DBF' AUTOEXTEND ON MAXSIZE UNLIMITED;

I have done this, but am still getting the same error. Any other suggestions as to what could be wrong?

4

2 回答 2

0

错误:`无法为表空间 {TABLESPACE} 中的段创建初始范围'

检查您的磁盘空间是否有足够的空间来创建表的范围

于 2017-09-15T15:47:01.937 回答
0

好吧,看起来使用它重新创建 TABLESPACE 已经奏效了 - CREATE BIGFILE TABLESPACE

于 2017-09-15T16:25:10.990 回答