Strange behaviour of Log Miner

Hi Friends,
This was the test I did. I created a function to add log redo log file to dbms_logmnr, I added it from command line and also from a cursor reading from a table. But the latter does not seem to work.
Am I missing something ? Please help.
SQL*Plus: Release 10.2.0.1.0 - Production on Thu Sep 2 15:25:52 2010
Copyright (c) 1982, 2005, Oracle. All rights reserved.
Connected to:
Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - 64bit Production
With the Partitioning, OLAP and Data Mining options
SQL> set serveroutput on;
SQL> CREATE OR REPLACE PROCEDURE test_mine (
2 log_file VARCHAR2
3 )
4 IS
5 BEGIN
6 --start logminer
7 DBMS_OUTPUT.put_line ('Log File' || log_file);
8 SYS.DBMS_LOGMNR.add_logfile (logfilename => log_file,
9 options => SYS.DBMS_LOGMNR.NEW);
10 END;
11 /
Procedure created.
SQL> exec test_mine('/applns/oracle/oradata/CBA01/redo02.log');
Log File/applns/oracle/oradata/CBA01/redo02.log
PL/SQL procedure successfully completed.
SQL> select * from audit_redo_logs;
LOG_FILE_NM
FILE_CREA P TMSTMP
CMT_TXT
'/applns/oracle/oradata/CBA01/redo02.log'
02-SEP-10 N 02-SEP-10
SQL> DECLARE
2 v_log VARCHAR2 (100);
3 BEGIN
4 FOR i IN (SELECT log_file_nm
5 FROM audit_redo_logs)
6 LOOP
7 DBMS_OUTPUT.put_line (' Log file ' || i.log_file_nm);
8 test_mine (i.log_file_nm);
9 DBMS_OUTPUT.put_line (' Log file ' || i.log_file_nm);
10 END LOOP;
11 END;
12 /
Log file '/applns/oracle/oradata/CBA01/redo02.log'
Log File'/applns/oracle/oradata/CBA01/redo02.log'
DECLARE
ERROR at line 1:
ORA-01284: file '/applns/oracle/oradata/CBA01/redo02.log' cannot be opened
ORA-00308: cannot open archived log ''/applns/oracle/oradata/CBA01/redo02.log''
ORA-27037: unable to obtain file status
Linux-x86_64 Error: 2: No such file or directory
Additional information: 3
ORA-06512: at "SYS.DBMS_LOGMNR", line 68
ORA-06512: at "CTS_BAD01.TEST_MINE", line 8
ORA-06512: at line 8
SQL>
Many Thanks,
SSN

SSNair wrote:
Hi Friends,
This was the test I did. I created a function to add log redo log file to dbms_logmnr, I added it from command line and also from a cursor reading from a table. But the latter does not seem to work.
Am I missing something ? Please help.
SQL*Plus: Release 10.2.0.1.0 - Production on Thu Sep 2 15:25:52 2010
Copyright (c) 1982, 2005, Oracle. All rights reserved.
Connected to:
Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - 64bit Production
With the Partitioning, OLAP and Data Mining options
SQL> set serveroutput on;
SQL> CREATE OR REPLACE PROCEDURE test_mine (
2 log_file VARCHAR2
3 )
4 IS
5 BEGIN
6 --start logminer
7 DBMS_OUTPUT.put_line ('Log File' || log_file);
8 SYS.DBMS_LOGMNR.add_logfile (logfilename => log_file,
9 options => SYS.DBMS_LOGMNR.NEW);
10 END;
11 /
Procedure created.
SQL> exec test_mine('/applns/oracle/oradata/CBA01/redo02.log');
Log File/applns/oracle/oradata/CBA01/redo02.log
PL/SQL procedure successfully completed.
SQL> select * from audit_redo_logs;
LOG_FILE_NM
FILE_CREA P TMSTMP
CMT_TXT
'/applns/oracle/oradata/CBA01/redo02.log'
02-SEP-10 N 02-SEP-10
SQL> DECLARE
2 v_log VARCHAR2 (100);
3 BEGIN
4 FOR i IN (SELECT log_file_nm
5 FROM audit_redo_logs)
6 LOOP
7 DBMS_OUTPUT.put_line (' Log file ' || i.log_file_nm);
8 test_mine (i.log_file_nm);
9 DBMS_OUTPUT.put_line (' Log file ' || i.log_file_nm);
10 END LOOP;
11 END;
12 /
Log file '/applns/oracle/oradata/CBA01/redo02.log'
Log File'/applns/oracle/oradata/CBA01/redo02.log'
DECLARE
ERROR at line 1:
ORA-01284: file '/applns/oracle/oradata/CBA01/redo02.log' cannot be opened
ORA-00308: cannot open archived log ''/applns/oracle/oradata/CBA01/redo02.log''
ORA-27037: unable to obtain file status
Linux-x86_64 Error: 2: No such file or directory
Additional information: 3
ORA-06512: at "SYS.DBMS_LOGMNR", line 68
ORA-06512: at "CTS_BAD01.TEST_MINE", line 8
ORA-06512: at line 8
SQL>
Many Thanks,
SSNI'd say the error message
ORA-01284: file '/applns/oracle/oradata/CBA01/redo02.log' cannot be opened
ORA-00308: cannot open archived log ''/applns/oracle/oradata/CBA01/redo02.log''
ORA-27037: unable to obtain file status
Linux-x86_64 Error: 2: No such file or directoryshould be pretty self explanatory.

