ORA-39006: internal errorORA-39065: unexpected master process exception in DISPATCHORA-39097: Data Pump job encountered unexpected error -6512
Maybe, In this case, I should check streams_pool_size initialization parameter. I remembered I use SGA_TARGET initialization parameter. Anyway, just make it works :)
$ impdp system NETWORK_LINK=network_link FULL=Y CONTENT=METADATA_ONLYImport: Release 11.2.0.3.0 - Production on Thu Mar 29 10:31:48 2012Copyright (c) 1982, 2011, Oracle and/or its affiliates. All rights reserved.Password:Connected to: Oracle Database 11g Enterprise Edition Release 11.2.0.3.0 - 64bit ProductionWith the Partitioning, Automatic Storage Management, OLAP, Data Miningand Real Application Testing optionsORA-39006: internal errorORA-39065: unexpected master process exception in DISPATCHORA-39097: Data Pump job encountered unexpected error -6512$ sqlplus / as sysdbaSQL*Plus: Release 11.2.0.3.0 Production on Thu Mar 29 10:34:29 2012Copyright (c) 1982, 2011, Oracle. All rights reserved.Connected to:Oracle Database 11g Enterprise Edition Release 11.2.0.3.0 - 64bit ProductionWith the Partitioning, Automatic Storage Management, OLAP, Data Miningand Real Application Testing optionsSQL> show parameter sga_targetNAME TYPE VALUE------------------------------------ ----------- ------------------------------sga_target big integer 768MSQL> show parameter streamNAME TYPE VALUE------------------------------------ ----------- ------------------------------streams_pool_size big integer 0SQL> alter system set streams_pool_size=64M;System altered.$ impdp system NETWORK_LINK=network_link FULL=Y CONTENT=METADATA_ONLYImport: Release 11.2.0.3.0 - Production on Thu Mar 29 10:34:47 2012Copyright (c) 1982, 2011, Oracle and/or its affiliates. All rights reserved.Password:Connected to: Oracle Database 11g Enterprise Edition Release 11.2.0.3.0 - 64bit ProductionWith the Partitioning, Automatic Storage Management, OLAP, Data Miningand Real Application Testing optionsStarting "SYSTEM"."SYS_IMPORT_FULL_01": system/******** NETWORK_LINK=network_link FULL=Y CONTENT=METADATA_ONLY
In the bottom line, I just set value for streams_pool_size initialization parameter. Although, I use SGA_TARGET parameter.
Reference:
http://docs.oracle.com/cd/E11882_01/server.112/e22490/dp_perf.htm
Reference:
http://docs.oracle.com/cd/E11882_01/server.112/e22490/dp_perf.htm
1 comment:
Yes, my experience with datapump on Oracle 10.2 is that the oracle streams pool seems to get fragmented - increasing or decreasing the streams_pool_size resolves the issue.
Post a Comment