Strange expdp errors

I've exported schema from database with CL8MSWIN1251 encoding and now I try to import it into database with AL32UTF8 character encoding. DBMS version is 10.2.0.4.0.
At first, I've set nls_length_semantics to char in database.
After that I've restarted instance and imported metadata from schema.
But on importing data I'm getting a lot of the following errors :
ORA-02374: conversion error loading table "SFEDU_TEST"."ELEMS"
ORA-12899: value too large for column ES_COMMENT (actual: 2456, maximum: 4000)
ORA-02372: data for row: ES_COMMENT : 0X'200D0A09CAE0F4E5E4F0E020F1EEE7E4E0EDE020E220313939'
It's interesting that Oracle says: "value too large for column ES_COMMENT (actual: 2456, maximum: 4000)", so maximum size is more than actual...
How can I deal with this issue?
Edited by: alp on Apr 29, 2009 4:48 AM

There may be two errors here:
1. The actual data expansion issue. Setting NLS_LENGTH_SEMANTICS to CHAR does not change the semantics of objects recreated by import. Import uses explicit semantics specifications per column and, therefore, does not use the default value set by NLS_LENGTH_SEMANTICS.
What does DESCRIBE "SFEDU_TEST"."ELEMS" show in the target database?To deal with this error I've run thr following code:
begin
for cur_col in ( select table_name,column_name, DATA_TYPE,CHAR_COL_DECL_LENGTH,DATA_DEFAULT from user_tab_cols T, user_objects O where DATA_TYPE='VARCHAR2' and O.object_name=T.table_name and O.OBJECT_TYPE='TABLE' and T.column_name not like 'SYS_%' and column_name not in ('EDP_KURS','EDP_SNSP_SHIFR','EDP_SNP_SHIFR'))
loop
begin
     if cur_col.DATA_DEFAULT IS NULL then
     begin
          dbms_output.put_line('alter table ' || cur_col.table_name||' modify ' || cur_col.column_name || ' VARCHAR2(' || cur_col.CHAR_COL_DECL_LENGTH ||' CHAR )');
          execute immediate 'alter table ' || cur_col.table_name||' modify ' || cur_col.column_name || ' VARCHAR2(' || cur_col.CHAR_COL_DECL_LENGTH ||' CHAR )';
     end;
     else
     begin
          dbms_output.put_line('alter table ' || cur_col.table_name||' modify ' || cur_col.column_name || ' VARCHAR2(' || cur_col.CHAR_COL_DECL_LENGTH ||' CHAR ) default '||cur_col.data_default);
          execute immediate 'alter table ' || cur_col.table_name||' modify ' || cur_col.column_name || ' VARCHAR2(' || cur_col.CHAR_COL_DECL_LENGTH ||' CHAR ) default '||cur_col.data_default;          
     end;
     end if ;
end;
end loop;
end;
now descr says the following:
descr sfedu_test.elems
Name                         Null? Type
ES_ID                              NUMBER(16)
ES_PHONE                         VARCHAR2(4000 CHAR)
ES_URL                          VARCHAR2(4000 CHAR)
ES_EMAIL                         VARCHAR2(4000 CHAR)
ES_COMMENT                         VARCHAR2(4000 CHAR)
EST_EST_ID                         NUMBER(10)
ES_ES_ID                         NUMBER(16)
ES_EDU                          NUMBER(1)
ES_ADR                          VARCHAR2(4000 CHAR)
ES_PHOTO                         VARCHAR2(4000 CHAR)
but I still have :
KUP-11007: conversion error loading table "SFEDU_TEST"."ELEMS"
ORA-12899: value too large for column ES_COMMENT (actual: 2446, maximum: 4000)
KUP-11009: data for row: ES_COMMENT : 0X'CAE0F4E5E4F0E020FDEAEEEBEEE3E8E820E820EFF0E8F0EEE4'
>
2. There is a bug in the specific place where the error message ORA-12899 is generated in your case (this message comes from many places in code).
As the message is most probably generated in the server code, you could try to issue:
ALTER SYSTEM SET EVENTS '12899 trace name errorstack level 1, forever';before starting the import. This should generate a trace (*.trc) file in the udump or bdump directory with ORA-12899 and the associated call stack. If you can get the stack, paste it here.There is no new trace files in udump,bdump after enabling tracing...