Similar Messages

  • APEX Listener and EPG - strange behaviour

    Hi
    For some years, I've used EPG for APEX but have struggled with performance particularly as I can have up to 150 student developers using at any one time.
    I do a fair amount of work using ORDImage and have successfully developed APEX applications to upload image files and display full-size and thumbnail images.
    After upgrading to APEX 4.1 (from 4.0), I decided to install APEX Listener standalone.
    Before I did so I checked that my applications still worked in 4.1 and they did.
    However, just installing APEX Listener but not configuring it (yet) has meant that my image display in a report using a procedure based on wpg_docload.download_file( l_ordimage_image.source.localData ) no longer works in EPG - the images are not displayed.
    Configuring APEX Listener and running the same application through that DOES display the images.
    So this part of the application works under APEX Listener but not under EPG.
    My application also allows users to upload images from APEX_APPLICATION_FILES using standard code. Under APEX Listener after uploading, I'm left with a blank page with a wwv_flow.accept URL although the image does indeed upload. Under EPG it works as expected and I get a success confirmation.
    So this part of the application works under EPG but not under APEX Listener.
    Has anyone else come across different behaviour depending on the mode of connection?
    Thanks
    Brian
    [Oracle EE 11gR2, Windows Server 2008R2, APEX 4.1, APEX Listener 1.1.3]

    Hi Brian,
    it sounds like you have both EPG and APEX Listener running on the same machine, so your problem might result from a port conflict. Note that both services use TCP port 8080 as default.
    At least a port conflict would explain the strange behaviour in your case, some things working on one web server and some on the other.
    Some parts of your initial post hint to that direction, e.g.
    However, just installing APEX Listener but not configuring it (yet) has meant that my image display in a report using a procedure based on >wpg_docload.download_file( l_ordimage_image.source.localData ) no longer works in EPG - the images are not displayed.... because the APEX Listener only interfere with the EPG if it is at least running on the same machine as your database and furthermore, if it is unconfigured in terms of ist database connection, a port conflict might be the only way it could cause anything like that.
    However, if you are sure that's not the issue, please check if you see any error in the APEX Listener's log for the following action you performed:
    My application also allows users to upload images from APEX_APPLICATION_FILES using standard code. Under APEX Listener after uploading, I'm left with a blank >page with a wwv_flow.accept URL although the image does indeed uploadIf you actually see just a blank screen, something very bad must have happened and you should see some kind of stack trace there.
    For further investigations, if necessary, it would be helpful to know how you deployed or started your APEX Listener and which JDK version you use.
    For the moment, I still think the port conflict is my best guess.
    You could avoid it by either changing the port for EPG (I'd not recommend that if you have other users still using it) or by changing the port for your APEX Listener.
    -Udo

  • Strange behaviour from new 2012R2 in old domain

    Hi all,
    At work (education level), I'm starting to take charge of windows admin, so beiing a noob admin I'm finding strange behaviours that I hope you can help me solve them all :-)
    We've one (big) domain with about 5000 computers (workers and students all together), and around 50000 users (again, workers and students all together) setup like this:
    DC-DOMAIN-1:
    Windows Server 2008R2
    Shares NETLOGON and SYSVOL
    DC-DOMAIN-2:
    Windows Server 2003 R2 x64
    Shares CertEnroll, NETLOGON, SMSLOGON, SYSVOL
    Checking RootDSE, I see 'domainControllerFunctionaly is Windows 2003' (DC-DOMAIN-2)
    So, with this setup, I've noticed these strange behaviours, hope list isn't too big  (guess there will be more behaviours but these seemed too odd):
    1) On DC-DOMAIN-2, WinServer 2003 eventlog, inside 'Directory Service', I found this warning event ID 1083 (Source NTDS Replication):
    Active Directory could not update the following object with changes received from the domain controller at the following network address because Active Directory was busy processing information.
    Object:CN=<an user name>, CN=Users, DC=DOMAIN
    Usually followed by an information event (eventid 1955) which says:
    ctive Directory encountered a write conflict when applying replicated changes to the following object.
    Object:
    <SAME USER OBJECT THAN PREVIOUS EVENT ID>
    Time in seconds:
    0
    Event log entries preceding this entry will indicate whether or not the update was accepted.
    A write conflict can be caused by simultaneous changes to the same object or simultaneous changes to other objects that have attributes referencing this object. This commonly occurs when the object represents a large group with many members, and the functional level of the forest is set to Windows 2000. This conflict triggered additional retries of the update. If the system appears slow, it could be because replication of these changes is occurring.
    User Action
    Use smaller groups for this operation or raise the functional level to Windows Server 2003.
    And having as result that user being blocked in domain.
    2) I've added a new print server based on Windows Server 2012R2 (running inside an updated ESX 5.5 with VMXNET3 ethernet adapter as recommended by vmware), and seen in the event viewer these warnings/errors:
    At System log:
    Error Event ID 5783, Source NETLOGON:
    The session setup to the Windows NT or Windows 2000 Domain Controller \\DC-DOMAIN-2.fulldns.name for the domain DOMAIN is not responsive. The current RPC call from Netlogon on \\PRINTSERVER to \\DC-DOMAIN-2.fulldns.name has been cancelled.
    I've seen Event ID 5783 with DC-DOMAIN-1 too....
    Error Event ID 5719, Source NETLOGON:
    This computer was not able to set up a secure session with a domain controller in domain DOMAIN due to the following:
    The remote procedure call failed and did not execute.
    This may lead to authentication problems. Make sure that
    this computer is connected to the network. If the problem persists, please contact your domain administrator.
    ADDITIONAL INFO:
    If this computer is a domain controller for the specified domain, it sets up the secure session to the primary domain controller emulator in the specified domain. Otherwise, this computer sets up the secure session to any domain controller in the specified domain.
    At Microsoft-Windows-TerminalServices-RemoteConnectinoManager/Admin found also this warning:
    Warning Event ID 20499 Source TerminalServices-RemoteConnectionManager:
    Remote Desktop Services has taken too long to load the user configuration from server \\DC-DOMAIN-2.fulldns.name for user administrator
    3) If I try Group Policy Modeling on DC-DOMAIN-1 (server 2008R2), everything works fine, no matter if I try it against DC-DOMAIN-1 or DC-DOMAIN-2, but if I try this from the Server 2012R2 (the one from point 2), I get this:
    Simulation against DC-DOMAIN-2: Gets executed, but all GPO show as inaccessible, empty or disabled.
    Simulation against DC-DOMAIN-1: Sometimes it gets executed as DC-DOMAIN-2, sometimes I get an error saying query can't be executed.
    4) From server 2012R2, I usually manage printing GPO. If I click on the domain root (GPMC, forest, Domains, DOMAIN-NAME-ROOT) right pane, I get a pop up saying: 
    'A processing error ocurred collecting data using this base domain controller. Please change the base domain controller and try again'
    After closing popup, right pane says something like 'DC-DOMAIN-2.fulldns.name' is the baseline domain controller for this domain.
    No infrastructure Status information exists for this domain.
    Click the Detect Now button below to gather infrastructure status from all of the domain controllers in this domain.
    Pressing 'Detect Now' does nothing, and trying to select New Baseline DC shows again same pop up than before.
    5) Last, but not least, I've feeling that GPO takes too much to apply. I've found scenarios in which even after executing 'gpupdate /force' correctly on client computer either local or domain admin, I can't see the new changes (gpresult says it has been
    updated though). But couldn't find anything on eventlog that informs about problems with GPOs...
    For all these strange behaviours I've noticed in last month that I started checking things as sys admin, I believe domain is damaged, or something is wrong there (not just my new server 2012R2, even if it's running inside an ESX, blehh), so please, any hint
    on what to check, what to change, what to fix, would be highly appreciated.
    Thanks in advance.

    Hi Paul,
    Honestly, I'm still trying to figure out all broken things reported by tests :( Guess Jesper's suggestion about adding a new 2008 DC to get rid of 2003 and start checking again after that may be best option.
    I'll try to summarize list of things I believe are wrong:
    running
    DCDIAG /V /C /D /E /s:yourdcname > c:\dcdiag.log  for every DC, shows different errors. They show things such as:
    another domain running here (not administered by us, only relationship is that our users are shared with that domain, nothing else) appear when Printing out pDsInfo (as if they were DC of our domain too, but they do not even share RootDomain). Guess it
    may be for a bug old sys admin had when clonning from his 2008R2 template, that forgot to change SID... I already noticed 1 year ago our print server shared SID with those DC, guess there may be more servers sharing SID too :-(
    Within Starting test: Replications, I see few messages at Replication Latency Check, such as the one for CN=Schema, CN=Configuration, DC=<ourdomain>: 
    Latency information for 35 entries in the vector were ignored.
                      35 were retired Invocations.  0 were either: read-only replicas and are not verifiably latent, or dc's no longer replicating this nc.  0 had no latency information (Win2K DC)
    On Services test, I see an 
       Invalid service type: RpcSs on DC-DOMAIN-3, current value
                WIN32_OWN_PROCESS, expected value WIN32_SHARE_PROCESS
    On SystemLog, I see LOTS of warnings/errors such as:
    A warning event occurred.  EventID: 0x80000002
                Time Generated: 07/28/2014   08:21:54
                (Event String (event log = System) could not be retrieved, error
                0x503)
             An error event occurred.  EventID: 0xC0000003
                Time Generated: 07/28/2014   08:22:18
                (Event String (event log = System) could not be retrieved, error
                0x3afc)
    Missing entries on DNS (we've a static DNS)
    netdiag.exe /v > c:\netdiag.log Showed again DNS problems such as our primary DNS pointing to all DC, secondary
    DNS pointing just to DC with FSMO roles,...
    repadmin.exe /showrepl * /verbose /all /intersite > c:\repl.txt  Gave no errors, now I must check in detail
    if every replica is correct
    And finally,
    dnslint /ad /s "ip address of your dc"  gave more DNS problems:
    One or more DNS servers may not be authoritative for the domain
    One or more DNS servers did not respond to UDP queries
    One or more zone files may have expired
    SOA record data was unavailable and/or missing on one or more DNS servers
    Sumarizing, guess it will be better to fix DNS problems, promote new 2008R2 DC to get rid of 2003 one, promote domain to 2008 too, check again for messages and relationship with other domain, and then come back here for support if needed 
    EDIT: Almost forgot to talk about SYSVOL folder. As said before, there are 426 GPO folders inside Policies. Of them, 375 have an inetres.adm files in it (smallest one 1398 KB, almost all of them 2307 or 2707 kb).... 

  • Strange behaviour in Mail

    I have ongoing strange behaviour with Mail in Mountain Lion on a MacBook Pro.
    As well as randomly and intermitttently dropping connections to my various mail servers, I also, randomly and intermittently, fail to get to Print, or to create a new Mailbox, or to Quit. I just get a beep.
    Have to quit Mail - sometimes forcibly, and restart it.
    Mail will not automatically reconnect to servers after a Sleep , or moving to a differnt location.
    None of this was happenning on an older MacBook, but I was running 10.7 on that machine.
    Had to upgrade machine to allow upgrade to Mountain Lion.  Not sure which is responsible - new MB PRo , or 10.8?!
    Do I really have to re-install OSX  just to reinstall Mail?
    Any other pointers/hints very welcome.
    Thanks

    Please follow these directions to delete the Mail "sandbox" folder.
    Back up all data.
    Triple-click the line below on this page to select it:
    ~/Library/Containers/com.apple.mail
    Right-click or control-click the highlighted line and select
    Services ▹ Reveal
    from the contextual menu.* A Finder window should open with a folder named "com.apple.mail" selected. If it does, move the selected folder — not just its contents — to the Desktop. Leave the Finder window open for now.
    Log out and log back in. Launch Mail and test. If the problem is resolved, you may have to recreate some of your Mail settings. You can then delete the folder you moved and close the Finder window. If you still have the problem, quit Mail again and put the folder back where it was, overwriting the one that may have been created in its place. Post your results.
    Caution: If you change any of the contents of the sandbox, but leave the folder itself in place, Mail may crash or not launch at all. Deleting the whole sandbox will cause it to be rebuilt automatically.
    *If you don't see the contextual menu item, copy the selected text to the Clipboard (command-C). In the Finder, select
    Go ▹ Go to Folder...
    from the menu bar, paste into the box that opens (command-V). You won't see what you pasted because a line break is included. Press return.

  • Strange behaviour BOXI R2

    Post Author: Ermakov Alexey
    CA Forum: .NET
    using System;using System.Data;using System.Configuration;using System.Web;using System.Web.Security;using System.Web.UI;using System.Web.UI.HtmlControls;using System.Web.UI.WebControls;using CrystalDecisions.Enterprise;using BusinessObjects.ReportEngine;using BusinessObjects.Enterprise.Desktop;using System.IO;using System.Runtime.InteropServices;using System.Collections;namespace BusinessObjectsInteroperation{     public class BusinessObjectsInterop     {          public void GetBinaryReportByName(string NameOfTheReport, Stream StreamForDataBeWritten, BOConfigs BOCfg, OutputFormatType OutputFormat, Hashtable PromptValues)          {               EnterpriseSession enterpriseSession = null;               ReportEngines reportEngines = null;               SessionMgr sessionMgr = new SessionMgr();               try               {                    enterpriseSession = sessionMgr.Logon(BOCfg.BO_LoginName, BOCfg.BO_Password, BOCfg.BO_MachineToConnect, BOCfg.BO_LoginType);               }               catch (COMException exc)               {                    int HRESULT = exc.ErrorCode;                    switch (HRESULT)                    {                         case -2147210751:                              throw new ArgumentException(" BO_MachineToConnect");                         case -2147211005:                              throw new ArgumentException(" BO_LoginName");                         case -2147211006:                              throw new ArgumentException(" BO_Password");                         case -2147210653:                              throw new ArgumentException(" BO_LoginType");                         default:                              throw new ArgumentException("");                    }               }               InfoStore iStore = (InfoStore)enterpriseSession.GetService("InfoStore");               UserInfo userInfo = enterpriseSession.UserInfo;               if (enterpriseSession != null)               {                    if (reportEngines == null)                    {                         int iMinuteNumber = 1;                         int iLogonNumber = 1;                          string strToken = enterpriseSession.LogonTokenMgr.CreateWCAToken("", iMinuteNumber, iLogonNumber);                         reportEngines =  new ReportEngines(strToken);                    }               }                              IReportEngine reportEngine = reportEngines.getService(ReportEngineType.FC_ReportEngine);               FullClient ReportToPrint = (FullClient)getReport(iStore, NameOfTheReport, CrystalDecisions.Enterprise.InfoStore.CeKind.FullClient);               IDocumentInstance doc = null;               try               {                    doc = reportEngine.OpenDocument(ReportToPrint.ID); //ERROR Happens here               }               catch(Exception e)               {                    Console.Write(e.StackTrace);               }                              doc.Refresh();               IPrompts prompts = doc.GetPrompts();               foreach (IPrompt ip in prompts)               {                    string OnlyOneValue="";                    try                    {                         OnlyOneValue = (string)PromptValues&#91;ip.Name&#93;;                    }                    catch(IndexOutOfRangeException exc)                    {                         throw new ArgumentException(String.Format("Отчет {0} имеет необходимый параметр , который не был предоставлен.", NameOfTheReport, ip.Name), exc);                    }                    string&#91;&#93; vlArr = ; //Почему одному IPrompt надо передавать массив значений остается загадкой.                    ip.EnterValues(vlArr);               }               doc.SetPrompts();               IBinaryView docBinaryView = (IBinaryView)doc.GetView(OutputFormat);               docBinaryView.WriteContent(StreamForDataBeWritten);               doc.CloseDocument();                              reportEngine.Close();               reportEngines.Close();               iStore.Dispose();               enterpriseSession.Logoff();               enterpriseSession.Dispose();                                        }                    private InfoObject getReport(InfoStore iStore, string Name, string Kind)          {               InfoObjects list = null;               string query = String.Format(@"                SELECT                     SI_ID,                     SI_NAME,                          SI_PARENTID,                         SI_KIND,                          SI_INSTANCE,                          SI_DESCRIPTION                     FROM                         CI_INFOOBJECTS                     WHERE                          SI_KIND='{0}' AND                         SI_NAME=''", Kind, Name);                list = iStore.Query(query);               if (list.Count == 0)               {                    throw new Exception(String.Format("На сервере не существует отчета с именем {0}, его необходимо создать. Либо у вас нет на него прав.", Name));               }               if (list.Count > 1)               {                    throw new Exception(String.Format("На сервере существует более одного отчета с именем {0}, удалите неверный.", Name));               }               foreach (InfoObject obj in list)               {                    return obj;               }               return null;          }          public void ReportInPdfToHTTPResponse(string NameOfTheReport, params Par&#91;&#93; Prompts)          {               Hashtable PromptValues = new Hashtable();               foreach (Par p in Prompts)               {                    PromptValues.Add(p.Key, p.Value);               }               HttpResponse Response = HttpContext.Current.Response;               Response.Clear();               Response.ContentType = "application/pdf";               Response.AddHeader("Content-Type", "application/pdf");               Response.Expires = 0;               GetBinaryReportByName(NameOfTheReport, Response.OutputStream, new BOConfigs(), OutputFormatType.Pdf, PromptValues);               Response.Flush();               Response.End();          }          public void ReportInXlsToHTTPResponse(string NameOfTheReport, params Par&#91;&#93; Prompts)          {               Hashtable PromptValues = new Hashtable();               foreach (Par p in Prompts)               {                    PromptValues.Add(p.Key, p.Value);               }               HttpResponse Response = HttpContext.Current.Response;               Response.Clear();               Response.ContentType = "application/vnd.ms-excel";               Response.AddHeader( "Content-Type", "application/vnd.ms-excel");               Response.Expires = 0;               GetBinaryReportByName(NameOfTheReport, Response.OutputStream, new BOConfigs(), OutputFormatType.Xls, PromptValues);               Response.Flush();               Response.End();          }               }     } I have this code, but it has strange behaviour.When I restart IIS and run this function first time, I get an ArgumentOutOfRangeException in reportEngine.OpenDocument(ReportToPrint.ID);But the most strange thing is that Visual Studia shows me exception dialog and if I press Continue, then it works good.On more strange thing I get about this Code. From time to time server shows me such error:An unhandled exception of type 'BusinessObjects.ThirdParty.OOC.OB.AssertionFailed' occurred in businessobjects.enterprise.sdk.netmodule Additional information: ORBacus encountered an internal error

    Post Author: Ermakov Alexey
    CA Forum: .NET
         mscorlib.dll!System.String.LastIndexOf(char value, int startIndex) + 0x13 bytes           log4net.dll!log4net.Repository.Hierarchy.Hierarchy.UpdateParents(log4net.Repository.Hierarchy.Logger log = {log4net.Repository.Hierarchy.DefaultLoggerFactory.LoggerImpl}) + 0x1cf bytes           log4net.dll!log4net.Repository.Hierarchy.Hierarchy.GetLogger(string name = ".cctor", log4net.Repository.Hierarchy.ILoggerFactory factory = {log4net.Repository.Hierarchy.DefaultLoggerFactory}) + 0x12b bytes           log4net.dll!log4net.Repository.Hierarchy.Hierarchy.GetLogger(string name = ".cctor") + 0x46 bytes           log4net.dll!log4net.Core.LoggerManager.GetLogger(System.Reflection.Assembly repositoryAssembly = {System.Reflection.Assembly}, string name = ".cctor") + 0x94 bytes           log4net.dll!log4net.LogManager.GetLogger(System.Reflection.Assembly repositoryAssembly = {System.Reflection.Assembly}, string name = ".cctor") + 0x1b bytes           log4net.dll!log4net.LogManager.GetLogger(string name = ".cctor") + 0x1e bytes           businessobjects.enterprise.sdk.netmodule!BusinessObjects.Enterprise.Lib.Tracing.CELogger.CELogger(string name = ".cctor") + 0x20 bytes           businessobjects.enterprise.sdk.netmodule!BusinessObjects.Enterprise.Lib.Tracing.TraceManager.LoggerFactoryHelper.makeLogger(string name = ".cctor") + 0x35 bytes           businessobjects.enterprise.sdk.netmodule!BusinessObjects.Enterprise.Lib.Tracing.TraceManager.getLogger(string name = ".cctor") + 0x4a bytes           businessobjects.enterprise.sdk.netmodule!BusinessObjects.Enterprise.Infostore.Internal.AbstractSchedulableObject..cctor() + 0x23 bytes           businessobjects.enterprise.sdk.netmodule!BusinessObjects.Enterprise.Infostore.Internal.SchedulableInfoObject.SchedulableInfoObject() + 0xf bytes           businessobjects.enterprise.sdk.netmodule!BusinessObjects.Enterprise.Infostore.Internal.InfoObjects.newInfoObject(System.Object plgKey = ) + 0xbb bytes           businessobjects.enterprise.sdk.netmodule!BusinessObjects.Enterprise.Infostore.Internal.InfoObjects.continueUnpack(BusinessObjects.Enterprise.OcaFramework.Oca.InfoStore.info_wire_ob3&#91;&#93; wireObjs = {Length=0x1}) + 0x40a bytes           businessobjects.enterprise.sdk.netmodule!BusinessObjects.Enterprise.Infostore.Internal.InfoObjects.startUnpack(BusinessObjects.Enterprise.Security.Internal.ISecuritySession session = {BusinessObjects.Enterprise.Security.Internal.SecuritySession}, BusinessObjects.Enterprise.Infostore.IInfoStore infoStore = {BusinessObjects.Enterprise.Infostore.Internal.InfoStore}, BusinessObjects.Enterprise.OcaFramework.Oca.InfoStore.info_wire_ob3&#91;&#93; wireObjs = {Length=0x1}) + 0x9b bytes           businessobjects.enterprise.sdk.netmodule!BusinessObjects.Enterprise.Infostore.Internal.InfoStore.queryHelper(string query = "SELECT SI_MACHINE, SI_MACHINECHOICE from CI_INFOOBJECTS WHERE SI_ID=2762", BusinessObjects.Enterprise.Infostore.Internal.InfoObjects objs = {BusinessObjects.Enterprise.Infostore.Internal.InfoObjects}) + 0x149 bytes           businessobjects.enterprise.sdk.netmodule!BusinessObjects.Enterprise.Infostore.Internal.InfoStore.Query(string query = "SELECT SI_MACHINE, SI_MACHINECHOICE from CI_INFOOBJECTS WHERE SI_ID=2762") + 0x2f bytes           businessobjects.enterprise.sdk.netmodule!BusinessObjects.Enterprise.Ras21.RASConnection.initServerSpec(BusinessObjects.Enterprise.OcaFramework.ServerSpec serverSpec = {BusinessObjects.Enterprise.OcaFramework.ServerSpec}) + 0x30d bytes           businessobjects.enterprise.sdk.netmodule!BusinessObjects.Enterprise.Ras21.RASConnection.init(BusinessObjects.Enterprise.Ras21.IRASConnectionInitService i_initService = <undefined value>) + 0x422 bytes           businessobjects.enterprise.sdk.netmodule!BusinessObjects.Enterprise.Ras21.RASConnection.RASConnection(string i_sServerKind = "dpscacheFullClient", BusinessObjects.Enterprise.Ras21.Messages.GetConnection i_getConnection = {BusinessObjects.Enterprise.Ras21.Messages.GetConnection}, System.IO.Stream i_documentStream = <undefined value>, BusinessObjects.Enterprise.Ras21.IRASConnectionInitService i_initService = <undefined value>, BusinessObjects.Enterprise.Ras21.Serialization.IServerDeserializerFactory i_deserializerFactory = {BusinessObjects.Enterprise.Ras21.RASConnectionFactory.RASConnectionServerSerializationFactory}, BusinessObjects.Enterprise.Ras21.Serialization.IServerSerializerFactory i_serializerFactory = {BusinessObjects.Enterprise.Ras21.RASConnectionFactory.RASConnectionServerSerializationFactory}) + 0x18a bytes           businessobjects.enterprise.sdk.netmodule!BusinessObjects.Enterprise.Ras21.RASConnectionFactory.getRASConnection(string i_sServerKind = "CrystalEnterprise.FullClient", System.Globalization.CultureInfo i_locale = {System.Globalization.CultureInfo}, BusinessObjects.Enterprise.Security.Internal.ISecuritySession i_secSession = {BusinessObjects.Enterprise.Security.Internal.SecuritySession}, BusinessObjects.Enterprise.Ras21.Messages.GetConnection.DocumentId i_documentId = {BusinessObjects.Enterprise.Ras21.Messages.GetConnection.DocumentId}, System.IO.Stream i_documentStream = <undefined value>, BusinessObjects.Enterprise.Ras21.IRASConnectionInitService i_initService = <undefined value>) + 0x156 bytes           businessobjects.enterprise.sdk.netmodule!BusinessObjects.Enterprise.Ras21.RASConnectionFactory.getRASConnectionObjectId(string i_sServerKind = "CrystalEnterprise.FullClient", System.Globalization.CultureInfo i_locale = {System.Globalization.CultureInfo}, BusinessObjects.Enterprise.Security.Internal.ISecuritySession i_secSession = {BusinessObjects.Enterprise.Security.Internal.SecuritySession}, int i_nObjectId = 0xaca) + 0x108 bytes           businessobjects.reportengine.fc.dll!BusinessObjects.ReportEngine.FC.ras21.XMLviaRAS21Encode.newSession(BusinessObjects.ReportEngine.FC.ras21.RAS21SessionID i_occaSession = {BusinessObjects.ReportEngine.FC.ras21.RAS21SessionID}, string i_sLocale = "en-US", int i_nDocId = 0xaca, string s_iConnID = "1") + 0x107 bytes           businessobjects.reportengine.fc.dll!BusinessObjects.ReportEngine.FC.ras21.RAS21ReportEngineComAdapter.InitRAS21Connection(BusinessObjects.ReportEngine.FC.ras21.RAS21SessionID i_occaSession = {BusinessObjects.ReportEngine.FC.ras21.RAS21SessionID}, string i_sLocale = "", bool i_bNewDoc = false, int i_nDocId = 0xaca, string i_sConnID = "1") + 0x1d bytes           businessobjects.reportengine.fc.dll!BusinessObjects.ReportEngine.FC.ras21.RAS21ReportEngineComAdapter.openDocument(BusinessObjects.ReportEngine.Internal.Utilities.Storage.IStorageManager storageManager = {BusinessObjects.ReportEngine.Internal.Utilities.Storage.ClusterStorageManager}, string sLocale = "", int docID = 0xaca) + 0xde bytes           businessobjects.reportengine.fc.dll!BusinessObjects.ReportEngine.FC.ReportEngineImpl.OpenDocument(int docID = 0xaca) + 0x107 bytes     >     businessobjectinteroperation.dll!BusinessObjectsInteroperation.BusinessObjectsInterop.GetBinaryReportByName(string NameOfTheReport = "DO_Raport", System.IO.Stream StreamForDataBeWritten = {System.Web.HttpResponseStream}, BusinessObjectsInteroperation.BOConfigs BOCfg = {BusinessObjectsInteroperation.BOConfigs}, BusinessObjects.ReportEngine.OutputFormatType OutputFormat = Pdf, System.Collections.Hashtable PromptValues = {Count=0x3}) Line 80 + 0x22 bytes     C#

  • Communication Channel Strange Behaviour

    Hi,
    We are facing a strange behaviour with communication channel monitoring in RWB for JMS Adapter.
    I am sending data from IDoc to JMS. Message is processed successfully inside Integration Engine of PI.Message monitoring in RWB shows status successful.But ,if I monitor communication channel in RWB, under cluster node --> cluster node for Channel 'X' shows status green & in short log - I got an message "JMS message processed successfully at 2009-04-17|05:25:06+0100;JMS & XI identifiers are ID :414d515 & 457e345 respectively".
    This information is always updated, when i run my interface & shows the latest three enteries there with information provided above in bold.
    But if i see the processing details for Cluster node (Where we usually see the processing of message with its Message ID), there is no entry with Time Stamp & message ID & explanation.
    Any idea why such a behaviour?
    Thanks,
    Venky

    Hi,
    hmmmm..........strange............
    just check if you have multiple server nodes and you are selecting the server node with msg processing and then whether in processing details you are seeing your msgs or not............
    also check if the msgs are processed just now or are processed some hours ago - if they are processed some hours ago then may be you do not have their processing details available currently but if they are processed just now, then you should be able to see their processing details..........
    if the problem remains, then ask your basis guys to restart your XI J2EE engine and see if you then able to get processing details for your new msgs.........
    Regards,
    Rajeev Gupta

  • Strange behaviour when using connection pooling with proxy authentication

    All
    I have developed an ASP.NET 1.1 Web application that uses ODP.NET 9.2.0.4 accessing Oracle Database 8i (which is to be upgraded to 10g in the coming months). I have enabled connection pooling and implemented proxy authentication.
    I am observing a strange behaviour in the live environment. If two users (User 1 and User 2) are executing SQL statements at the same time (concurrent threads in IIS), the following is occurring:
    * User 1 opens a new connection, executes a SELECT statement, and closes this connection. The audit log, which uses the USER function, shows User 1 executed this statement.
    * User 2 opens the same connection (before it is released to the connection pool?), excutes an INSERT statement, and closes this connection. The audit log shows User 1, not User 2, executed this statement.
    Is this a known issue when using connection pooling with proxy authentication? I appreciate your help.
    Regards,
    Chris

    Hi Chris,
    I tried to reproduce your complaint, but was unable to. I didnt use auditting however, just a series of "select user from dual" with proxy authentication. You might want to see if you can put together a small complete testcase for this and open a sr with support.
    Cheers
    Greg

  • Strange behaviour in web cartographic application

    Hi group,
    I have noticed a strange behaviour with the overview tool of my web application with MapInfo data uploaded in Oracle 10g with EasyLoader. When I put the cursor near the limit of some polygons but outside of its surface, the overview tool shows the info of this polygon when it should show the info of the neighbor polygon. It's like if the boundary of the polygon is outside of its limit but visually the borders are looking good.
    After many tests, I think the problem may be related with the tolerance precision and the table bounds in sdo_metadata. The table is in lat/long (8307) and the tolerance setted by Easyloader is X: 7.9013E-6 and Y:1.01201E-5
    In MapInfo I gave this bounds to the table: min x: -82.0483359 min y: 43.2322719 max x: -54.6521931 max y: 64.3415211 but when loaded in Oracle the bounds are automatically set to -180/180 and -90/90
    I tried to change the tolerance and the bounds in Oracle and create a new spatial index without success. Changing the bounds in MapInfo prior uploading to Oracle was unsuccessfull as well.
    Anything else could be tryed?
    Thank you
    Maxime D.

    Maxime,
    Didn't you contact me privately about something like this? No matter.
    the tolerance setted by Easyloader is X: 7.9013E-6 and Y:1.01201E-5These tolerances are not what Oracle says should be set for geodetic (8307) data. From the documentation...
    The tolerance value for geodetic data should not be smaller than 0.05 (5 centimeters)You can do one of two things:
    1. If you have SQL Developer, install GeoRaptor and then right mouse click on the table in the connect pane and select Metadata Manager. Then calculate XY values and if GeoRaptor doesn't set the tolerances to 0.05 do it manually. Then press Update.
    2. Using SQLPlus or SQL Developer's SQL Worksheet, do this:
    update user_sdo_geom_metadata
    set diminfo = SDO_DIM_ARRAY(SDO_DIM_ELEMENT(-82.0483359,-54.6521931,0.05),
                                SDO_DIM_ELEMENT(43.2322719,64.3415211,0.05)),
           SRID = 8307
    where table_name = YOUR TABLE
      and column_name = YOUR SDO_GEOMETRY COLUMN NAME;
    commit;NOTE: It is OK to have ordinate ranges different from -180..180, -90..90.
    Drop your index and rebuild.
    Should now be OK.
    If it starts to misbehave again (and the metadata has been changed) then all one could say is that perhaps the MapInfo software is modifying the metadata some how. Perhaps this is related to the MAPINFO_MAPCATALOG?
    Any MapInfo gurus know?
    regards
    Simon

  • [solved] AMD Radeon - strange behaviour after mesa-update

    Good afternoon Ladies and Gentlemen,
    This is my first posting, I will try to give as much as detailed information refering to my problem as possible. Please be patient if I ask for solutions which for you all seem easy and logical, I am a Newbie.
    The details: I am running a HP Pavilion 17 " AMD Quadcore laptop, 8gb Ram, Arch Linux 32bit Kernel 3.17.1 XFCE desktop with an AMD Radeon graphic card for about a few weeks now. Everything went fine so far, but last Saturday I did an update via pacman-Syu, the update included a mesa package. All went smooth as ever. Then after a reboot the XFCE desktop had stripes across the laptop screen, the mouse cursor had disappeared, also letters of the icon descriptions and the menus were missing, some strange "hieroglyphics" appeared instead of them. I wasn't able to downgrade the mesa-package as I nearly wasn't able to open the terminal because of the missing mouse cursor, then I managed somehow to get into the terminal and gave in the commands but the writing was incomplete and/or did not work because of these strange and missing letters.
    No problem, I thought to myself, a fresh install will do the work, so I wipped my hard drive using Parted Magic, then I did a fresh Arch install (Netinstall), this time using LXDE instead of XFCE as my desktop environment. When I booted into the login screen first, it looked fine but after logging into the desktop all the stripes, the missing mouse cursor and the strange letters appeared again. So is there any solution to that strange behaviour ? Before the Saturday-update everything worked without any problems for weeks. BTW other OS work without these problems, I tried Macpup just for fun, no messing-up with my Radeon graphics card happened.
    Sorry for my piss poor English I am Austrian. Sorry for eventually causing any inconvenience asking this question. Regards, Fladi.
    Last edited by fladi (2014-11-04 05:01:28)

    fafik1234 wrote:
    I have the same problem, free drivers, xfce4, procesor AMD5350(Kabini), vga radeon R3 (8400)
    downgrade linux kernel to linux-3.16.4
    download: http://seblu.net/a/arm/packages/l/linux … pkg.tar.xz
    pacma -U linux-3.16.4-1-i686.pkg.tar.xz
    edit /etc/pacman.conf
    IgnorePkg   =  linux linux-headers
    screenshot
    linux 3.17 xfce http://pics.tinypic.pl/i/00592/ek3z3ip81ky2.png
    linux 3.17 compiz http://pics.tinypic.pl/i/00592/bddprwn4tey8.png
    linux 3.16 compiz http://pics.tinypic.pl/i/00592/ja5ma8c7rdgl.png
    On a laptop, free drivers, linux 3.17.1-pae, openbox, procesor core i5, vga integrated card - everything OK
    The screenshots you posted match exactly to my problem ! Are you really sure the bug is coming from Kernel 3.17 ? I had this kernel running for about a week without any problems, the problems came when updating mesa.

  • Strange Behaviour after re-installing the OS

    Hi people.
    Basically, i've been experiencing some strange behaviour with Safari since re-installing my OS. I'm running Safari 3.0.4, and i'm on a G4 iBook running 10.4.11.
    Firstly, it's not remembering passwords and user names to a few sites. My homepage is set to a Auto Forum i use daily. Now, when putting your password in you can check a little box that says 'Automatically log me in each time i visit'. I tick the box, when Safari ask's if i want the password to remembered i say yes. log-in as normal. If i then go away from the page and come back to it without quitting Safari, it's asking me to log in again. It remembers my password details etc, but doesn't perform the auto login like it used to. I've reset Safari, cleared Cookies, Cache etc, but to no avail. It's becoming quite annoying!
    Secondly-the scroll bar on the right side of the screen keeps disappearing-and when it does, i can't manually scroll down the pages with the arrow keys either. Any thoughts? If manually moving from site to site, it's ok-it's when i access my bookmarks page and the scrollbar disappears, that it seems to remove it for good. I then have to quit Safari and re-launch it. But then i'm back to square one! If i need the favourites, i'm stuffed!
    Any help appreciated...
    Dan

    Hi!
    Thanks for the reply! I've started to download the update, got Pacifist already so it's just a case of the download finishing. I'm a bit worried though, i ran disk utility earlier and it came up with 2 errors, one of which couldn't be repaired. I hope it's not the HD on it's way out and causing problems as the new HD isn't even a year old yet...
    I get a bold red message when using Disk Utility, which reads:
    "Invalid Leaf record count
    (Should be 2 instead of 46)
    1 Volume could not be repaired"
    I guess i'll give the Safari thing a go, then go for Disk Utility as per the other thread. Don't really want to wipe the HD and do another install-only done one 2 weeks ago!

  • 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

  • Aliases file - Strange Behaviour

    Greetings all,
    I've been having some strange behaviour with my Postfix installations lately. My logfiles are filled with intermittent entries of:
    Oct 17 18:52:10 xserve1 postfix/smtpd[4117]: table hash:/etc/aliases(0,lock|fold_fix) has changed -- restarting
    Oct 17 18:52:12 xserve1 postfix/local[4129]: table hash:/etc/aliases(0,lock|no_regsub|no_proxy|no_unauth|fold_fix) has changed -- restarting
    This would seem to be a minor nuissance, but unfortunately it seems that mails are arriving in the second or two it takes for Postfix to restart, and are getting rejected or delayed because the service isn't available.
    Looking at the /etc/aliases/postfix file, something seems to be intermittently touching it. I don't see any changes to the file content, but the modification date is updated, and an extended (@) file attribute is added for "com.apple.TextEncoding".
    The only recent changes I have made to my config were to enable SASL with some directives ("smtpd_tls_auth_only = yes" for example) to ensure proper security.
    My servers are running 10.6.5 and 10.6.4. Any suggestions would be appreciated. Thanks.

    Looking at the logs, I'm begining to suspect that the offender is "com.apple.wikid.mailinglists". I don't use group mailing lists so I've disabled this item by adding disabled-true to its plist. Hopefully this solves the problem.

  • Ace 4710 strange behaviour

    Hi, We have two ACE-4710-K9 (named LB01 and LB02) configured in HA mode. Besides Admin, on each of them there are tree context configured, named, ACADEMIC, COMMERCIAL, STREAMING. On LB01 the active context is ACADEMIC. On LB02 the active contexts are COMMERCIAL and STREAMING. Each context is configured with a FrontEnd and a BackEnd Vlan interface, and a "management" Vlan interface used for accessing and monitoring the device and for the downloading of the needed ssl certificates. Recently we upgraded the devices to Version A3(2.6) form a previous A3(2.4). After that upgrade we experienced some strange behaviour. From the context in STANDBY state we are not able to ping the host on the "management" Vlan interface, while there is no problem on the other Vlans. We see that the ICMP packets are sent to the Vlan, are replayed by the remote host BUT are not received at all on the LB01 or LB02. No messages in the log. Trying with 5 consecutive (failed) ping we can see that the counters of unicast packet output on LB01/LB02 Vlan is incremented by 5 BUT the unicast packets input counters is unchanged even if the remote host sent the replays. In the STREAMING context this behaviour isn't constant, ie the ping *sometimes* starts working for a few second and then returns to stop. In the other standby context the ping never works instead. In the active context all works fine. This strange problem prevents us to load the ssl certificates in the STANDBY context from the "management" Vlan. We was not able to find any reference to a similar problem in the Cisco documentation or Tac collection, so we are curious to know wheter someone else experienced such a behaviour. Thank you and best regards. Alessandro Asson - CINECA

    Thanks,
    I see you are using shared VLAN config in both ACE.
    Same VLAN 1000 is used for both Admin and streaming context.
    In this config, you may need to use the shared-vlan-host-id command as explained here:
    http://www.cisco.com/en/US/docs/app_ntwk_services/data_center_app_services/ace_appliances/vA3_1_0/configuration/routing_bridging/guide/vlansif.html#wp1025243
    In fact as explained:
    'By default, the bank of MAC addresses that the ACE uses is randomly selected at boot time. However, if you configure two ACE appliances in the same Layer 2 network and they are using shared VLANs, the ACEs may select the same address bank, which results in the use of the same MAC addresses. To avoid this conflict, you must configure the bank that the ACEs will use.'
    This would also reply to your question in the readme file:
    SHOW ARP TABLE ON THE D01,D02,D07 ROUTERS SHOWS THE SAME MAC ADDRESS FOR
    BOTH IP ADDRESSES OF LB01 AND LB02: is that normal ??
    Hope this helps,
    Dom.

  • Strange Behaviour in Pentium IV machine

    Hi all. I put this post in Java HotSpot forum, but that forum seems not to be as popular as this, so I've decided to post it here too.
    I've been reading posts in this forum (and another in this site) for more than a week trying to find any idea that could help me with my "strange" problem, but with no success.
    I've developed an application that manages some info stored in Mysql. My developing machine is a Pentium II (400MHz) with Red Hat 7.3 Valhalla installed. I use Mysql 3.23.49 and J/Connector (version 2.0.14) downloaded from Mysql site and JRE version 1.4.1.-b21.
    The production machine is a Pentium IV (1.60 GHz) , with the same Red Hat version, the same JRE version and Mysql 3.23.51.
    Well, in developing machine I am able to run up to 4 instances of the application witout crashing, only decreasing timing performance. But in production machine, I get and "strange" behaviour. Sometimes (1 of each 10 times) the application crashes (even the machine crashes sometimes), and I get Hot Spot log files (hs_err_pid####.log) like these
    Type 1 ------------------------------------->
    Unexpected Signal : 11 occurred at PC=0x403291D8
    Function=skip_method_invoke_and_aux_frames__12vframeStream+0x58
    Library=/usr/java/j2sdk1.4.1/jre/lib/i386/client/libjvm.so
    Current Java thread:
    at java.security.AccessController.doPrivileged(Native Method)
    at sun.io.Converters.getDefaultEncodingName(Converters.java:66)
    at java.lang.StringCoding.decode(StringCoding.java:226)
    at java.lang.String.<init>(String.java:383)
    at com.mysql.jdbc.Buffer.readLenString(Unknown Source)
    at com.mysql.jdbc.MysqlIO.getResultSet(Unknown Source)
    at com.mysql.jdbc.MysqlIO.sqlQueryDirect(Unknown Source)
    at com.mysql.jdbc.MysqlIO.sqlQuery(Unknown Source)
    at com.mysql.jdbc.Connection.execSQL(Unknown Source)
    - locked <0x448f92d0> (a com.mysql.jdbc.jdbc2.IO)
    at com.mysql.jdbc.Connection.execSQL(Unknown Source)
    at com.mysql.jdbc.Statement.executeQuery(Unknown Source)
    - locked <0x448f92d0> (a com.mysql.jdbc.jdbc2.IO)
    at com.mysql.jdbc.jdbc2.Statement.executeQuery(Unknown Source)
    at GeneraTablaDiasCerrados.<init>(GeneraTablaDiasCerrados.java:99)
    at GeneraTablaDiasCerrados.main(GeneraTablaDiasCerrados.java:425)
    Type 2------------------------------------------------>
    Unexpected Signal : 11 occurred at PC=0x424AC980
    Function=sqlQueryDirect (//or nextRow//) (compiled Java code) (or nextRow)
    Library=(N/A)
    Current Java thread: (//No output in this case//)
    Type 3------------------------------------------------------>
    An unexpected exception has been detected in native code outside the VM.
    Unexpected Signal : 11 occurred at PC=0x4212E3B0
    Function=(null)+0x4212E3B0
    Library=java
    NOTE: We are unable to locate the function name symbol for the error
    just occurred. Please refer to release documentation for possible
    reason and solutions.
    Current Java thread:
    at java.net.SocketInputStream.socketRead0(Native Method)
    at java.net.SocketInputStream.read(SocketInputStream.java:129)
    at java.io.BufferedInputStream.fill(BufferedInputStream.java:183)
    at java.io.BufferedInputStream.read(BufferedInputStream.java:201)
    - locked <0x44901b38> (a java.io.BufferedInputStream)
    at com.mysql.jdbc.MysqlIO.readPacket(Unknown Source)
    at com.mysql.jdbc.MysqlIO.sendCommand(Unknown Source)
    at com.mysql.jdbc.MysqlIO.sqlQueryDirect(Unknown Source)
    at com.mysql.jdbc.MysqlIO.sqlQuery(Unknown Source)
    at com.mysql.jdbc.Connection.execSQL(Unknown Source)
    - locked <0x448f92e8> (a com.mysql.jdbc.jdbc2.IO)
    at com.mysql.jdbc.Connection.execSQL(Unknown Source)
    at com.mysql.jdbc.Statement.executeQuery(Unknown Source)
    - locked <0x448f92e8> (a com.mysql.jdbc.jdbc2.IO)
    at com.mysql.jdbc.jdbc2.Statement.executeQuery(Unknown Source)
    at GeneraTablaDiasCerrados.<init>(GeneraTablaDiasCerrados.java:99)
    at GeneraTablaDiasCerrados.main(GeneraTablaDiasCerrados.java:425)
    ---------------------------------------------->
    After this text, I get Dynamic libraries info.
    I can't figure out what's happening. I have read in these forums that Signal 11 is about Segmentation Fault, or JVM trying to write in forbidden positions.
    Later I read that JVM could crash on Pentium IV processors under certain circumstances, but isn't those issues supossed to be fixed in version 1.4.1?
    The last trail I'm following is J/Connector, because in error messages type 2 and 3 are involved mysql classes. But it doesn't explain the fact that in developing machine everything runs properly.
    I also consider the posibility of corrupted files in hard disk, but all of them seem to be OK (sizes in production machine matches those in developing machine).
    Can anyone help me showing me another trail to follow?
    Thanks to all in advance.
    Note: Please, forgive my English and the length of this post.

    Hi OMcGovern. Thanks for your answer.
    I've a couple of theorys,
    1) The second last stack trace call is for encoding.
    The basic US version of the JRE only supports about
    ut 8 basic encoding schemes. You could try running it
    with the international version of the JRE.
    ( To check version : if i18n.jar is in JRE's lib
    directory, it's the international version )I've checked it and I don't have the international version (not in production machine and not in developing machine). I downloaded the "Linux RPM in self-extracting file" version, (in both cases) and there is no choice for downloading any "international" version or something like this. I'll search for it in sun site. It seems to be a good guess to follow, because production machine is allocated in the USA, and developing machine is here in Spain.
    2) Running java -Xint ( interpreted mode ), might
    rule out any hotspot errors. It could give you more
    debugging information too.
    Worth a shot.I'm not running with that option.
    3) It doesn't quite make sense that the last stack
    trace entry is a
    security call, in an application. Are you doing
    ng anything strange ?
    Eg. writing your own classloaders or the like ?No I'm not doing. Maybe a problem with J/Connector, but my deep doubt and what's driving me crazy is : Why is runnig all ok (I was really proud of this fact because this is my first "big" app in Java) in my developing machine and crashing in production machine?
    I'll look for i18n.jar, will install it and let's see what happens..
    Thanks again.

  • Roaming Profiles / Wrong permissions? Strange Behaviour...

    Hi, got some problems with roaming windows profiles.
    Server: XServe G5 | Mac OS X 10.5 | working as PDC
    Client: Windows XP Professional SP2
    1. I'm able to connect with Windows-Client to PDC, newly created folders (e.g. on Desktop)
    are stored in the profile, also files / programs within this folders - when user logs off
    files and folders are stored properly.
    2. When I try to get the same profile at a second Windows-Client the profile could not be
    loaded because of that created file within that folder (1.).
    I get an Windows-Error-Message: "Error performing Inpage Operation"
    That only happens because of the saved /created files in the new created folders. When I create a folder, without saving a file inside, it works without problems. Profile settings are loaded properly.
    Here is the content of my samba config (with testparm) , hope that helps - I didn't make any modifications to that file manually. Would be really nice to get help with that strange behaviour.
    [global]
    dos charset = 437
    unix charset = UTF-8-MAC
    display charset = UTF-8-MAC
    workgroup = SKDL
    server string = skdl-pdc
    auth methods = guest, odsam
    map to guest = Bad User
    obey pam restrictions = Yes
    passdb backend = odsam
    log level = 2
    debug pid = Yes
    max xmit = 131072
    printcap name = cups
    add user script = /usr/bin/opendirectorypdbconfig -c createuseraccount -r %u -n /LDAPv3/127.0.0.1
    add machine script = /usr/bin/opendirectorypdbconfig -c createcomputeraccount -r %u -n /LDAPv3/127.0.0.1
    logon path = \\%N\profiles\%u
    logon drive = H:
    domain logons = Yes
    os level = 65
    preferred master = Yes
    domain master = Yes
    wins support = Yes
    usershare allow guests = Yes
    usershare allow full config = Yes
    usershare max shares = 1000
    usershare owner only = No
    usershare path = /var/samba/shares
    idmap domains = default
    idmap alloc backend = odsam
    idmap negative cache time = 5
    com.apple:filter shares by access = yes
    darwin_streams:brlm = yes
    idmap config default:backend = odsam
    idmap config default:default = yes
    ea support = Yes
    stream support = Yes
    use sendfile = Yes
    printing = cups
    print command =
    lpq command = %p
    lprm command =
    include = /var/run/smb.conf
    vfs objects = darwinacl, darwin_streams
    [netlogon]
    path = /etc/netlogon
    write list = @admin
    browseable = No
    strict locking = No
    [profiles]
    path = /Users/Profiles
    read only = No
    browseable = No
    strict locking = No
    [homes]
    comment = User Home Directories
    read only = No
    create mask = 0750
    browseable = No
    root preexec = /usr/sbin/inituser %U
    com.apple:show admin all volumes = no
    [printers]
    comment = All Printers
    path = /tmp
    create mask = 0700
    printable = Yes
    browseable = No
    ----------------

    try using cacls to check the access control on the files and directories

Maybe you are looking for