UDI-31623: operation generated ORACLE error 31623 / ORA-31623: a job is not attached to this session via the specified handle
UDI-31623: operation generated ORACLE error 31623 / ORA-31623: a job is not attached to this session via the specified handle
While importing a dumpfile to a test server, the following error were raised. Through a tough time searching the solution, I discovered the solution from a post.
My datapump command was like this:
-bash-4.1$ impdp system/sys123 schemas=scott directory=db_pump dumpfile=BEF_EOD.dmp
Import: Release 11.2.0.3.0 - Production on Mon Dec 31 03:30:01 2012
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
UDI-31623: operation generated ORACLE error 31623
ORA-31623: a job is not attached to this session via the specified handle
ORA-06512: at "SYS.DBMS_DATAPUMP", line 3326
ORA-06512: at "SYS.DBMS_DATAPUMP", line 4551
ORA-06512: at line 1
The problem was the streams_pool_size was 0. So, according to the post I changed the value to 40M.
SQL> show parameter stream
NAME TYPE VALUE
------------------------------------ ----------- ------------------------------
streams_pool_size big integer 0
SQL> alter system set streams_pool_size=40M scope=spfile;
System altered.
SQL> shutdown immediate;
SQL> startup
ORACLE instance started.
...and it was OK.
_________________________________________________________________________________
Comments
Post a Comment