Similar Messages

  • EXPDP error for 11gR2

    Hi,
    All of the sudden today I have been getting expdp errors only just one schema that I try to export, whereas all my other run perfectly fine.
         Oracle Datapump export for ODC on 120228 at 1203
         Building parameter files for ODC
         EXPORT Parameters ----
         schemas=iims
         content=all
         flashback_time='2012/02/28 12:03:06'
         parallel=4
         job_name=iims_120228_1203
         directory=DATA_PUMP_DIR
         dumpfile=ODC.iims.120228_1203.dp_export_file%U.dmp
         logfile=ODC.iims.120228_1203.dp_export.log
         filesize=5G
         Export: Release 11.2.0.3.0 - Production on Tue Feb 28 12:03:07 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, Real Application Clusters, Automatic Storage Management, OLAP,
         Data Mining and Real Application Testing options
         Starting "GNW_DBMAINT"."IIMS_120228_1203":  GNW_DBMAINT/********@ODC
    parfile=/dba/prod/scripts/infiles/ODC.iims.120228_1203.dp_export.par
         Estimate in progress using BLOCKS method...
         Processing object type SCHEMA_EXPORT/TABLE/TABLE_DATA
         Total estimation using BLOCKS method: 17.96 GB
         Processing object type SCHEMA_EXPORT/USER
         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/TYPE/TYPE_SPEC
         Processing object type SCHEMA_EXPORT/TYPE/GRANT/OWNER_GRANT/OBJECT_GRANT
         Processing object type SCHEMA_EXPORT/SEQUENCE/SEQUENCE
         Processing object type SCHEMA_EXPORT/SEQUENCE/GRANT/OWNER_GRANT/OBJECT_GRANT
         Processing object type SCHEMA_EXPORT/TABLE/TABLE
         Processing object type SCHEMA_EXPORT/TABLE/GRANT/OWNER_GRANT/OBJECT_GRANT
         Processing object type SCHEMA_EXPORT/TABLE/COMMENT
         Processing object type SCHEMA_EXPORT/TABLE/AUDIT_OBJ
         Processing object type SCHEMA_EXPORT/PACKAGE/PACKAGE_SPEC
         Processing object type SCHEMA_EXPORT/PACKAGE/GRANT/OWNER_GRANT/OBJECT_GRANT
         Processing object type SCHEMA_EXPORT/FUNCTION/FUNCTION
         Processing object type SCHEMA_EXPORT/FUNCTION/GRANT/OWNER_GRANT/OBJECT_GRANT
         Processing object type SCHEMA_EXPORT/PROCEDURE/PROCEDURE
         Processing object type SCHEMA_EXPORT/PROCEDURE/GRANT/OWNER_GRANT/OBJECT_GRANT
         Processing object type SCHEMA_EXPORT/PACKAGE/COMPILE_PACKAGE/PACKAGE_SPEC/ALTER_PACKAGE_SPEC
         Processing object type SCHEMA_EXPORT/FUNCTION/ALTER_FUNCTION
         Processing object type SCHEMA_EXPORT/PROCEDURE/ALTER_PROCEDURE
         Processing object type SCHEMA_EXPORT/TABLE/INDEX/INDEX
         Processing object type SCHEMA_EXPORT/TABLE/INDEX/FUNCTIONAL_INDEX/INDEX
         Processing object type SCHEMA_EXPORT/TABLE/CONSTRAINT/CONSTRAINT
         Processing object type SCHEMA_EXPORT/TABLE/INDEX/STATISTICS/INDEX_STATISTICS
         Processing object type SCHEMA_EXPORT/TABLE/INDEX/STATISTICS/FUNCTIONAL_INDEX/INDEX_STATISTICS
         Processing object type SCHEMA_EXPORT/PACKAGE/PACKAGE_BODY
         . . exported "IIMS"."IIMS_GLC_INTERFACE_CS"          1.833 GB 6443778 rows
         Processing object type SCHEMA_EXPORT/TABLE/CONSTRAINT/REF_CONSTRAINT
         Processing object type SCHEMA_EXPORT/TABLE/STATISTICS/TABLE_STATISTICS
         Processing object type SCHEMA_EXPORT/MATERIALIZED_VIEW
         Processing object type SCHEMA_EXPORT/REFRESH_GROUP
         . . exported "IIMS"."T_ACCOUNTING_TRN_DETAIL"        1.060 GB 7779037 rows
    ORA-39097: Data Pump job encountered unexpected error -12801
    ORA-39065: unexpected master process exception in MAIN
    ORA-12801: error signaled in parallel query server PZ99, instance dd0152alyn:ODC1 (1)
    ORA-01460: unimplemented or unreasonable conversion requested
         Job "GNW_DBMAINT"."IIMS_120228_1203" stopped due to fatal error at 12:08:14Been trying to google this one but can't really seems to find anything.
    Any help? Version 11.2.0.2 on Solaris 5.10, 2 node RAC

    I tried that , did not work.
    expdp abansal6dba DIRECTORY='DP_EXP_DIR' schemas='oltp_user' cluster=n dumpfile='oltp_user0417.dump' logfile='oltp_useroltp_user0417.log'
    ORA-39065: unexpected master process exception in MAIN
    ORA-12801: error signaled in parallel query server PZ99, instance prod-rac12.wp.cl.datapipe.net:WNPPROD2 (2)
    ORA-01460: unimplemented or unreasonable conversion requested
    Job "ABANSAL6DBA"."SYS_EXPORT_SCHEMA_02" stopped due to fatal error at 12:12:15
    Bug 13350027: DATAPUMP TERMINATED DUE TO ORA-1460 does not have solution either.

  • Safari Crash - Problem with doodle (planer) app  -  doodle web links cause safari to crash with a very strange message "Error - Please make sure Safari is not used in Private Modus" (translated from german) No Privat Modus buttom in ios 7 safari settings!

    Safari Crash - Problem with doodle (planer) app  -  doodle web links cause safari to crash with a very strange message "Error - Please make sure Safari is not used in Private Modus" (translated from german) No Privat Modus buttom in ios 7 safari settings! Works fine with an older Safari Version. Web link, call doodle app.  You could see the website in the backround working but safari crashes after clicking on the error window.   Any suggestions?

    Turn off Private Browsing.
    Tap "Private" on Safari Screen to disable Private Browsing. When top of screen is white, Private Browsing is off.

  • Strange internal error on loading applet 2nd time

    Dear all,
    On two independent pages of my site, the same applet appears. Although most everything runs smoothly in both instantiations, I do get a strange internal error (and some minor but irritating misbehaviour) on loading the second instance only, and only in MSIE 6, not in Mozilla, not in Netscape 7.
    The error messages generated are below. I can't see what might be going on, can you?
    java.lang.InternalError: obsolete interface used
         at sun.java2d.NullSurfaceData.getRaster(Unknown Source)
         at sun.java2d.loops.OpaqueCopyAnyToArgb.Blit(Unknown Source)
         at sun.java2d.loops.GraphicsPrimitive.convertFrom(Unknown Source)
         at sun.java2d.loops.MaskBlit$General.MaskBlit(Unknown Source)
         at sun.java2d.loops.Blit$GeneralMaskBlit.Blit(Unknown Source)
         at sun.java2d.pipe.DrawImage.blitSurfaceData(Unknown Source)
         at sun.java2d.pipe.DrawImage.renderSurfaceData(Unknown Source)
         at sun.java2d.pipe.DrawImage.copyImage(Unknown Source)
         at sun.java2d.pipe.DrawImage.copyImage(Unknown Source)
         at sun.java2d.pipe.DrawImage.copyImage(Unknown Source)
         at sun.java2d.SunGraphics2D.drawImage(Unknown Source)
         at sun.java2d.SunGraphics2D.drawImage(Unknown Source)
         at sun.plugin.AppletViewer.paintForegrnd(Unknown Source)
         at sun.plugin.AppletViewer.paint(Unknown Source)
         at sun.awt.RepaintArea.paint(Unknown Source)
         at sun.awt.windows.WComponentPeer.handleEvent(Unknown Source)
         at java.awt.Component.dispatchEventImpl(Unknown Source)
         at java.awt.Container.dispatchEventImpl(Unknown Source)
         at java.awt.Component.dispatchEvent(Unknown Source)
         at java.awt.EventQueue.dispatchEvent(Unknown Source)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(Unknown Source)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
         at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
         at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
         at java.awt.EventDispatchThread.run(Unknown Source)
    Thanks for any light shed on the issue!

    Hello riskmits,
    I have the same in my side and only occur to some clients.
    I wonder how did you resolve this issue. Could you please send me a mail to [email protected]
    Thanks!

  • Strange Display Errors with certain Applications (ATI X1600) [SOLVED]

    Hi everyone!
    I have been using Arch now for a year or so and am very happy with it, but now there is a problem I unfortunately can't solve by my own.
    Since a month or so certain applications (like emacs, feh or gimp, if i try to manipulate the drawing surface) cause very strange display errors. When I try to take a screenshot, they can't be seen, so i made to photographs
    Image 1 (one instance of emacs under awesome-wm): http://img850.imageshack.us/img850/5186 … 112158.jpg
    Image 2 (two instances of emacs under awesome-wm): http://img24.imageshack.us/img24/822/im … 112158.jpg
    I already tried another display manager (musca) but there the same applications cause the same type of error.
    Maybe the version 6.14.0-1 of xf86-video-ati broke my system, but I don't know.
    Has anyone had similar problems or probably a solution?
    Thanks in advance
    Maak
    P.S.: I hope this is the right forum for this topic.
    Files:
    /var/log/Xorg.0.log          https://pastee.org/q3nn2
    Output of lspci                 https://pastee.org/db7n8
    UPDATE:
    Hi everyone, again!
    I just successfully downgraded the driver and the errors are gone
    If someone has the same errors, here is the PKGBUILD (taken from SVN; only the version numbers and sha1sums are modified)
    pkgname=xf86-video-ati
    pkgver=6.13.2
    pkgrel=1
    pkgdesc="X.org ati video driver"
    arch=(i686 x86_64)
    url="http://xorg.freedesktop.org/"
    license=('custom')
    depends=(libpciaccess libdrm udev pixman ati-dri)
    makedepends=('xorg-server-devel' 'libdrm' 'xf86driproto' 'mesa')
    conflicts=('xorg-server<1.9.0')
    groups=('xorg-drivers' 'xorg')
    options=('!libtool')
    source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2)
    sha1sums=('f9d379a884a833829ab1942de4ad4f4766cdcd46')
    build() {
    cd "${srcdir}/${pkgname}-${pkgver}"
    ./configure --prefix=/usr --enable-dri
    make
    package() {
    cd "${srcdir}/${pkgname}-${pkgver}"
    make "DESTDIR=${pkgdir}" install
    install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
    install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/"
    Last edited by Maak (2011-03-11 23:32:46)

    http://bbs.archlinux.org/viewtopic.php?id=89926

  • Strange Spotlight error logs

    On a Mac mini Server using Mac OS X 10.7.4 Server I have these strange Spotlight error logs.
    What's wrong? Can anyboby help?
    13.11.12 10:00:05,399 com.apple.mdworker.isolation.0: warning: invalid bfrange: string length is not a multiple of 2.
    13.11.12 10:00:05,399 com.apple.mdworker.isolation.0: warning: invalid bfrange: string length is not a multiple of 2.
    13.11.12 10:00:05,399 com.apple.mdworker.isolation.0: warning: invalid bfrange: string length is not a multiple of 2.
    13.11.12 10:00:05,399 com.apple.mdworker.isolation.0: warning: invalid bfrange: string length is not a multiple of 2.
    13.11.12 10:00:05,399 com.apple.mdworker.isolation.0: *** process 6514 exceeded 500 log message per second limit  -  remaining messages this second discarded ***
    13.11.12 10:01:36,118 com.apple.mdworker.isolation.0: invalid stream length 33464; should be 33249.
    13.11.12 10:01:36,118 com.apple.mdworker.isolation.0: invalid stream length 37007; should be 36801.
    13.11.12 10:01:36,118 com.apple.mdworker.isolation.0: invalid stream length 42528; should be 42321.
    13.11.12 10:01:36,118 com.apple.mdworker.isolation.0: invalid stream length 37025; should be 36817.
    13.11.12 10:01:36,118 com.apple.mdworker.isolation.0: invalid stream length 4801; should be 4593.
    13.11.12 10:01:36,147 com.apple.mdworker.isolation.0: failed to find PDF header: `%PDF' not found.
    13.11.12 10:01:37,991 com.apple.mdworker.isolation.0: Range {0x0000, 0xFFFF} is not 1-dimensional; handling as a special case.
    13.11.12 10:01:37,992 com.apple.mdworker.isolation.0: Range {0x0000, 0xFFFF} is not 1-dimensional; handling as a special case.
    13.11.12 10:01:38,112 com.apple.mdworker.isolation.0: Range {0x0000, 0xFFFF} is not 1-dimensional; handling as a special case.
    13.11.12 10:01:38,240 com.apple.mdworker.isolation.0: Range {0x0000, 0xFFFF} is not 1-dimensional; handling as a special case.
    13.11.12 10:01:38,241 com.apple.mdworker.isolation.0: Range {0x0000, 0xFFFF} is not 1-dimensional; handling as a special case.
    13.11.12 10:01:38,297 com.apple.mdworker.isolation.0: Range {0x0000, 0xFFFF} is not 1-dimensional; handling as a special case.
    13.11.12 10:01:38,298 com.apple.mdworker.isolation.0: Range {0x0000, 0xFFFF} is not 1-dimensional; handling as a special case.
    13.11.12 10:01:38,343 com.apple.mdworker.isolation.0: Range {0x0000, 0xFFFF} is not 1-dimensional; handling as a special case.
    13.11.12 10:01:58,147 com.apple.mdworker.isolation.0: failed to find PDF header: `%PDF' not found.
    13.11.12 10:05:12,853 com.apple.mdworker.isolation.0: Incorrect start/end range ordering; fixing.
    13.11.12 10:06:11,392 com.apple.mdworker.isolation.0: Incorrect start/end range ordering; fixing.
    13.11.12 10:10:29,624 mdworker32: kCGErrorFailure: Set a breakpoint @ CGErrorBreakpoint() to catch errors as they are logged.
    13.11.12 10:10:30,550 mdworker32: kCGErrorFailure: Set a breakpoint @ CGErrorBreakpoint() to catch errors as they are logged.
    13.11.12 10:12:35,002 com.apple.mdworker.pool.1: PSSniffer error: Undefined error: 0
    13.11.12 10:12:35,071 com.apple.mdworker.pool.1: PSSniffer error: Not a directory
    13.11.12 10:13:06,252 com.apple.mdworker.isolation.0: Incorrect start/end range ordering; fixing.
    13.11.12 10:15:23,771 mdworker32: kCGErrorFailure: Set a breakpoint @ CGErrorBreakpoint() to catch errors as they are logged.
    13.11.12 10:16:32,784 mdworker32: kCGErrorFailure: Set a breakpoint @ CGErrorBreakpoint() to catch errors as they are logged.
    13.11.12 10:16:38,018 com.apple.mdworker.isolation.0: Incorrect start/end range ordering; fixing.
    13.11.12 10:16:55,240 com.apple.mdworker.pool.0: PSSniffer error: No such file or directory
    13.11.12 10:16:55,242 com.apple.mdworker.pool.0: PSSniffer error: No such file or directory
    13.11.12 10:16:55,653 com.apple.mdworker.pool.0: PSSniffer error: No such file or directory
    13.11.12 10:16:55,654 com.apple.mdworker.pool.0: PSSniffer error: No such file or directory
    13.11.12 10:16:56,109 com.apple.mdworker.pool.0: PSSniffer error: No such file or directory
    13.11.12 10:16:56,355 com.apple.mdworker.pool.0: PSSniffer error: No such file or directory
    13.11.12 10:17:40,021 com.apple.mdworker.pool.1: PSSniffer error: No such file or directory
    13.11.12 10:17:40,024 com.apple.mdworker.pool.1: PSSniffer error: No such file or directory
    13.11.12 10:20:45,111 com.apple.mdworker.isolation.0: Incorrect start/end range ordering; fixing.
    13.11.12 10:21:09,271 com.apple.mdworker.isolation.0: Incorrect start/end range ordering; fixing.
    13.11.12 10:21:14,683 mdworker32: kCGErrorFailure: Set a breakpoint @ CGErrorBreakpoint() to catch errors as they are logged.
    13.11.12 10:21:18,464 com.apple.mdworker.isolation.0: Incorrect start/end range ordering; fixing.
    13.11.12 10:21:40,586 com.apple.mdworker.isolation.0: Incorrect start/end range ordering; fixing.
    13.11.12 10:21:48,661 com.apple.mdworker.isolation.0: Incorrect start/end range ordering; fixing.
    13.11.12 10:22:00,314 com.apple.mdworker.isolation.0: Incorrect start/end range ordering; fixing.
    13.11.12 10:22:02,828 com.apple.mdworker.isolation.0: Incorrect start/end range ordering; fixing.
    13.11.12 10:23:17,957 com.apple.mdworker.isolation.0: Incorrect start/end range ordering; fixing.
    13.11.12 10:24:39,923 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:24:39,923 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:24:39,923 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:24:39,923 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:24:39,923 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:24:39,923 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:24:39,923 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:24:39,923 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:24:39,923 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:24:39,923 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:24:39,923 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:24:39,923 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:24:39,923 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:24:39,923 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:24:39,923 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:24:39,923 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:24:39,923 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:24:39,923 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:24:39,923 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:24:39,923 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:24:39,923 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:24:39,923 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:24:39,923 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:24:39,923 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:24:39,924 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:24:39,924 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:24:39,924 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:24:39,924 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:24:39,924 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:24:39,924 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:24:39,924 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:24:39,924 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:24:39,924 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:24:39,924 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:24:39,924 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:24:39,924 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:24:39,924 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:24:39,924 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:24:39,924 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:24:39,924 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:24:39,924 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:24:39,924 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:24:39,924 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:24:39,924 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:24:39,924 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:24:39,924 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:24:39,924 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:24:39,924 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:24:39,924 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:24:39,924 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:24:39,924 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:24:39,924 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:24:39,924 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:24:39,924 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:24:39,924 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:24:39,924 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:24:39,925 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:24:39,925 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:24:39,925 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:24:39,925 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:24:39,925 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:24:39,925 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:24:39,925 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:24:39,925 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:24:39,925 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:24:39,925 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:24:39,925 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:24:39,925 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:24:39,925 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:24:39,925 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:24:39,925 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:24:39,925 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:24:39,925 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:24:39,925 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:24:39,925 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:24:39,925 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:24:39,925 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:24:39,925 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:24:39,925 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:24:39,925 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:24:39,925 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:24:39,925 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:24:39,925 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:24:39,925 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:24:39,925 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:24:39,925 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:24:39,925 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:24:39,925 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:24:39,925 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:24:39,925 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:24:39,925 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:24:39,925 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:24:39,925 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:24:39,925 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:24:39,925 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:24:39,925 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:24:39,925 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:24:39,925 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:24:39,925 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:24:39,925 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:24:39,925 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:24:39,925 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:24:39,925 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:24:39,925 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:24:39,925 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:24:39,925 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:24:39,925 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:24:39,925 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:24:39,926 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:24:39,926 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:24:39,926 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:24:39,926 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:24:39,926 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:24:39,926 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:24:39,926 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:24:39,926 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:24:39,926 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:24:39,926 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:24:39,926 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:24:39,926 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:24:39,926 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:24:39,926 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:24:39,926 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:24:39,926 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:24:39,926 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:24:39,926 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:24:39,926 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:24:39,926 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:24:39,926 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:24:39,926 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:24:39,926 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:24:39,926 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:24:39,926 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:24:39,926 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:24:39,926 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:24:39,926 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:24:39,926 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:24:39,926 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:24:39,926 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:24:39,926 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:24:39,926 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:24:39,926 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:24:39,926 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:24:39,926 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:24:39,926 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:24:39,926 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:24:39,926 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:24:39,926 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:24:39,926 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:24:39,926 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:24:39,926 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:24:39,926 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:24:39,927 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:24:39,927 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:24:39,927 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:24:39,927 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:24:39,927 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:24:39,927 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:24:39,927 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:24:39,927 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:24:39,927 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:24:39,927 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:24:39,927 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:24:39,927 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:24:39,927 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:24:39,927 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:24:39,927 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:24:39,927 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:24:39,927 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:24:39,927 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:24:39,927 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:24:39,927 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:24:39,927 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:24:39,927 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:24:39,927 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:24:39,927 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:24:39,927 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:24:39,927 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:24:39,927 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:24:39,927 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:24:39,927 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:24:39,927 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:24:39,927 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:24:39,927 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:24:39,927 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:24:39,927 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:24:39,927 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:24:39,927 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:24:39,927 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:24:39,927 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:24:39,927 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:24:39,927 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:24:39,927 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:24:39,927 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:24:39,927 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:24:39,927 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:24:39,927 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:24:39,927 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:24:39,927 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:24:39,927 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:24:39,927 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:24:39,927 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:24:39,927 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:24:39,927 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:24:39,927 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:24:39,928 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:24:39,928 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:24:39,928 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:24:39,928 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:24:39,928 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:24:39,928 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:24:39,928 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:24:39,928 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:24:39,928 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:24:39,928 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:24:39,928 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:24:39,928 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:24:39,928 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:24:39,928 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:24:39,928 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:24:39,928 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:24:39,928 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:24:39,928 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:24:39,928 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:24:39,928 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:24:39,928 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:24:39,928 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:24:39,928 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:24:39,928 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:24:39,928 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:24:39,928 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:24:39,928 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:24:39,928 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:24:39,928 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:24:39,928 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:24:39,928 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:24:39,928 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:24:39,928 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:24:39,928 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:24:39,928 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:24:39,928 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:24:39,928 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:24:39,928 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:24:39,928 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:24:39,928 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:24:39,928 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:24:39,928 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:24:39,928 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:24:39,928 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:24:39,928 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:24:39,928 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:24:39,928 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:24:39,928 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:24:39,928 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:24:39,928 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:24:39,928 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:24:39,928 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:24:39,928 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:24:39,928 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:24:39,928 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:24:39,928 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:24:39,928 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:24:39,928 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:24:39,928 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:25:09,392 com.apple.mdworker.isolation.0: failed to find PDF header: `%PDF' not found.
    13.11.12 10:25:09,524 com.apple.mdworker.isolation.0: failed to find PDF header: `%PDF' not found.
    13.11.12 10:25:25,692 com.apple.mdworker.isolation.0: Incorrect start/end range ordering; fixing.
    13.11.12 10:27:16,226 com.apple.mdworker.isolation.0: Incorrect start/end range ordering; fixing.
    13.11.12 10:27:32,485 com.apple.mdworker.isolation.0: FlateDecode: decoding error.
    13.11.12 10:27:36,454 com.apple.mdworker.isolation.0: FlateDecode: decoding error.
    13.11.12 10:33:27,794 com.apple.mdworker.isolation.0: FlateDecode: decoding error.
    13.11.12 10:33:31,992 com.apple.mdworker.isolation.0: FlateDecode: decoding error.
    13.11.12 10:33:56,267 com.apple.mdworker.isolation.0: Incorrect start/end range ordering; fixing.
    13.11.12 10:34:20,544 com.apple.mdworker.isolation.0: FlateDecode: decoding error.
    13.11.12 10:34:24,682 com.apple.mdworker.isolation.0: FlateDecode: decoding error.
    13.11.12 10:34:27,864 mdworker32: kCGErrorFailure: Set a breakpoint @ CGErrorBreakpoint() to catch errors as they are logged.
    13.11.12 10:34:36,591 com.apple.mdworker.isolation.0: FlateDecode: decoding error.
    13.11.12 10:34:40,796 com.apple.mdworker.isolation.0: FlateDecode: decoding error.
    13.11.12 10:36:34,848 com.apple.mdworker.isolation.0: FlateDecode: decoding error.
    13.11.12 10:36:38,462 com.apple.mdworker.isolation.0: FlateDecode: decoding error.
    13.11.12 10:38:12,053 com.apple.mdworker.isolation.0: Incorrect start/end range ordering; fixing.
    13.11.12 10:38:35,372 com.apple.mdworker.isolation.0: Incorrect start/end range ordering; fixing.
    13.11.12 10:38:39,293 com.apple.mdworker.isolation.0: Incorrect start/end range ordering; fixing.
    13.11.12 10:38:43,029 com.apple.mdworker.isolation.0: Incorrect start/end range ordering; fixing.
    13.11.12 10:38:45,530 com.apple.mdworker.isolation.0: Incorrect start/end range ordering; fixing.
    13.11.12 10:38:46,102 mdworker32: kCGErrorFailure: Set a breakpoint @ CGErrorBreakpoint() to catch errors as they are logged.
    13.11.12 10:38:46,982 com.apple.mdworker.pool.1: PSSniffer error: No such file or directory
    13.11.12 10:38:53,739 com.apple.mdworker.isolation.0: Incorrect start/end range ordering; fixing.
    13.11.12 10:38:55,394 com.apple.mdworker.pool.1: PSSniffer error: No such file or directory
    13.11.12 10:38:58,240 com.apple.mdworker.isolation.0: Incorrect start/end range ordering; fixing.
    13.11.12 10:39:30,089 com.apple.mdworker.isolation.0: Incorrect start/end range ordering; fixing.
    13.11.12 10:39:48,632 com.apple.mdworker.isolation.0: Incorrect start/end range ordering; fixing.
    13.11.12 10:40:06,597 com.apple.mdworker.isolation.0: Incorrect start/end range ordering; fixing.
    13.11.12 10:42:19,139 com.apple.mdworker.pool.1: PSSniffer error: No such file or directory
    13.11.12 10:43:17,861 com.apple.mdworker.pool.1: PSSniffer error: No such file or directory
    13.11.12 10:43:22,929 com.apple.mdworker.isolation.0: FlateDecode: decoding error.
    13.11.12 10:43:22,980 com.apple.mdworker.isolation.0: FlateDecode: decoding error.
    13.11.12 10:43:23,159 com.apple.mdworker.isolation.0: FlateDecode: decoding error.
    13.11.12 10:43:23,210 com.apple.mdworker.isolation.0: FlateDecode: decoding error.
    13.11.12 10:43:23,431 com.apple.mdworker.isolation.0: FlateDecode: decoding error.
    13.11.12 10:43:23,482 com.apple.mdworker.isolation.0: FlateDecode: decoding error.
    13.11.12 10:43:23,684 com.apple.mdworker.isolation.0: FlateDecode: decoding error.
    13.11.12 10:43:23,735 com.apple.mdworker.isolation.0: FlateDecode: decoding error.
    13.11.12 10:43:23,944 com.apple.mdworker.isolation.0: FlateDecode: decoding error.
    13.11.12 10:43:23,988 com.apple.mdworker.isolation.0: FlateDecode: decoding error.
    13.11.12 10:43:24,120 com.apple.mdworker.isolation.0: FlateDecode: decoding error.
    13.11.12 10:43:24,166 com.apple.mdworker.isolation.0: FlateDecode: decoding error.
    13.11.12 10:43:24,359 com.apple.mdworker.isolation.0: FlateDecode: decoding error.
    13.11.12 10:43:24,410 com.apple.mdworker.isolation.0: FlateDecode: decoding error.
    13.11.12 10:43:24,610 com.apple.mdworker.isolation.0: FlateDecode: decoding error.
    13.11.12 10:43:24,660 com.apple.mdworker.isolation.0: FlateDecode: decoding error.
    13.11.12 10:43:24,860 com.apple.mdworker.isolation.0: FlateDecode: decoding error.
    13.11.12 10:43:24,905 com.apple.mdworker.isolation.0: FlateDecode: decoding error.
    13.11.12 10:43:25,044 com.apple.mdworker.isolation.0: FlateDecode: decoding error.
    13.11.12 10:43:25,072 com.apple.mdworker.isolation.0: FlateDecode: decoding error.
    13.11.12 10:44:17,766 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:44:17,766 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:44:17,766 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:44:17,766 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:44:17,766 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:44:17,766 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:44:17,766 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:44:17,766 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:44:17,766 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:44:17,766 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:44:17,766 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:44:17,766 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:44:17,766 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:44:17,766 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:44:17,766 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:44:17,766 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:44:17,766 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:44:17,766 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:44:17,766 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:44:17,766 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:44:17,766 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:44:17,766 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:44:17,766 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:44:17,766 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:44:17,766 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:44:17,766 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:44:17,766 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:44:17,766 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:44:17,766 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:44:17,766 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:44:17,766 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:44:17,766 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:44:17,766 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:44:17,766 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:44:17,766 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:44:17,766 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:44:17,766 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:44:17,766 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:44:17,766 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:44:17,766 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:44:17,766 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:44:17,766 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:44:17,766 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:44:17,766 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:44:17,766 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:44:17,766 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:44:17,766 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:44:17,766 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:44:17,766 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:44:17,766 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:44:17,767 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:44:17,767 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:44:17,767 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:44:17,767 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:44:17,767 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:44:17,767 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:44:17,767 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:44:17,767 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:44:17,767 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:44:17,767 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:44:17,767 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:44:17,767 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:44:17,767 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:44:17,767 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:44:17,767 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:44:17,767 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:44:17,767 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:44:17,767 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:44:17,767 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:44:17,767 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:44:17,767 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:44:17,767 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:44:17,767 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:44:17,767 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:44:17,767 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:44:17,767 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:44:17,767 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:44:17,767 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:44:17,767 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:44:17,767 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:44:17,767 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:44:17,767 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:44:17,767 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:44:17,767 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:44:17,767 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:44:17,767 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:44:17,767 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:44:17,767 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:44:17,767 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:44:17,767 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:44:17,767 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:44:17,767 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:44:17,767 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:44:17,767 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:44:17,768 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:44:17,768 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:44:17,768 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:44:17,768 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:44:17,768 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:44:17,768 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:44:17,768 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:44:17,768 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:44:17,768 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:44:17,768 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:44:17,768 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:44:17,768 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:44:17,768 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:44:17,768 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:44:17,768 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:44:17,768 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:44:17,768 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:44:17,768 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:44:17,768 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:44:17,768 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:44:17,768 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:44:17,768 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:44:17,768 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:44:17,768 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:44:17,768 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:44:17,768 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:44:17,768 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:44:17,768 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:44:17,768 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:44:17,768 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:44:17,768 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:44:17,768 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:44:17,768 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:44:17,768 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:44:17,768 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:44:17,768 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:44:17,768 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:44:17,768 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:44:17,768 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:44:17,768 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:44:17,768 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:44:17,768 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:44:17,768 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:44:17,768 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:44:17,768 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:44:17,768 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:44:17,768 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:44:17,768 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:44:17,768 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:44:17,768 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:44:17,768 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:44:17,768 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:44:17,768 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:44:17,768 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:44:17,768 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:44:17,768 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:44:17,768 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:44:17,768 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:44:17,768 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:44:17,768 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:44:17,768 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:44:17,768 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:44:17,768 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:44:17,768 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:44:17,768 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:44:17,768 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:44:17,768 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:44:17,768 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:44:17,768 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:44:17,768 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:44:17,769 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:44:17,769 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:44:17,769 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:44:17,769 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:44:17,769 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:44:17,769 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:44:17,769 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:44:17,769 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:44:17,769 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:44:17,769 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:44:17,769 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:44:17,769 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:44:17,769 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:44:17,769 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:44:17,769 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:44:17,769 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:44:17,769 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:44:17,769 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:44:17,769 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:44:17,769 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:44:17,769 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:44:17,769 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:44:17,769 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:44:17,769 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:44:17,769 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:44:17,769 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:44:17,769 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:44:17,769 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:44:17,769 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:44:17,769 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:44:17,769 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:44:17,769 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:44:17,769 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:44:17,769 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:44:17,769 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:44:17,769 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:44:17,769 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:44:17,769 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:44:17,769 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:44:17,769 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:44:17,769 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:44:17,769 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:44:17,769 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:44:17,769 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:44:17,769 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:44:17,769 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:44:17,769 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:44:17,769 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:44:17,769 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:44:17,769 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:44:17,769 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:44:17,769 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:44:17,769 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:44:17,769 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:44:17,769 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:44:17,769 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:44:17,769 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:44:17,769 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:44:17,769 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:44:17,769 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:44:17,769 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:44:17,769 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:44:17,769 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:44:17,769 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:44:17,769 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:44:17,769 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:44:17,769 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:44:17,769 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:44:17,769 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:44:17,769 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:44:17,769 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:44:17,769 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:44:17,770 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:44:17,770 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:44:17,770 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:44:17,770 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:44:17,770 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:44:17,770 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:44:17,770 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:44:17,770 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:44:17,770 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:44:17,770 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:44:17,770 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:44:17,770 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:44:17,770 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:44:17,770 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:44:17,770 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:44:17,770 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:44:17,770 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:44:17,770 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:44:17,770 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:44:17,770 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:44:17,770 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:44:17,770 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:44:17,770 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:44:17,770 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:44:17,770 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:44:17,770 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:44:17,770 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:44:17,770 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:44:17,770 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:44:17,770 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:44:17,770 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:44:17,770 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:44:17,770 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:44:17,770 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:44:17,770 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:44:17,770 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:45:06,319 com.apple.mdworker.isolation.0: invalid stream length 1803; should be 1979.
    13.11.12 10:45:06,322 com.apple.mdworker.isolation.0: invalid stream length 1803; should be 1979.
    13.11.12 10:45:06,325 com.apple.mdworker.isolation.0: invalid stream length 3323; should be 3636.
    13.11.12 10:45:12,878 com.apple.mdworker.isolation.0: Incorrect start/end range ordering; fixing.
    13.11.12 10:45:16,116 com.apple.mdworker.isolation.0: Incorrect start/end range ordering; fixing.
    13.11.12 10:48:02,988 mdworker32: kCGErrorFailure: Set a breakpoint @ CGErrorBreakpoint() to catch errors as they are logged.
    13.11.12 10:48:04,858 com.apple.mdworker.isolation.0: Incorrect start/end range ordering; fixing.
    13.11.12 10:48:21,467 com.apple.mdworker.isolation.0: Incorrect start/end range ordering; fixing.
    13.11.12 10:48:56,552 com.apple.mdworker.isolation.0: Incorrect start/end range ordering; fixing.
    13.11.12 10:49:52,735 com.apple.mdworker.isolation.0: Incorrect start/end range ordering; fixing.
    13.11.12 10:51:07,967 com.apple.mdworker.isolation.0: Incorrect start/end range ordering; fixing.
    13.11.12 10:56:34,884 com.apple.mdworker.isolation.0: Incorrect start/end range ordering; fixing.
    13.11.12 10:56:41,402 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:56:41,402 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:56:41,402 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:56:41,402 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:56:41,402 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:56:41,402 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:56:41,403 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:56:41,403 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:56:41,404 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:56:41,404 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:56:41,404 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:56:41,404 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:56:41,404 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:56:41,404 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:56:41,405 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:56:41,405 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:56:41,405 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:56:41,405 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:56:41,406 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:56:41,406 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:56:41,407 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:56:41,407 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:56:41,408 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:56:41,408 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:56:41,408 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:56:41,408 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:56:41,408 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:56:41,408 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:56:41,408 com.apple.mdworker.isolation.0: syntax error, unexpected DICTSTART.
    13.11.12 10:56:41,408 com.apple.mdworker.isolation.0: failed to parse embedded CMap.
    13.11.12 10:56:41,409 com.apple.mdworker.isolation.0: syntax error, une

    no not really let me give you my situation and my fix.  I my case i was using jquery-ui 1.9.2 tabs which was doing sever side calls instead i was using it for client side feature only. It generally happens only onload.
    My fix
    $(".tabs").tabs({
            "show": function (event, ui) {
                   var oTable = $('div.dataTables_scrollBody > table', ui.panel).dataTable();
                if (oTable.length > 0) {
                    oTable.fnAdjustColumnSizing();
                    $(".tabs div.dataTables_scroll").css({
                        "display": "none",
                        "visibility": "visible"
                    }).show();
            //I added this attribute for preventing tab's server side call
            beforeLoad: function( event, ui ) {
                ui.jqXHR.abort();
    This problem arise when i upgraded my jquery-UI to 1.9

  • Strange i8042 error messages

    I get the following strange i8042 error messages appearing whenever I suspend my machine:
    i8042: Can't reactivate KBD port
    PM: Device i8042 failed to resume: error -19
    However, the system seems to work fine. A google search suggested adding the kernel parameters: i8042.reset and i8042.nomux to my kernel boot line, which I have done, but this did not work.
    System is an Intel ATOM 330 AsRock motherboard with a Logitech MK300 wireless mouse and keyboad combo.
    Any ideas appreciated.

    I'd say you can just ignore it. i8042 is a builtin (rather than a module) which is part of PS/2 keyboard support.

  • Expdp error anyone have an idea on how to fix this?

    I'm trying to get an export of a database that has encrypted columns. Exp really isn't a good option I'd have to unencrypt the columns first everytime.
    First I create the directory D:\DPDUMP and give Everyone SERVICE and SYSTEM full rights to the directory. Oracle runs as the Local System account.
    Created new user myuser that has the role DBA with EXP_FULL_DATABASE etc.
    Made directory object.
    CREATE DIRECTORY dpump_dir_01 AS 'D:\DPDUMP';
    grant read, write on directory dpump_dir_01 to myuser;
    Run expdp as myuser with following PARFILE entries just testing on the tables that are giving me problems.
    DIRECTORY=dpump_dir_01
    LOGFILE=Encryptest.log
    DUMPFILE=Encryptest.dmp
    FULL=N
    encryption_password=********
    TABLES=MYBANK.CARDAGREEMENT
    CONTENT=ALL
    get errors
    ORA-39006: internal error
    ORA-39213: Metadata processing is not available
    I've added USERID="/ as sysdba" to the PARFILE.
    I've tried it to the default DATA_PUMP_DIR after giving read write to that with the same error. expdp TABLES=MYBANK.CARDAGREEMENT.
    No matter what I do I get this error. So far what I've seen is a Directory permissions issue normally causes it and granting access fixes it but I'm having no luck at all.

    Here the error definition message, have you try the recommanded action ?
    ORA-39213: Metadata processing is not available
    Cause: The Data Pump could not use the Metadata API. Typically, this is caused by the XSL stylesheets not being set up properly.
    Action: Connect AS SYSDBA and execute dbms_metadata_util.load_stylesheets to reload the stylesheets.
    Nicolas.

  • Strange IMAQ Error Message: "ni: A frame has been dropped and the acquisition has been canceled."

    Hello,
    I am getting a strange error trying to use the NI PCIe-1427 with the MATLAB image acquisition toolbox configured with continuous acquisition.  After about 5 minutes of acquisition, I get the error below:
    ??? ni: A frame has been dropped and the acquisition has been canceled.
    Does anyone have any clues as to why I am getting this error / where I can find out what causes it?  I need to acquire several hours worth of data and this error completely aborts my acquisition.
      --Y

    Hello,
    Turns out that I found the problem.  I had a slow memory allocation in my MATLAB code and this delay allowed too many frames to be accumulated in memory.  I still do not know the source of the exact text of the error, but upon removing the slow memory allocation the error no longer occurs.  I believe that it may have resulted from a buffer overrun of some sort in the underlying driver.
    Given that this no longer poses a problem for me, I will not pursue it further.
    Thank you for your help!

  • EXPDP error - ORA-39126: Worker unexpected fatal error in KUPW$WORKER.UNLOA

    Greetings All,
    Oracle 11g (11.2.0.0) on Windows 2008 R2
    I am getting the error below during a schema export of just 1 particular schema. Other schema expdp’s don’t encounter this problem.
    Processing object type SCHEMA_EXPORT/PACKAGE/PACKAGE_BODY
    Processing object type SCHEMA_EXPORT/TABLE/CONSTRAINT/REF_CONSTRAINT
    ORA-39126: Worker unexpected fatal error in KUPW$WORKER.UNLOAD_METADATA [REF_CONSTRAINT:"CM_MASTER"."PPY_PEN_FK"]
    ORA-04063: package body "XDB.DBMS_XDBUTIL_INT" has errors
    ORA-06512: at "SYS.DBMS_SYS_ERROR", line 95
    ORA-06512: at "SYS.KUPW$WORKER", line 8165
    ----- PL/SQL Call Stack -----
      object      line  object
      handle    number  name
    000000047B38A000     18990  package body SYS.KUPW$WORKER
    000000047B38A000      8192  package body SYS.KUPW$WORKER
    000000047B38A000      2823  package body SYS.KUPW$WORKER
    000000047B38A000      8847  package body SYS.KUPW$WORKER
    000000047B38A000      1649  package body SYS.KUPW$WORKER
    000000047A576CD0         2  anonymous block
    Job "CM_MASTER"."EXP_CM_MASTER" stopped due to fatal error at 17:11:30I have deleted the identified constraint, but then errors out again on another constraint.
    I have found a tentative resolution for the ORA-39126 error (delete database stats, then gather database stats) but have not done so yet.
    I have tried deleting the statistics for just the schema (cm_master), and then re-gathered stats for the same schema. Still get the error.
    I am concerned about the ORA-04063: package body “XDB.DBMS_XDBUTIL_INT” has errors.
    I have unlocked and set new password for the XDB user, but am not able to logon as XDB to re-compile the package body in question.
    We had some maintenance applied over the weekend that “revoked execute from public” on the following packages:
    dbms_datapump
    dbms_crypto
    dbms_crypto_toolkit
    dbms_java_test
    dbms_random
    dbms_sql
    utl_file
    utl_http
    utl_mail
    utl_smtp
    utl_tcpThe user performing the export with the problem (cm_master) was then granted execute back on the following packages:
    dbms_datapump
    dbms_crypto
    dbms_random
    dbms_sql
    utl_file
    utl_http
    utl_mail
    (not: dbms_crypto_toolkit, dbms_java_test,  utl_smtp, utl_tcp,)Other schemas were granted execute on the following packages and are NOT having expdp problems:
    dbms_datapump
    dbms_sql
    utl_file
    utl_http
    utl_mail
    (not: dbms_crypto, dbms_crypto_toolkit, dbms_random, utl_smtp, utl_tcp )I don't think the public revokes are causing this error because the "Other schemas" do not have this error and were not specifically granted back all of the public revokes that cm_master received back.
    I appreciate any suggestions.
    Thanks for your time,
    Bob
    Edited by: Snyds on Jun 5, 2012 10:03 AM

    rjamya,
    I checked dba_registry, all 18 rows returned are VALID.
    I attempted to compile the package body identified in the error messages:
    ORA-04063: package body "XDB.DBMS_XDBUTIL_INT" has errorswith
    alter package xdb.dbms_xdbutil_int compile body;I got thje following results
    Error starting at line 60 in command:
    alter package xdb.dbms_xdbutil_int compile body
    Error report:
    SQL Command: package XDB.DBMS_XDBUTIL_INT
    Failed: ORA-24344: success with compilation error
    24344. 00000 -  "success with compilation error"
    *Cause:    A sql/plsql compilation error occurred.
    *Action:   Return OCI_SUCCESS_WITH_INFO along with the error code
    package XDB.DBMS_XDBUTIL_INT altered.Any other suggestions regarding how to resolve errors in the XDB.DBMS_ packages?
    I also tried granting CM_MASTER execute on the packages that I revoked execute to PUBLIC on, with no effect.
    I tried “exclude=REF_CONSTRAINT” on the export, the problem seemed to move to the next section:
    Estimate in progress using BLOCKS method...
    Processing object type SCHEMA_EXPORT/TABLE/TABLE_DATA
    Total estimation using BLOCKS method: 96.31 MB
    Processing object type SCHEMA_EXPORT/USER
    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/DB_LINK
    Processing object type SCHEMA_EXPORT/SEQUENCE/SEQUENCE
    Processing object type SCHEMA_EXPORT/TABLE/TABLE
    Processing object type SCHEMA_EXPORT/TABLE/GRANT/OWNER_GRANT/OBJECT_GRANT
    Processing object type SCHEMA_EXPORT/TABLE/INDEX/INDEX
    Processing object type SCHEMA_EXPORT/TABLE/CONSTRAINT/CONSTRAINT
    Processing object type SCHEMA_EXPORT/TABLE/COMMENT
    Processing object type SCHEMA_EXPORT/PACKAGE/PACKAGE_SPEC
    Processing object type SCHEMA_EXPORT/FUNCTION/FUNCTION
    Processing object type SCHEMA_EXPORT/PACKAGE/COMPILE_PACKAGE/PACKAGE_SPEC/ALTER_PACKAGE_SPEC
    Processing object type SCHEMA_EXPORT/FUNCTION/ALTER_FUNCTION
    Processing object type SCHEMA_EXPORT/VIEW/VIEW
    Processing object type SCHEMA_EXPORT/PACKAGE/PACKAGE_BODY
    ORA-39126: Worker unexpected fatal error in KUPW$WORKER.UNLOAD_METADATA [PACKAGE_BODY:"CM_MASTER"."SR_MAINTENANCE"]
    ORA-04063: package body "XDB.DBMS_XDBUTIL_INT" has errors
    ORA-06512: at "SYS.DBMS_SYS_ERROR", line 95
    ORA-06512: at "SYS.KUPW$WORKER", line 8165
    ----- PL/SQL Call Stack -----
      object      line  object
      handle    number  name
    000000047B38A000     18990  package body SYS.KUPW$WORKER
    000000047B38A000      8192  package body SYS.KUPW$WORKER
    000000047B38A000      2823  package body SYS.KUPW$WORKER
    000000047B38A000      8847  package body SYS.KUPW$WORKER
    000000047B38A000      1649  package body SYS.KUPW$WORKER
    000000047A576CD0         2  anonymous block
    Job "CM_MASTER"."EXP_CM_MASTER" stopped due to fatal error at 19:36:23I tried the suggestion from my Google-ing, drop database statistics, then gather database statistics. No effect, same error.
    I also tried granting CM_MASTER execute on the packages that I revoked execute to PUBLIC on, with no effect.
    Again what seems odd is that I can export other schemas without errors.
    Any other suggestions, please.
    Thanks,
    Bob
    Edited by: Snyds on Jun 5, 2012 12:04 PM

  • EXPDP Error in Oracle 11.2.0.1.0

    Hello Team,
    I have a problem in executing expdp/impdp in oracle version 11.2.0.1.0. Following is the error output. Traditional exp/imp is working fine.
    Note: command executed on Oracle Linux on VMware
    [oracle1@rac1 test]$ expdp
    Export: Release 11.2.0.1.0 - Production on Mon Aug 12 15:29:39 2013
    Copyright (c) 1982, 2009, Oracle and/or its affiliates.  All rights reserved.
    Username: system
    Password:
    Connected to: Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    ORA-31626: job does not exist
    ORA-04063: package body "SYS.DBMS_INTERNAL_LOGSTDBY" has errors
    ORA-06508: PL/SQL: could not find program unit being called: "SYS.DBMS_INTERNAL_LOGSTDBY"
    ORA-06512: at "SYS.KUPV$FT", line 991
    ORA-04063: package body "SYS.DBMS_INTERNAL_LOGSTDBY" has errors
    ORA-06508: PL/SQL: could not find program unit being called: "SYS.DBMS_INTERNAL_LOGSTDBY"
    Regards,

    Hello DK2010,
    =======================================================================================================
    SQL> set lines 100
    SQL> set pagesize 200
    SQL> /
    OWNER                          OBJECT_TYPE
    OBJECT_NAME
    OBJECT_ID STATUS
    SYS                            PACKAGE
    DBMS_INTERNAL_LOGSTDBY
          5067 VALID
    SYS                            PACKAGE BODY
    DBMS_INTERNAL_LOGSTDBY
         10780 INVALID
    ===================================================================================================
    UTLRP.SQL output:
    ====================================================================================================
    SQL> @utlrp.sql
    TIMESTAMP
    COMP_TIMESTAMP UTLRP_BGN  2013-08-12 16:03:24
    DOC>   The following PL/SQL block invokes UTL_RECOMP to recompile invalid
    DOC>   objects in the database. Recompilation time is proportional to the
    DOC>   number of invalid objects in the database, so this command may take
    DOC>   a long time to execute on a database with a large number of invalid
    DOC>   objects.
    DOC>
    DOC>   Use the following queries to track recompilation progress:
    DOC>
    DOC>   1. Query returning the number of invalid objects remaining. This
    DOC>      number should decrease with time.
    DOC>         SELECT COUNT(*) FROM obj$ WHERE status IN (4, 5, 6);
    DOC>
    DOC>   2. Query returning the number of objects compiled so far. This number
    DOC>      should increase with time.
    DOC>         SELECT COUNT(*) FROM UTL_RECOMP_COMPILED;
    DOC>
    DOC>   This script automatically chooses serial or parallel recompilation
    DOC>   based on the number of CPUs available (parameter cpu_count) multiplied
    DOC>   by the number of threads per CPU (parameter parallel_threads_per_cpu).
    DOC>   On RAC, this number is added across all RAC nodes.
    DOC>
    DOC>   UTL_RECOMP uses DBMS_SCHEDULER to create jobs for parallel
    DOC>   recompilation. Jobs are created without instance affinity so that they
    DOC>   can migrate across RAC nodes. Use the following queries to verify
    DOC>   whether UTL_RECOMP jobs are being created and run correctly:
    DOC>
    DOC>   1. Query showing jobs created by UTL_RECOMP
    DOC>         SELECT job_name FROM dba_scheduler_jobs
    DOC>            WHERE job_name like 'UTL_RECOMP_SLAVE_%';
    DOC>
    DOC>   2. Query showing UTL_RECOMP jobs that are running
    DOC>         SELECT job_name FROM dba_scheduler_running_jobs
    DOC>            WHERE job_name like 'UTL_RECOMP_SLAVE_%';
    DOC>#
    DECLARE
    ERROR at line 1:
    ORA-04063: package body "SYS.DBMS_INTERNAL_LOGSTDBY" has errors
    ORA-06508: PL/SQL: could not find program unit being called: "SYS.DBMS_INTERNAL_LOGSTDBY"
    ORA-06512: at "SYS.UTL_RECOMP", line 781
    ORA-04063: package body "SYS.DBMS_INTERNAL_LOGSTDBY" has errors
    ORA-06508: PL/SQL: could not find program unit being called: "SYS.DBMS_INTERNAL_LOGSTDBY"
    ORA-06512: at line 4
    TIMESTAMP
    COMP_TIMESTAMP UTLRP_END  2013-08-12 16:03:25
    DOC> The following query reports the number of objects that have compiled
    DOC> with errors (objects that compile with errors have status set to 3 in
    DOC> obj$). If the number is higher than expected, please examine the error
    DOC> messages reported with each object (using SHOW ERRORS) to see if they
    DOC> point to system misconfiguration or resource constraints that must be
    DOC> fixed before attempting to recompile these objects.
    DOC>#
    OBJECTS WITH ERRORS
                     13
    DOC> The following query reports the number of errors caught during
    DOC> recompilation. If this number is non-zero, please query the error
    DOC> messages in the table UTL_RECOMP_ERRORS to see if any of these errors
    DOC> are due to misconfiguration or resource constraints that must be
    DOC> fixed before objects can compile successfully.
    DOC>#
    ERRORS DURING RECOMPILATION
                              0
    PL/SQL procedure successfully completed.
    SQL> SELECT owner, object_type, object_name, object_id, status FROM SYS.dba_objects where object_name = 'DBMS_INTERNAL_LOGSTDBY';
    OWNER                          OBJECT_TYPE
    OBJECT_NAME
    OBJECT_ID STATUS
    SYS                            PACKAGE
    DBMS_INTERNAL_LOGSTDBY
          5067 VALID
    SYS                            PACKAGE BODY
    DBMS_INTERNAL_LOGSTDBY
         10780 INVALID
    ==================================================
    SELECT owner,object_type,object_name,status FROM dba_objects WHERE  status = 'INVALID' ORDER BY owner, object_type, object_name;SQL> SQL>
    OWNER                          OBJECT_TYPE         OBJECT_NAME                    STATUS
    DBSNMP                         PACKAGE             BSLN                           INVALID
    DBSNMP                         PACKAGE             BSLN_INTERNAL                  INVALID
    DBSNMP                         PACKAGE BODY        BSLN                           INVALID
    DBSNMP                         PACKAGE BODY        BSLN_INTERNAL                  INVALID
    DBSNMP                         SYNONYM             MGMT_BSLN                      INVALID
    PUBLIC                         SYNONYM             DBA_LOGSTDBY_LOG               INVALID
    PUBLIC                         SYNONYM             DBMS_ADVISOR                   INVALID
    PUBLIC                         SYNONYM             DBMS_SQLPA                     INVALID
    PUBLIC                         SYNONYM             DBMS_SQLTUNE                   INVALID
    SYS                            FUNCTION            LOGSTDBY$TABF                  INVALID
    SYS                            FUNCTION            LOGSTDBY$UTABF                 INVALID
    SYS                            PACKAGE             DBMS_ADVISOR                   INVALID
    SYS                            PACKAGE             DBMS_SQLDIAG_INTERNAL          INVALID
    SYS                            PACKAGE             DBMS_SQLPA                     INVALID
    SYS                            PACKAGE             DBMS_SQLTUNE                   INVALID
    SYS                            PACKAGE             DBMS_SQLTUNE_INTERNAL          INVALID
    SYS                            PACKAGE             PRVT_ADVISOR                   INVALID
    SYS                            PACKAGE BODY        AS_REPLAY                      INVALID
    SYS                            PACKAGE BODY        DBMS_ADDM                      INVALID
    SYS                            PACKAGE BODY        DBMS_ADVISOR                   INVALID
    SYS                            PACKAGE BODY        DBMS_APPLY_ERROR               INVALID
    SYS                            PACKAGE BODY        DBMS_ARCH_PROVIDER_INTL        INVALID
    SYS                            PACKAGE BODY        DBMS_ASH_INTERNAL              INVALID
    SYS                            PACKAGE BODY        DBMS_AUTOTASK_PRVT             INVALID
    SYS                            PACKAGE BODY        DBMS_AUTO_TASK_EXPORT          INVALID
    SYS                            PACKAGE BODY        DBMS_CAPTURE_SWITCH_ADM        INVALID
    SYS                            PACKAGE BODY        DBMS_CAPTURE_SWITCH_INTERNAL   INVALID
    SYS                            PACKAGE BODY        DBMS_COMPRESSION               INVALID
    SYS                            PACKAGE BODY        DBMS_DBFS_CONTENT_ADMIN        INVALID
    SYS                            PACKAGE BODY        DBMS_DBFS_HS                   INVALID
    SYS                            PACKAGE BODY        DBMS_FEATURE_USAGE             INVALID
    SYS                            PACKAGE BODY        DBMS_FEATURE_USAGE_INTERNAL    INVALID
    SYS                            PACKAGE BODY        DBMS_INTERNAL_LOGSTDBY         INVALID
    SYS                            PACKAGE BODY        DBMS_ISCHED                    INVALID
    SYS                            PACKAGE BODY        DBMS_LOGREP_EXP                INVALID
    SYS                            PACKAGE BODY        DBMS_LOGSTDBY                  INVALID
    SYS                            PACKAGE BODY        DBMS_MANAGEMENT_PACKS          INVALID
    SYS                            PACKAGE BODY        DBMS_PROPAGATION_INTERNAL      INVALID
    SYS                            PACKAGE BODY        DBMS_REPORT                    INVALID
    SYS                            PACKAGE BODY        DBMS_SERVER_ALERT              INVALID
    SYS                            PACKAGE BODY        DBMS_SERVER_ALERT_PRVT         INVALID
    SYS                            PACKAGE BODY        DBMS_SMB                       INVALID
    SYS                            PACKAGE BODY        DBMS_SMB_INTERNAL              INVALID
    SYS                            PACKAGE BODY        DBMS_SPACE                     INVALID
    SYS                            PACKAGE BODY        DBMS_SPM                       INVALID
    SYS                            PACKAGE BODY        DBMS_SPM_INTERNAL              INVALID
    SYS                            PACKAGE BODY        DBMS_SQLDIAG                   INVALID
    SYS                            PACKAGE BODY        DBMS_SQLDIAG_INTERNAL          INVALID
    SYS                            PACKAGE BODY        DBMS_SQLPA                     INVALID
    SYS                            PACKAGE BODY        DBMS_SQLTCB_INTERNAL           INVALID
    SYS                            PACKAGE BODY        DBMS_SQLTUNE                   INVALID
    SYS                            PACKAGE BODY        DBMS_SQLTUNE_INTERNAL          INVALID
    SYS                            PACKAGE BODY        DBMS_SQLTUNE_UTIL1             INVALID
    SYS                            PACKAGE BODY        DBMS_SQLTUNE_UTIL2             INVALID
    SYS                            PACKAGE BODY        DBMS_STATS                     INVALID
    SYS                            PACKAGE BODY        DBMS_STATS_INTERNAL            INVALID
    SYS                            PACKAGE BODY        DBMS_STREAMS_ADM               INVALID
    SYS                            PACKAGE BODY        DBMS_STREAMS_ADM_UTL           INVALID
    SYS                            PACKAGE BODY        DBMS_STREAMS_AUTO_INT          INVALID
    SYS                            PACKAGE BODY        DBMS_STREAMS_SM                INVALID
    SYS                            PACKAGE BODY        DBMS_SWRF_INTERNAL             INVALID
    SYS                            PACKAGE BODY        DBMS_SWRF_REPORT_INTERNAL      INVALID
    SYS                            PACKAGE BODY        DBMS_UNDO_ADV                  INVALID
    SYS                            PACKAGE BODY        DBMS_WORKLOAD_CAPTURE          INVALID
    SYS                            PACKAGE BODY        DBMS_WORKLOAD_REPLAY           INVALID
    SYS                            PACKAGE BODY        DBMS_WORKLOAD_REPOSITORY       INVALID
    SYS                            PACKAGE BODY        DBMS_WRR_INTERNAL              INVALID
    SYS                            PACKAGE BODY        DBMS_XPLAN                     INVALID
    SYS                            PACKAGE BODY        HM_SQLTK_INTERNAL              INVALID
    SYS                            PACKAGE BODY        LOGMNR_DICT_CACHE              INVALID
    SYS                            PACKAGE BODY        PRVT_ACCESS_ADVISOR            INVALID
    SYS                            PACKAGE BODY        PRVT_ADVISOR                   INVALID
    SYS                            PACKAGE BODY        PRVT_COMPRESSION               INVALID
    SYS                            PACKAGE BODY        PRVT_HDM                       INVALID
    SYS                            PACKAGE BODY        PRVT_PARTREC_NOPRIV            INVALID
    SYS                            PACKAGE BODY        PRVT_REPORT_TAGS               INVALID
    SYS                            PACKAGE BODY        PRVT_SQLADV_INFRA              INVALID
    SYS                            PACKAGE BODY        PRVT_SQLPA                     INVALID
    SYS                            PACKAGE BODY        PRVT_SQLPROF_INFRA             INVALID
    SYS                            PACKAGE BODY        PRVT_SQLSET_INFRA              INVALID
    SYS                            PACKAGE BODY        PRVT_SYS_TUNE_MVIEW            INVALID
    SYS                            PACKAGE BODY        PRVT_TUNE_MVIEW                INVALID
    SYS                            PACKAGE BODY        PRVT_WORKLOAD                  INVALID
    SYS                            PACKAGE BODY        PRVT_WORKLOAD_NOPRIV           INVALID
    SYS                            PROCEDURE           DBMS_FEATURE_AUM               INVALID
    SYS                            PROCEDURE           DBMS_FEATURE_AUTOSTA           INVALID
    SYS                            PROCEDURE           DBMS_FEATURE_AWR               INVALID
    SYS                            PROCEDURE           DBMS_FEATURE_REGISTER_ALLFEAT  INVALID
    SYS                            PROCEDURE           DBMS_FEATURE_SEGADV_USER       INVALID
    SYS                            PROCEDURE           DBMS_FEATURE_UTILITIES1        INVALID
    SYS                            PROCEDURE           DBMS_FEATURE_UTILITIES2        INVALID
    SYS                            PROCEDURE           DBMS_FEATURE_UTILITIES3        INVALID
    SYS                            PROCEDURE           DBMS_FEATURE_UTILITIES4        INVALID
    SYS                            PROCEDURE           DBMS_FEATURE_WCR_CAPTURE       INVALID
    SYS                            PROCEDURE           DBMS_FEATURE_WCR_REPLAY        INVALID
    SYS                            PROCEDURE           LOGMNR_KRVRDA_TEST_APPLY       INVALID
    SYS                            TYPE                SCHEDULER$_REMOTE_ARG          INVALID
    SYS                            TYPE                SCHEDULER$_REMOTE_ARG_LIST     INVALID
    SYS                            TYPE                SCHEDULER$_REMOTE_DB_JOB_INFO  INVALID
    SYS                            TYPE BODY           WRI$_ADV_ABSTRACT_T            INVALID
    SYS                            TYPE BODY           WRI$_ADV_COMPRESSION_T         INVALID
    SYS                            TYPE BODY           WRI$_ADV_HDM_T                 INVALID
    SYS                            TYPE BODY           WRI$_ADV_OBJSPACE_TREND_T      INVALID
    SYS                            TYPE BODY           WRI$_ADV_SQLACCESS_ADV         INVALID
    SYS                            TYPE BODY           WRI$_ADV_SQLTUNE               INVALID
    SYS                            TYPE BODY           WRI$_ADV_TUNEMVIEW_ADV         INVALID
    SYS                            TYPE BODY           WRI$_REPT_PLAN_DIFF            INVALID
    SYS                            TYPE BODY           WRI$_REPT_SQLMONITOR           INVALID
    SYS                            TYPE BODY           WRI$_REPT_SQLPI                INVALID
    SYS                            TYPE BODY           WRI$_REPT_SQLT                 INVALID
    SYS                            VIEW                AQ$AQ_PROP_TABLE_R             INVALID
    SYS                            VIEW                AQ$SCHEDULER$_EVENT_QTAB_R     INVALID
    SYS                            VIEW                AQ$SCHEDULER$_REMDB_JOBQTAB    INVALID
    SYS                            VIEW                AQ$SCHEDULER$_REMDB_JOBQTAB_R  INVALID
    SYS                            VIEW                AQ$SCHEDULER_FILEWATCHER_QT_R  INVALID
    SYS                            VIEW                AQ$_AQ$_MEM_MC_F               INVALID
    SYS                            VIEW                AQ$_AQ_PROP_TABLE_F            INVALID
    SYS                            VIEW                AQ$_SCHEDULER$_EVENT_QTAB_F    INVALID
    SYS                            VIEW                AQ$_SCHEDULER$_REMDB_JOBQTAB_F INVALID
    SYS                            VIEW                AQ$_SCHEDULER_FILEWATCHER_QT_F INVALID
    SYS                            VIEW                DBA_LOGSTDBY_LOG               INVALID
    121 rows selected.
    =================================================================================================================
    How do i fix this invalid sys objects.
    Regards,

  • JFileChooser strange registry error

    I am testing a java application on windows 7 and just saw a very strange error pop up after trying to use a JFileChooser:
    An error was detected in the windows registry.
    Required windows folders were missing.
    Googling this did not turn up anything obvious.
    Clicking OK then showed:
    Some local folders are missing.
    Missing: C:\programdata\OEM Links
    Full folder List:
    C:\Users\Public\Desktop
    ... (other folders)
    Anyone ever seen anything like this before?
    Or anyone have an idea what might be going on?
    This is a fresh win7 install on a test box (ghosted for re-imaging)
    why does JFileChooser care about the registry?

    Hello,
    I'm sorry you haven't got a reply so far. Here are some considerations, that you can now wish to consider:
    I am testing a java application on windows 7 and just saw a very strange error pop up after trying to use a JFileChooser:Can you test it on another version of Windows? What is the result?
    If you don't have any other Windows version available, can you post an SSCCE (a 10-line program that tries to open a JFileChooser, and reproduces the problem), so that you, me, and other people, have a chance to run the exact same test on various OS?
    In all cases, you always have more chance to receive an answer when you post an SSCCE that demonstrates the problem with convenience for other forum users: http://sscce.org
    An error was detected in the windows registry.
    Required windows folders were missing.
    Googling this did not turn up anything obvious.Googling "JFIleChooser registry" did turn up a few interesting links, see below.
    Some local folders are missing.
    Missing:  C:\programdata\OEM Links
    Full folder List: 
    C:\Users\Public\Desktop
    ...   (other folders)Anyone ever seen anything like this before?
    Or anyone have an idea what might be going on?From the looks of it, it seems the JRE is using the registry to have some info about the files system. I don't know for sure which info and why, but I don't find that so surprising (admittedly, the error message itself is rather unclear).
    why does JFileChooser care about the registry?Not the registry itself, but merely the info it contains about the filesystem's structure. I imagine drive names and mapping of network drives can be found there, for example.
    As claimed above, Googling led me to the following bug entries:
    http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=4879395
    http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=4712307
    Don't necessarily traverse the whole contents of the bug entries themselves: the point is that they prove that the JRE is indeed leveraging filesystem info from the registry (the reason was, if I understand correctly, to improve performance in the case of network drives, and in the case of very numerous files).
    The other point is that both bug entries describe the same command-line flag to disable at least one mechanism that leverages the registry:
    java -Dswing.disableFileChooserSpeedFix ...Hopefully, that may, with no guarantee, fix your specific issue. Try it and let us know.
    Best regards,
    J.

  • [help]oracle 10.2.0.1 expdp error

    when i try to use exp to export all the data under an user account, here comes some error of failure in export some table which not supported by exp
    EXP-00104: datatype (BINARY_FLOAT) of column GP in table XXXX.ADAA_DATA is not supported, table will not be exported
    so I try to use new feature of 10g expdp,but another errors goes up again
    I get on command line:
    ORA-31626: job does not exist
    ORA-31637: cannot create job SYS_EXPORT_SCHEMA_01 for user TEST
    ORA-06512: at "SYS.DBMS_SYS_ERROR", line 95
    ORA-06512: at "SYS.KUPV$FT", line 1193
    ORA-39062: error creating master process DM00
    ORA-39107: Master process DM00 violated startup protocol. Master error:
    ORA-06533: Subscript beyond count
    and in the trace file,here comes some message is similar to the following:
    Oracle process number: 24
    Windows thread id: 904, image: ORACLE.EXE (DM00)
    **** SERVICE NAME:(SYS$USERS) 2006-07-18 22:20:59.689*
    **** SESSION ID:(146.18) 2006-07-18 22:20:59.689*
    KUPM: Error detected by MCP
    KUPM: ORA-39097: Data Pump job encountered unexpected error -44002
    KUPM: ORA-39065: unexpected master process exception in MAIN
    KUPM: ORA-44002: invalid object name
    KUPM:     ORA-06512: at "SYS.DBMS_ASSERT", line 283
    KUPM:     ORA-06512: at "SYS.KUPM$MCP", line 484
    KUPM:--------------------------------------------------------------------------------
    PL/SQL Call Stack--------------------------------------------------------------------------------
    KUPM:       object      line  object
    KUPM:       handle    number  name
    KUPM:     1CE0FC44     10592  package body SYS.KUPM$MCP
    KUPM:     1CE0FC44       917  package body SYS.KUPM$MCP
    KUPM:     1CCF8CAC         2  anonymous block
    KUPM: In RESPOND_TO_START
    KUPM: Killing workers on fatal exception...
    KUPM: In check_workers...
    kupprdp: Error 6533 detected in master process DM00.
    OPIRIP: Uncaught error 447. Error stack:
    ORA-00447: fatal error in background process
    ORA-31666: Master process DM00 had an unhandled exception.
    ORA-06533: Subscript beyond count
    ORA-06512: at "SYS.KUPM$MCP", line 8636
    ORA-06512: at "SYS.KUPM$MCP", line 5794
    ORA-06512: at "SYS.KUPM$MCP", line 936
    ORA-06512: at line 2

    I got some help from metalink and my version is 10.2.0.1 based on win2003 server 32bit
    ORA-44002 error raised when using the Data Pump based export utility [ID 603469.1]
    In this Document
    Symptoms
    Cause
    Solution
    Applies to:
    Oracle Server - Enterprise Edition - Version: 10.2.0.3
    This problem can occur on any platform.
    Symptoms
    -- Problem Statement:
    The following errors are reported while performing a Data Pump based export operation.
    KUPM: Error detected by MCP
    KUPM: ORA-39097: Data Pump job encountered unexpected error -44002
    KUPM: ORA-39065: unexpected master process exception in MAIN
    KUPM: ORA-44002: invalid object name
    KUPM: ORA-06512: at "SYS.DBMS_ASSERT", line 283
    KUPM: ORA-06512: at "SYS.KUPM$MCP", line 484
    KUPM: ----- PL/SQL Call Stack -----
    KUPM: object line object
    KUPM: handle number name
    KUPM: 39f4f8298 10619 package body SYS.KUPM$MCP
    KUPM: 39f4f8298 917 package body SYS.KUPM$MCP
    KUPM: 39f4fbe80 2 anonymous block
    KUPM: In RESPOND_TO_START
    KUPM: Killing workers on fatal exception...
    KUPM: In check_workers...
    kupprdp: Error 6533 detected in master process DM00.
    OPIRIP: Uncaught error 447. Error stack:
    ORA-00447: fatal error in background process
    ORA-31666: Master process DM00 had an unhandled exception.
    ORA-06533: Subscript beyond count
    ORA-06512: at "SYS.KUPM$MCP", line 8677
    ORA-06512: at "SYS.KUPM$MCP", line 5832
    ORA-06512: at "SYS.KUPM$MCP", line 936
    ORA-06512: at line 2
    Cause
    A synonym with a name that matched an Oracle RDBMS reserved name was found to exist.
    After the customer found out that such a synonym existed and they removed it, the export ran
    successfully.
    Solution
    -- To implement the solution, please execute the following steps::
    Avoid using object names that match reserved names of the Oracle RDBMS software release.
    but the solution makes me confuse...what to do?
    "Avoid using object names that match reserved names of the Oracle RDBMS software release" ?? I don't have synonym
    Edited by: gunsnroses_xjapan on Aug 3, 2010 1:31 AM

  • EXPDP error - Help

    Good morning
    When I run expdp I got this error. My first expdp was fine but the second expdp I got the next error:
    Processing object type DATABASE_EXPORT/SCHEMA/TABLE/TABLE
    ORA-39171: Job is experiencing a resumable wait.
    ORA-01691: unable to extend lob segment EXPORT_DB.SYS_LOB0000108750C00039$$ by 128 in tablespace USERS
    ORA-39171: Job is experiencing a resumable wait.
    ORA-01691: unable to extend lob segment EXPORT_DB.SYS_LOB0000108750C00039$$ by 128 in tablespace USERS
    ORA-39171: Job is experiencing a resumable wait.
    ORA-01691: unable to extend lob segment EXPORT_DB.SYS_LOB0000108750C00039$$ by 128 in tablespace USERS
    ORA-39171: Job is experiencing a resumable wait.
    ORA-01691: unable to extend lob segment EXPORT_DB.SYS_LOB0000108750C00039$$ by 128 in tablespace USERS
    ORA-39171: Job is experiencing a resumable wait.
    ORA-01691: unable to extend lob segment EXPORT_DB.SYS_LOB0000108750C00039$$ by 128 in tablespace USERS
    ORA-39171: Job is experiencing a resumable wait.
    ORA-01691: unable to extend lob segment EXPORT_DB.SYS_LOB0000108750C00039$$ by 128 in tablespace USERS
    ORA-39171: Job is experiencing a resumable wait.
    ORA-01691: unable to extend lob segment EXPORT_DB.SYS_LOB0000108750C00039$$ by 128 in tablespace USERS
    ORA-39171: Job is experiencing a resumable wait.
    ORA-01691: unable to extend lob segment EXPORT_DB.SYS_LOB0000108750C00039$$ by 128 in tablespace USERS
    ORA-39171: Job is experiencing a resumable wait.
    ORA-01691: unable to extend lob segment EXPORT_DB.SYS_LOB0000108750C00039$$ by 128 in tablespace USERS
    ORA-39171: Job is experiencing a resumable wait.
    ORA-01691: unable to extend lob segment EXPORT_DB.SYS_LOB0000108750C00039$$ by 128 in tablespace USERS
    ORA-39171: Job is experiencing a resumable wait.
    ORA-01691: unable to extend lob segment EXPORT_DB.SYS_LOB0000108750C00039$$ by 128 in tablespace USERS
    ORA-39171: Job is experiencing a resumable wait.
    ORA-01691: unable to extend lob segment EXPORT_DB.SYS_LOB0000108750C00039$$ by 128 in tablespace USERS
    ORA-39171: Job is experiencing a resumable wait.
    ORA-01691: unable to extend lob segment EXPORT_DB.SYS_LOB0000108750C00039$$ by 128 in tablespace USERS
    ORA-39171: Job is experiencing a resumable wait.
    ORA-01691: unable to extend lob segment EXPORT_DB.SYS_LOB0000108750C00039$$ by 128 in tablespace USERS
    ORA-39171: Job is experiencing a resumable wait.
    ORA-01691: unable to extend lob segment EXPORT_DB.SYS_LOB0000108750C00039$$ by 128 in tablespace USERS
    ORA-39171: Job is experiencing a resumable wait.
    ORA-01691: unable to extend lob segment EXPORT_DB.SYS_LOB0000108750C00039$$ by 128 in tablespace USERS
    ORA-39171: Job is experiencing a resumable wait.
    ORA-01691: unable to extend lob segment EXPORT_DB.SYS_LOB0000108750C00039$$ by 128 in tablespace USERS
    ORA-39171: Job is experiencing a resumable wait.
    ORA-01691: unable to extend lob segment EXPORT_DB.SYS_LOB0000108750C00039$$ by 128 in tablespace USERS
    ORA-39171: Job is experiencing a resumable wait.
    ORA-01691: unable to extend lob segment EXPORT_DB.SYS_LOB0000108750C00039$$ by 128 in tablespace USERS
    ORA-39171: Job is experiencing a resumable wait.
    ORA-01691: unable to extend lob segment EXPORT_DB.SYS_LOB0000108750C00039$$ by 128 in tablespace USERS
    ORA-39171: Job is experiencing a resumable wait.
    ORA-01691: unable to extend lob segment EXPORT_DB.SYS_LOB0000108750C00039$$ by 128 in tablespace USERS
    ORA-39125: Worker unexpected fatal error in KUPW$WORKER.CREATE_OBJECT_ROWS while calling FORALL [TABLE]
    ORA-30032: the suspended (resumable) statement has timed out
    ORA-01691: unable to extend lob segment EXPORT_DB.SYS_LOB0000108750C00039$$ by 128 in tablespace USERS
    ORA-06512: at "SYS.DBMS_SYS_ERROR", line 116
    ORA-06512: at "SYS.KUPW$WORKER", line 6320
    ----- PL/SQL Call Stack -----
    object line object
    handle number name
    0xe7b96ae8 15032 package body SYS.KUPW$WORKER
    0xe7b96ae8 6372 package body SYS.KUPW$WORKER
    0xe7b96ae8 5710 package body SYS.KUPW$WORKER
    0xe7b96ae8 2202 package body SYS.KUPW$WORKER
    0xe7b96ae8 6944 package body SYS.KUPW$WORKER
    0xe7b96ae8 1314 package body SYS.KUPW$WORKER
    0xed614df8 2 anonymous block
    Job "EXPORT_DB"."SYS_EXPORT_FULL_02" stopped due to fatal error at 09:18:16
    [oracle@vhcop080423 scripts]$ ORA-06512: at "SYS.DBMS_SYS_ERROR", line 116ORA-39171: Job is experiencing a resumable wait.
    Any idea?
    Thank you
    Alberto Rico

    Good morning
    Thank you for your answer.
    The problem are the size of SYS_EXPORT_FULL tables. Can you tell me if exist a process to delete SYS_EXPORT_FULL tables? why after export Oracle doesn't delete this table? Do I have to delete SYS_EXPORT_FULL table after every expdp?
    ARA

  • EXPDP error while exporting

    Hi,
    We have a TEST RAC database on 2 nodes and we had refreshed it last week with prod data.
    Now ,the problem is that while performing EXPDP for a schema we are getting following error:
    [oracle@idfcrac2 ~]$ expdp system/manager123# schemas=nfo directory=nfo_test dumpfile=nfo.dmp logfile=expdp_nfo.log
    Export: Release 10.2.0.4.0 - 64bit Production on Friday, 15 April, 2011 16:47:50
    Copyright (c) 2003, 2007, Oracle. All rights reserved.
    Connected to: Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - 64bit Production
    With the Partitioning, Real Application Clusters, OLAP, Data Mining
    and Real Application Testing options
    Starting "SYSTEM"."SYS_EXPORT_SCHEMA_01": system/******** schemas=nfo directory=nfo_test dumpfile=nfo.dmp logfile=expdp_nfo.log
    Estimate in progress using BLOCKS method...
    Processing object type SCHEMA_EXPORT/TABLE/TABLE_DATA
    ORA-39125: Worker unexpected fatal error in KUPW$WORKER.GET_TABLE_DATA_OBJECTS while calling DBMS_METADATA.FETCH_XML_CLOB []
    ORA-31642: the following SQL statement fails:
    BEGIN "DMSYS"."DBMS_DM_MODEL_EXP".SCHEMA_CALLOUT(:1,0,1,'10.02.00.04.00'); END;
    ORA-06512: at "SYS.DBMS_SYS_ERROR", line 86
    ORA-06512: at "SYS.DBMS_METADATA", line 907
    ORA-06550: line 1, column 7:
    PLS-00201: identifier 'DMSYS.DBMS_DM_MODEL_EXP' must be declared
    ORA-06550: line 1, column 7:
    PL/SQL: Statement ignored
    ORA-06512: at "SYS.DBMS_SYS_ERROR", line 95
    ORA-06512: at "SYS.KUPW$WORKER", line 6307
    ----- PL/SQL Call Stack -----
    object line object
    handle number name
    0x76870118 15032 package body SYS.KUPW$WORKER
    0x76870118 6372 package body SYS.KUPW$WORKER
    0x76870118 9206 package body SYS.KUPW$WORKER
    0x76870118 1936 package body SYS.KUPW$WORKER
    0x76870118 6944 package body SYS.KUPW$WORKER
    0x76870118 1314 package body SYS.KUPW$WORKER
    0x7708fc00 2 anonymous block
    Job "SYSTEM"."SYS_EXPORT_SCHEMA_01" stopped due to fatal error at 16:47:57
    I tried EXP too but no result
    Can some one tell hoiw to resolev this issue.
    Help is appreciated.
    Regards,
    Milan

    Hello,
    ORA-39125: Worker unexpected fatal error in KUPW$WORKER.GET_TABLE_DATA_OBJECTS while calling DBMS_METADATA.FETCH_XML_CLOB []
    ORA-31642: the following SQL statement fails:
    BEGIN "DMSYS"."DBMS_DM_MODEL_EXP".SCHEMA_CALLOUT(:1,0,1,'10.02.00.04.00'); END;
    ORA-06512: at "SYS.DBMS_SYS_ERROR", line 86
    ORA-06512: at "SYS.DBMS_METADATA", line 907
    ORA-06550: line 1, column 7:
    PLS-00201: identifier 'DMSYS.DBMS_DM_MODEL_EXP' must be declared
    ORA-06550: line 1, column 7:
    PL/SQL: Statement ignoredThe following Note of My Oracle Support may help you to solve this error:
    Database Data Pump Export fails with PLS-00201 identifier DMSYS.DBMS_MODEL_EXP must be declared [ID 304449.1]Hope this help.
    Best regards,
    Jean-Valentin

Maybe you are looking for