ETL Stops but no error logged

Hi All,
I have an ETL that runs ok in several environments, but having just migrated it to a new UAT environment we are experiencing regular unexplained shutdowns.
There are no failed tasks, it just stops. This message appears in theserver logs.
1861 SEVERE Thu Aug 16 22:46:05 BST 2012 ETL seems to have completed. Invoking shut down dispatcher after the notification from the last running task.
1862 SEVERE Thu Aug 16 22:46:05 BST 2012 Finishing ETL Process.
The last task to complete was an SDE, this has an associated SIL which hasn't run, so why does the DAC think the ETL has finished?
I see there have been similar posts in teh past, but the fifference here is that more than three hundred tasks had completed ok, and when I restart the ETL it will run the rest ok.
Any ideas anyone?
thanks
Ed

Hello Florian,
may be the usual problem of an active index during loading of a datacube. The index maintainance has to recreate the indizes while loading, and it have to do this in parallel if you have more than one data package loading. This may mean deadlock or memory problems.
Please drop the index of the Cube (Manage->Performance->Delte Index (Now)) and retry your load. Don't forget to rebuild the index after load.
You can do this in a process chain too.
Kind regards,
Jürgen

Similar Messages

  • [11g] Datapump Export "job_state" comes back "STOPPED" but no error in log.

    Hello,
    First of all, here are the SQL statements that I'm executing:
    BEGIN :JobId := Dbms_DataPump.Open(operation => 'EXPORT', job_mode => 'TABLE'); END;
    BEGIN
      Dbms_DataPump.Add_File(handle => :JobId, filename => 'MYORACLEBACKUP1', directory => 'ABAT_DUMP_DIR', filetype => 1, reusefile => 1); --DMP
      Dbms_DataPump.Add_File(handle => :JobId, filename => 'MYORACLEBACKUP.log', directory => 'ABAT_DUMP_DIR', filetype => 3); --LOG
      Dbms_DataPump.Metadata_Filter(handle => :JobId, name => 'SCHEMA_LIST', value => '''PRTO9A''');
      Dbms_DataPump.Metadata_Filter(handle => :JobId, name => 'NAME_LIST', value => '''ALERTS''');
      Dbms_DataPump.Set_Parallel(handle => :JobId, degree => 1);
      Dbms_DataPump.Start_Job(handle => :JobId);
      Dbms_DataPump.Wait_For_Job(handle => :JobId, job_state => :JobState);
    END;Now, I actually construct this using C#, so "PRTO9A" and "ALERTS" are dynamically queried for. This means that they are definitely valid schemas / tables. Also, a consequence of using C# is that the two variables :JobId and :JobState come from the .NET implementation of this DB stuff (in other words, I specify "JobId" and "JobState" as input or output variables in the C# code before I run the query... JobId is an output variable in the first statement, but an input variable in the second one).
    The result is that "JobState" comes back "STOPPED," which is documented as an error:
    When WAIT_FOR_JOB returns, the job will no longer be executing. If the job completed normally, the final status will be Completed. If the job stopped executing because of a STOP_JOB request or an internal error, the final status will be Stopped.OK, so I get a "STOPPED" back, which means there's an error. Let me check the log file (MYORACLEBACKUP.log)...
    Starting "SYSTEM"."SYS_EXPORT_TABLE_01": 
    Estimate in progress using BLOCKS method...
    Processing object type TABLE_EXPORT/TABLE/TABLE_DATA
    Total estimation using BLOCKS method: 448 KB
    Processing object type TABLE_EXPORT/TABLE/TABLE
    Processing object type TABLE_EXPORT/TABLE/INDEX/INDEX
    Processing object type TABLE_EXPORT/TABLE/CONSTRAINT/CONSTRAINT
    Processing object type TABLE_EXPORT/TABLE/INDEX/STATISTICS/INDEX_STATISTICS
    Processing object type TABLE_EXPORT/TABLE/CONSTRAINT/REF_CONSTRAINT
    Processing object type TABLE_EXPORT/TABLE/STATISTICS/TABLE_STATISTICS
    . . exported "PRTO9A"."ALERTS"                           250.6 KB     316 rows
    Master table "SYSTEM"."SYS_EXPORT_TABLE_01" successfully loaded/unloaded
    Dump file set for SYSTEM.SYS_EXPORT_TABLE_01 is:
      C:\TMP\MYORACLEBACKUP1.DMP
    Job "SYSTEM"."SYS_EXPORT_TABLE_01" successfully completed at 12:30:03What the..? "... successfully completed at 12:30:03?" But I thought there was supposed to be an error?
    Any ideas?
    Thanks!
    EDIT: By the way, the "MYORACLEBACKUP1.DMP" file is actually created, and at a glance it looks valid. I haven't tried importing it yet.
    Edited by: bdzevel on Feb 11, 2013 9:38 AM

    OK I finally got around to trying "GET_STATUS." This issue looks deep.
    So, my original issue was that my "JOB_STATE" was coming back "Stopped" instead of "Completed." I did a "GET_STATUS" of a "Stopped" (but successful) job, and, as I expected, I got error_count 0, and the error table is null. Fine, so I will check the "GET_STATUS" if I get a "Stopped..."
    So I tried the complementary case, where I have a job that will fail. In this case, it's expected to get a "Stopped" status back (even though it's 'faulty' in the sense that it's ALWAYS "Stopped"). Checking the error_count, I get 0 back. WHAT!? AND the error table is STILL null! What the heck is going on?
    Here's my new SQL:
    DECLARE
      state VARCHAR2(15);
      output KU$_STATUS1010;
      errorTable KU$_LogEntry1010;
    BEGIN
      Dbms_DataPump.Add_File(handle => :JobId, filename => 'MYORACLEBACKUP_bdzevel1.dmp', directory => 'ABAT_DUMP_DIR', filetype => 1, reusefile => 1); --DMP
      Dbms_DataPump.Add_File(handle => :JobId, filename => 'MYORACLEBACKUP_bdzevel2.dmp', directory => 'ABAT_DUMP_DIR', filetype => 1, reusefile => 1); --DMP
      Dbms_DataPump.Add_File(handle => :JobId, filename => 'MYORACLEBACKUP_bdzevel.log', directory => 'ABAT_DUMP_DIR', filetype => 3); --LOG
      Dbms_DataPump.Metadata_Filter(handle => :JobId, name => 'SCHEMA_LIST', value => '''DATAPUMPUSER''');
      Dbms_DataPump.Metadata_Filter(handle => :JobId, name => 'NAME_LIST', value => '''MYTESTTABLE_FAKEEEE''');
      Dbms_DataPump.Set_Parallel(handle => :JobId, degree => 2);
      Dbms_DataPump.Start_Job(handle => :JobId);
      Dbms_DataPump.Wait_For_Job(handle => :JobId, job_state => :JobState);
      :ErrorMessage := '';
      IF upper(:JobState) = 'STOPPED' THEN
        Dbms_DataPump.Get_Status(handle => :JobId, mask => 15, timeout => NULL, job_state => state, status => output);
        errorTable := output.ERROR;
        IF errorTable IS NOT NULL AND errorTable.COUNT > 0 THEN
          FOR element in 1 .. errorTable.COUNT LOOP
            IF :ErrorMessage = '' THEN
              :ErrorMessage := :ErrorMessage || CHR(13) || CHR(10);
            END IF;
            :ErrorMessage := :ErrorMessage || TO_CHAR(errorTable(element).LOGLINENUMBER) || ': ORA' || TO_CHAR(errorTable(element).ERRORNUMBER) || ' - ' || errorTable(element).LOGTEXT;
          END LOOP;
        END IF;
        :ErrorMessage := :ErrorMessage || output.JOB_STATUS.JOB_NAME || ' ' || output.JOB_STATUS.ERROR_COUNT || ' ' || output.JOB_STATUS.STATE;
      END IF;
    END;The error I get back in both cases reads "SYS_TEXPORT_TABLE_04 0 COMPLETED" (which is in the format JOB_NAME ERROR_COUNT STATE, as you can see above), but in the latter case (a FAILED job... as you can see above, I have "MYTESTTABLE_FAKEEEE" as my table, which doesn't exist, and a consequence, the .log properly logs a failure.) I SHOULD be getting back something in output.ERROR or AT LEAST output.JOB_STATUS.ERROR_COUNT..... BUT output.ERROR is NULL and ERROR_COUNT is 0! What gives?
    P.S.> I logged an SR about this, since it looks like a pretty big issue, but maybe you guys can see something that I'm not seeing faster than the support rep.
    Edited by: bdzevel on Feb 21, 2013 1:18 PM

  • Command + R command gave strange Error Logs. Please help!

    I wanted to enter the recovery partition so to use disk utility. By using the cmd+r command after a restart my imac gave me the following error logs. I run 10.8.4 with an iMac12,2. Any ideas? Do I have to worry for something ?
    Nov 28 02:54:24 localhost opendirectoryd[101]: opendirectoryd (build 197.11.16) launched - installer mode
    Nov 28 02:54:24 localhost opendirectoryd[101]: Logging level limit changed to 'notice'
    Nov 28 02:54:24 localhost opendirectoryd[101]: Initialize trigger support
    Nov 28 02:54:24 localhost opendirectoryd[101]: created endpoint for mach service 'com.apple.private.opendirectoryd.rpc' with work limit 10
    Nov 28 02:54:24 localhost opendirectoryd[101]: set default handler for RPC 'reset_cache'
    Nov 28 02:54:24 localhost opendirectoryd[101]: set default handler for RPC 'reset_statistics'
    Nov 28 02:54:24 localhost opendirectoryd[101]: set default handler for RPC 'show'
    Nov 28 02:54:24 localhost opendirectoryd[101]: starting endpoint for service 'com.apple.private.opendirectoryd.rpc'
    Nov 28 02:54:24 localhost opendirectoryd[101]: no dynamic data found at '/System/Library/OpenDirectory/DynamicData/Configure.plist'
    Nov 28 02:54:24 localhost opendirectoryd[101]: Registered node with name '/Configure' as hidden
    Nov 28 02:54:24 localhost opendirectoryd[101]: no dynamic data found at '/System/Library/OpenDirectory/DynamicData/Local.plist'
    Nov 28 02:54:24 localhost opendirectoryd[101]: Registered node with name '/Local' as hidden
    Nov 28 02:54:28 localhost Unknown[283]: kern.boottime: { sec = 1385636060, usec = 0 } Thu Nov 28 02:54:20 2013
    Nov 28 02:54:28 localhost Unknown[291]: Launching the Language Chooser for an OS Install
    Nov 28 02:54:34 localhost configd[112]: bootp_session_transmit: bpf_write(en1) failed: Network is down (50)
    Nov 28 02:54:34 localhost configd[112]: DHCP en1: INIT transmit failed
    Nov 28 02:54:35 localhost Unknown[293]: 2013-11-28 02:54:35.609 LCA[292:707] NSSoftLinking - The Librarian framework's library couldn't be loaded from (null).
    Nov 28 02:54:35 localhost Unknown[293]: 2013-11-28 02:54:35.611 LCA[292:707] NSSoftLinking - The function 'LBCurrentProcessHasUbiquityContainer' can't be found in the Librarian framework.
    Nov 28 02:54:38 localhost Unknown[293]: 2013-11-28 02:54:38.575 LCA[292:707] LCA+BT2: systemHasBluetooth entry
    Nov 28 02:54:38 localhost Unknown[293]: 2013-11-28 02:54:38.575 LCA[292:707] LCA+BT2: [[NSProcessInfo processInfo] processName] LCA
    Nov 28 02:54:38 localhost Unknown[293]: 2013-11-28 02:54:38.575 LCA[292:707] LCA+BT2: systemHasBluetooth exit - controller = 0x7fd68b89ee70
    Nov 28 02:54:56 localhost configd[112]: subnet_route_if_index: can't get interface name
    Nov 28 02:54:56 localhost configd[112]: subnet_route: write routing socket failed, Network is unreachable
    Nov 28 02:55:30 imac-c82a141bdeb8.local ReportCrash[313]: LaunchServices/5123589: Unable to lookup coreservices session port for session 0x186a0 uid=0 euid=0
    Nov 28 02:55:30 imac-c82a141bdeb8.local ReportCrash[313]: LaunchServices/5123589: Unable to lookup coreservices session port for session 0x186a0 uid=0 euid=0
    Nov 28 02:55:30 imac-c82a141bdeb8.local ReportCrash[313]: LaunchServices/5123589: Unable to lookup coreservices session port for session 0x186a0 uid=0 euid=0
    Nov 28 02:55:30 imac-c82a141bdeb8.local ReportCrash[313]: LaunchServices/5123589: Unable to lookup coreservices session port for session 0x186a0 uid=0 euid=0
    Nov 28 02:55:30 imac-c82a141bdeb8.local ReportCrash[313]: LaunchServices/5123589: Unable to lookup coreservices session port for session 0x186a0 uid=0 euid=0
    Nov 28 02:55:31 imac-c82a141bdeb8.local Unknown[319]: Launching the Installer Crash Log Viewer
    Nov 28 02:55:31 imac-c82a141bdeb8.local opendirectoryd[101]: 313.1 - Client: ReportCrash, UID: 0, EUID: 0, GID: 0, EGID: 0
    Nov 28 02:55:31 imac-c82a141bdeb8.local opendirectoryd[101]: 313.1 - ODNodeCreateWithNameAndOptions request, SessionID: 00000000-0000-0000-0000-000000000000, Name: /Local/Default, Options: 0x0
    Nov 28 02:55:31 imac-c82a141bdeb8.local opendirectoryd[101]: 313.1 - loading configuration for '/Local' from '/System/Library/OpenDirectory/Configurations/Local.plist'
    Nov 28 02:55:31 imac-c82a141bdeb8.local opendirectoryd[101]: Loaded bundle at path '/System/Library/OpenDirectory/Modules/PlistFile.bundle'
    Nov 28 02:55:31 imac-c82a141bdeb8.local opendirectoryd[101]: 313.1 - unable to find authentication module 'ConfigurationProfiles'
    Nov 28 02:55:31 imac-c82a141bdeb8.local opendirectoryd[101]: 313.1 - unable to find service discovery callback for module 'PlistFile'
    Nov 28 02:55:31 imac-c82a141bdeb8.local opendirectoryd[101]: Registering for network changes
    Nov 28 02:55:31 imac-c82a141bdeb8.local opendirectoryd[101]: Registered subnode with name '/Local/Default'
    Nov 28 02:55:31 imac-c82a141bdeb8.local opendirectoryd[101]: 313.1.2 - Block: nodestate '/Local/Default'
    Nov 28 02:55:31 imac-c82a141bdeb8.local opendirectoryd[101]: 101.3 - Block: nodestate '/Local'
    Nov 28 02:55:31 imac-c82a141bdeb8.local opendirectoryd[101]: failed to open local node for internal record copy
    Nov 28 02:55:31 imac-c82a141bdeb8.local opendirectoryd[101]: Registering for power changes
    Nov 28 02:55:31 imac-c82a141bdeb8.local opendirectoryd[101]: 101.3 - nodestate - flagging '/Local' online
    Nov 28 02:55:31 imac-c82a141bdeb8.local opendirectoryd[101]: 101.3 - Block completed
    Nov 28 02:55:31 imac-c82a141bdeb8.local opendirectoryd[101]: Registering for network power changes
    Nov 28 02:55:31 imac-c82a141bdeb8.local opendirectoryd[101]: 313.1.2, Module: PlistFile - Node is 10.7 or later
    Nov 28 02:55:31 imac-c82a141bdeb8.local opendirectoryd[101]: 313.1.2 - nodestate - flagging '/Local/Default' online
    Nov 28 02:55:31 imac-c82a141bdeb8.local opendirectoryd[101]: 313.1.2 - Block completed
    Nov 28 02:55:31 imac-c82a141bdeb8.local opendirectoryd[101]: 313.1, Node: /Local/Default - node assigned UUID - D007781B-E470-4F83-86E3-F01D31437BE7
    Nov 28 02:55:31 imac-c82a141bdeb8.local opendirectoryd[101]: 313.1, Node: /Local/Default - ODNodeCreateWithNameAndOptions completed
    Nov 28 02:55:31 imac-c82a141bdeb8.local opendirectoryd[101]: 313.4 - Client: ReportCrash, UID: 0, EUID: 0, GID: 0, EGID: 0
    Nov 28 02:55:31 imac-c82a141bdeb8.local opendirectoryd[101]: 313.4 - ODNodeCopyDetails request, NodeID: D007781B-E470-4F83-86E3-F01D31437BE7, Keys: dsAttrTypeStandard:NodePath
    Nov 28 02:55:31 imac-c82a141bdeb8.local opendirectoryd[101]: 313.4, Node: /Local/Default, Module: PlistFile - ODNodeCopyDetails completed, delivered 1 result
    Nov 28 02:55:31 imac-c82a141bdeb8.local opendirectoryd[101]: 313.5 - Client: ReportCrash, UID: 0, EUID: 0, GID: 0, EGID: 0
    Nov 28 02:55:31 imac-c82a141bdeb8.local opendirectoryd[101]: 313.5 - ODNodeRelease request, NodeID: D007781B-E470-4F83-86E3-F01D31437BE7
    Nov 28 02:55:31 imac-c82a141bdeb8.local opendirectoryd[101]: 313.5, Node: /Local/Default - ODNodeRelease completed
    Nov 28 02:55:31 imac-c82a141bdeb8.local opendirectoryd[101]: 313.6 - Client: ReportCrash, UID: 0, EUID: 0, GID: 0, EGID: 0
    Nov 28 02:55:31 imac-c82a141bdeb8.local opendirectoryd[101]: 313.6 - ODNodeCreateWithNameAndOptions request, SessionID: 00000000-0000-0000-0000-000000000000, Name: /Search, Options: 0x0
    Nov 28 02:55:31 imac-c82a141bdeb8.local opendirectoryd[101]: 313.6 - ODNodeCreateWithNameAndOptions failed with error 'Unknown node name' (2000)
    Nov 28 02:55:31 imac-c82a141bdeb8.local opendirectoryd[101]: 313.7 - Client: ReportCrash, UID: 0, EUID: 0, GID: 0, EGID: 0
    Nov 28 02:55:31 imac-c82a141bdeb8.local opendirectoryd[101]: 313.7 - ODNodeCreateWithNameAndOptions request, SessionID: 00000000-0000-0000-0000-000000000000, Name: /Search, Options: 0x0
    Nov 28 02:55:31 imac-c82a141bdeb8.local opendirectoryd[101]: 313.7 - ODNodeCreateWithNameAndOptions failed with error 'Unknown node name' (2000)
    Nov 28 02:55:31 imac-c82a141bdeb8.local opendirectoryd[101]: 313.8 - Client: ReportCrash, UID: 0, EUID: 0, GID: 0, EGID: 0
    Nov 28 02:55:31 imac-c82a141bdeb8.local opendirectoryd[101]: 313.8 - ODNodeCreateWithNameAndOptions request, SessionID: 00000000-0000-0000-0000-000000000000, Name: /Local/Default, Options: 0x0
    Nov 28 02:55:31 imac-c82a141bdeb8.local opendirectoryd[101]: 313.8, Node: /Local/Default - node assigned UUID - C9885CC8-CC38-4278-9CA5-3468E29AA81E
    Nov 28 02:55:31 imac-c82a141bdeb8.local opendirectoryd[101]: 313.8, Node: /Local/Default - ODNodeCreateWithNameAndOptions completed
    Nov 28 02:55:31 imac-c82a141bdeb8.local opendirectoryd[101]: 313.9 - Client: ReportCrash, UID: 0, EUID: 0, GID: 0, EGID: 0
    Nov 28 02:55:31 imac-c82a141bdeb8.local opendirectoryd[101]: 313.9 - ODQueryCreateWithNode request, NodeID: C9885CC8-CC38-4278-9CA5-3468E29AA81E, RecordType(s): dsRecTypeStandard:Users, Attribute: dsAttrTypeStandard:RecordName, MatchType: Any, Equality: CaseIgnore, Value(s): dsRecordsAll, Requested Attributes: dsAttrTypeStandard:GeneratedUID,dsAttrTypeNative:LinkedIdentity,dsAttrTypeStand ard:RealName,dsAttrTypeStandard:GroupMembership,dsAttrTypeStandard:Picture,dsAtt rTypeStandard:UserCertificate,dsAttrTypeStandard:AppleMetaNodeLocation,dsAttrTyp eStandard:RecordType,dsAttrTypeStandard:Comment,dsAttrTypeStandard:NestedGroups, dsAttrTypeStandard:PrimaryGroupID,dsAttrTypeStandard:AuthenticationAuthority,dsA ttrTypeStandard:Keywords,dsAttrTypeStandard:RecordName,dsAttrTypeStandard:JPEGPh oto,dsAttrTypeNative:_guest,dsAttrTypeStandard:AppleMetaRecordName,dsAttrTypeSta ndard:UserShell,dsAttrTypeStandard:GroupMembers,dsAttrTypeStandard:UniqueID,dsAt trTypeStandard:EMailAddress,dsAttrTypeStandard:NFSHomeDirectory, Max Results: 2147483647
    Nov 28 02:55:31 imac-c82a141bdeb8.local opendirectoryd[101]: 313.9, Node: /Local/Default, Module: PlistFile - ODQueryCreateWithNode completed, delivered 71 results
    Nov 28 02:55:31 imac-c82a141bdeb8.local opendirectoryd[101]: 313.10 - Client: ReportCrash, UID: 0, EUID: 0, GID: 0, EGID: 0
    Nov 28 02:55:31 imac-c82a141bdeb8.local opendirectoryd[101]: 313.10 - ODNodeRelease request, NodeID: C9885CC8-CC38-4278-9CA5-3468E29AA81E
    Nov 28 02:55:31 imac-c82a141bdeb8.local opendirectoryd[101]: 313.10, Node: /Local/Default - ODNodeRelease completed
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]: Process:         LCA [292]
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]: Path:            /Volumes/VOLUME/*/LCA.app/Contents/MacOS/LCA
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]: Identifier:      LCA
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]: Version:         24 (219)
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]: Code Type:       X86-64 (Native)
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]: Parent Process:  sh [108]
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]: User ID:         0
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]: 
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]: Date/Time:       2013-11-28 02:54:57.700 -0800
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]: OS Version:      Mac OS X 10.8 (12A269)
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]: Report Version:  10
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]: 
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]: Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]: 
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]: Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]: Exception Codes: EXC_I386_GPFLT
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]: 
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]: Application Specific Information:
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]: objc_msgSend() selector name: respondsToSelector:
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]: 
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]: 
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]: Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]: 0   libobjc.A.dylib                         0x000000010d8e2590 objc_msgSend_vtable5 + 16
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]: 1   com.apple.Bluetooth                     0x000000010d73bde8 -[IOBluetoothHostController BluetoothHCIEventNotification:] + 5617
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]: 2   com.apple.Bluetooth                     0x000000010d73a611 HostController_AsyncHCIEventsNotificationHandler + 343
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]: 3   com.apple.Bluetooth                     0x000000010d73a356 -[IOBluetoothNotification invokeCallbackWithData:dataSize:class:subClass:] + 121
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]: 4   com.apple.Bluetooth                     0x000000010d73a447 IOBluetoothNotificationLibDoHCIClientNotification + 212
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]: 5   com.apple.Bluetooth                     0x000000010d73fb22 IOBluetoothNotificationLibHCIRawEventHandler + 183
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]: 6   com.apple.CoreFoundation                0x000000010da1ab50 __CFMachPortPerform + 288
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]: 7   com.apple.CoreFoundation                0x000000010da1aa19 __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE1_PERFORM_FUNCTION__ + 41
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]: 8   com.apple.CoreFoundation                0x000000010da1a759 __CFRunLoopDoSource1 + 153
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]: 9   com.apple.CoreFoundation                0x000000010da4d8bf __CFRunLoopRun + 1775
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]: 10  com.apple.CoreFoundation                0x000000010da4cdd2 CFRunLoopRunSpecific + 290
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]: 11  com.apple.HIToolbox                     0x000000011012a774 RunCurrentEventLoopInMode + 209
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]: 12  com.apple.HIToolbox                     0x000000011012a454 ReceiveNextEventCommon + 166
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]: 13  com.apple.HIToolbox                     0x000000011012a3a3 BlockUntilNextEventMatchingListInMode + 62
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]: 14  com.apple.AppKit                        0x000000010c237fa3 _DPSNextEvent + 685
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]: 15  com.apple.AppKit                        0x000000010c237862 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 128
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]: 16  com.apple.AppKit                        0x000000010c22ec03 -[NSApplication run] + 517
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]: 17  com.apple.AppKit                        0x000000010c1d3656 NSApplicationMain + 869
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]: 18  libdyld.dylib                           0x000000010ea957e1 start + 1
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]: 
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]: Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]: 0   libsystem_kernel.dylib                  0x000000010ec73d16 kevent + 10
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]: 1   libdispatch.dylib                       0x000000010ea60e26 _dispatch_mgr_invoke + 883
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]: 2   libdispatch.dylib                       0x000000010ea60a2a _dispatch_mgr_thread + 54
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]: 
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]: Thread 2:
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]: 0   libsystem_kernel.dylib                  0x000000010ec736d6 __workq_kernreturn + 10
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]: 1   libsystem_c.dylib                       0x000000010eafdf2c _pthread_workq_return + 25
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]: 2   libsystem_c.dylib                       0x000000010eafdcf3 _pthread_wqthread + 412
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]: 3   libsystem_c.dylib                       0x000000010eae81b1 start_wqthread + 13
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]: 
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]: Thread 3:
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]: 0   libsystem_kernel.dylib                  0x000000010ec736d6 __workq_kernreturn + 10
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]: 1   libsystem_c.dylib                       0x000000010eafdf2c _pthread_workq_return + 25
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]: 2   libsystem_c.dylib                       0x000000010eafdcf3 _pthread_wqthread + 412
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]: 3   libsystem_c.dylib                       0x000000010eae81b1 start_wqthread + 13
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]: 
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]: Thread 4:: CVDisplayLink
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]: 0   libsystem_kernel.dylib                  0x000000010ec730fa __psynch_cvwait + 10
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]: 1   libsystem_c.dylib                       0x000000010eb00003 _pthread_cond_wait + 927
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]: 2   com.apple.CoreVideo                     0x0000000112b5ded5 CVDisplayLink::waitUntil(unsigned long long) + 271
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]: 3   com.apple.CoreVideo                     0x0000000112b5d23d CVDisplayLink::runIOThread() + 529
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]: 4   com.apple.CoreVideo                     0x0000000112b5d013 startIOThread(void*) + 148
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]: 5   libsystem_c.dylib                       0x000000010eafb782 _pthread_start + 327
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]: 6   libsystem_c.dylib                       0x000000010eae81c1 thread_start + 13
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]: 
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]: Thread 5:
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]: 0   libsystem_kernel.dylib                  0x000000010ec736d6 __workq_kernreturn + 10
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]: 1   libsystem_c.dylib                       0x000000010eafdf2c _pthread_workq_return + 25
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]: 2   libsystem_c.dylib                       0x000000010eafdcf3 _pthread_wqthread + 412
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]: 3   libsystem_c.dylib                       0x000000010eae81b1 start_wqthread + 13
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]: 
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]: Thread 6:
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]: 0   libsystem_kernel.dylib                  0x000000010ec736d6 __workq_kernreturn + 10
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]: 1   libsystem_c.dylib                       0x000000010eafdf2c _pthread_workq_return + 25
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]: 2   libsystem_c.dylib                       0x000000010eafdcf3 _pthread_wqthread + 412
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]: 3   libsystem_c.dylib                       0x000000010eae81b1 start_wqthread + 13
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]: 
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]: Thread 0 crashed with X86 Thread State (64-bit):
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]:   rax: 0x4000000000000000  rbx: 0x0000000000000000  rcx: 0x00007fd68b0214d8  rdx: 0x000000010d7d74fe
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]:   rdi: 0x00007fd68b89f990  rsi: 0x000000010d81e570  rbp: 0x00007fff540c0450  rsp: 0x00007fff540c03b8
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]:    r8: 0xffff8029773a335f   r9: 0x00000000000000ff  r10: 0x00007fd68bb06880  r11: 0x00007fd68a8501b0
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]:   r12: 0x00007fff540c0770  r13: 0x00007fd68b8a1610  r14: 0x00007fff540c0770  r15: 0x00007fd688c5cca0
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]:   rip: 0x000000010d8e2590  rfl: 0x0000000000010246  cr2: 0x0000000113959ff0
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]: Logical CPU: 1
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]: 
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]: Binary Images:
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]:        0x10bb3e000 -        0x10bb55ff7  com.apple.installer.LCA (24 - 219) <28E0F2A6-96EE-35F3-95F1-66F93B50CCC5> /Volumes/VOLUME/*/LCA.app/Contents/MacOS/LCA
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]:        0x10bb64000 -        0x10bec0ff7  com.apple.Foundation (6.8 - 945) <0C972F73-0C07-3384-98F2-B176E0289494> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]:        0x10c0e1000 -        0x10cd0bfff  com.apple.AppKit (6.8 - 1187) <C9309F5C-9441-3E5B-A120-B03FEDDA63F9> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]:        0x10d405000 -        0x10d40bfff  com.apple.DiskArbitration (2.5 - 2.5) <348AC0CC-6BCE-3416-9141-A5C1164EDDFF> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]:        0x10d41b000 -        0x10d5c9fff  com.apple.QuartzCore (1.8 - 304.0) <BDC66714-F60C-386D-A773-F897D1E87AB6> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]:        0x10d684000 -        0x10d684fff  com.apple.ApplicationServices (45 - 45) <A3ABF20B-ED3A-32B5-830E-B37831A45A80> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]:        0x10d687000 -        0x10d6f4ff7  com.apple.framework.IOKit (2.0 - 755.9.7) <9B7C5E7A-3F7A-3E70-8179-4384992B84E0> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]:        0x10d728000 -        0x10d728fff  com.apple.Carbon (154 - 155) <372716D2-6FA1-3611-8501-3DD1D4A6E8C8> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]:        0x10d731000 -        0x10d732fff  libScreenReader.dylib (264.2) <E8BFC2E1-798D-33F6-AFF4-3334DE24DDE8> /usr/lib/libScreenReader.dylib
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]:        0x10d738000 -        0x10d806ff7  com.apple.Bluetooth (4.0.9 - 4.0.9f8) <E74E0A5F-CAF9-39D8-8A95-61B74E87C995> /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]:        0x10d881000 -        0x10d8aafff  com.apple.BluetoothUI (4.0.9 - 4.0.9f8) <FEB90940-BA76-3D7A-BE74-89E0E2E01BF0> /System/Library/Frameworks/IOBluetoothUI.framework/Versions/A/IOBluetoothUI
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]:        0x10d8d3000 -        0x10d8d4ff7  libSystem.B.dylib (169.3) <365477AB-D641-389D-B8F4-A1FAE9657EEE> /usr/lib/libSystem.B.dylib
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]:        0x10d8db000 -        0x10d9f3a27  libobjc.A.dylib (532) <9FA80CDA-97F4-3801-8879-0C1B976BC5CA> /usr/lib/libobjc.A.dylib
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]:        0x10da18000 -        0x10dc01fff  com.apple.CoreFoundation (6.8 - 744) <47AEA7C7-EF9B-3FC6-AEBF-CE02FC650301> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]:        0x10dd5e000 -        0x10dd5fff8 +cl_kernels (???) <4BA7ECBF-1A14-415B-B9BC-225344F47F09> cl_kernels
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]:        0x10dd62000 -        0x10ddaeff7  libauto.dylib (185.1) <73CDC482-16E3-3FC7-9BB4-FBA2DA44DBC2> /usr/lib/libauto.dylib
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]:        0x10ddc9000 -        0x10dfc9fff  libicucore.A.dylib (491.11.1) <17E8B610-6B16-3F91-B49C-7CAE0D08E9CF> /usr/lib/libicucore.A.dylib
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]:        0x10e071000 -        0x10e16eff7  libxml2.2.dylib (22.3) <47B09CB2-C636-3024-8B55-6040F7829B4C> /usr/lib/libxml2.2.dylib
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]:        0x10e1a8000 -        0x10e1baff7  libz.1.dylib (43) <2A1551E8-A272-3DE5-B692-955974FE1416> /usr/lib/libz.1.dylib
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]:        0x10e1c2000 -        0x10e335ff7  com.apple.CFNetwork (596.0.1 - 596.0.1) <82109BE9-19E2-399B-BACD-23D53814B873> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]:        0x10e3f4000 -        0x10e445fff  com.apple.SystemConfiguration (1.12 - 1.12) <7A8300B5-F5B3-39F0-A4B2-4C0C293FA29F> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]:        0x10e474000 -        0x10e741ff7  com.apple.security (7.0 - 55163.44) <E62305A2-958D-3EBC-B7E5-9A151D3E1777> /System/Library/Frameworks/Security.framework/Versions/A/Security
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]:        0x10e877000 -        0x10e877fff  com.apple.CoreServices (57 - 57) <9DD44CB0-C644-35C3-8F57-0B41B3EC147D> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]:        0x10e882000 -        0x10e883fff  liblangid.dylib (116) <864C409D-D56B-383E-9B44-A435A47F2346> /usr/lib/liblangid.dylib
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]:        0x10e889000 -        0x10e8aaff7  libCRFSuite.dylib (33) <736ABE58-8DED-3289-A042-C25AF7AE5B23> /usr/lib/libCRFSuite.dylib
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]:        0x10e8b5000 -        0x10e8b5ff1 +cl_kernels (???) <9F45F1DA-3A21-4C76-859B-0759A852BA9A> cl_kernels
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]:        0x10e8b7000 -        0x10e8cefff  com.apple.GenerationalStorage (1.1 - 132.1) <EAB41613-0145-3CE5-AA60-A8A791A3EE22> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]:        0x10e8da000 -        0x10e8daff9 +cl_kernels (???) <CC93B5AA-7BAA-4D54-9D1E-5BA34CE355CA> cl_kernels
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]:        0x10e8de000 -        0x10e8e1fff  com.apple.TCC (1.0 - 1) <DE7ECAC3-BD08-323A-9C12-EE4A49B72871> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]:        0x10e8eb000 -        0x10e953ff7  libc++.1.dylib (65.1) <20E31B90-19B9-3C2A-A9EB-474E08F9FE05> /usr/lib/libc++.1.dylib
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]:        0x10e9b2000 -        0x10e9d6ff7  libc++abi.dylib (24.2) <340E7C7B-DC93-3AA2-B015-B1C9541EC255> /usr/lib/libc++abi.dylib
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]:        0x10ea08000 -        0x10ea0dfff  libcache.dylib (57) <65187C6E-3FBF-3EB8-A1AA-389445E2984D> /usr/lib/system/libcache.dylib
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]:        0x10ea18000 -        0x10ea26fff  libcommonCrypto.dylib (60026) <2D6537F5-1B5E-305C-A1CF-D1FA80CA3939> /usr/lib/system/libcommonCrypto.dylib
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]:        0x10ea38000 -        0x10ea3dfff  libcompiler_rt.dylib (30) <08F8731D-5961-39F1-AD00-4590321D24A9> /usr/lib/system/libcompiler_rt.dylib
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]:        0x10ea4b000 -        0x10ea52fff  libcopyfile.dylib (89) <876573D0-E907-3566-A108-577EAD1B6182> /usr/lib/system/libcopyfile.dylib
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]:        0x10ea5c000 -        0x10ea71ff7  libdispatch.dylib (228.18) <0B6B6E7F-4D8A-3F3B-A4BF-6CF34638DBBB> /usr/lib/system/libdispatch.dylib
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]:        0x10ea8b000 -        0x10ea8cff7  libdnsinfo.dylib (453.16) <38A3E0F4-E34C-3D45-A2C9-4CDE2DF007BD> /usr/lib/system/libdnsinfo.dylib
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]:        0x10ea93000 -        0x10ea96ff7  libdyld.dylib (210.2.3) <F59367C9-C110-382B-A695-9035A6DD387E> /usr/lib/system/libdyld.dylib
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]:        0x10eaa2000 -        0x10eaa2fff  libkeymgr.dylib (25) <CC9E3394-BE16-397F-926B-E579B60EE429> /usr/lib/system/libkeymgr.dylib
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]:        0x10eaac000 -        0x10eab4fff  liblaunch.dylib (442.21) <224CB010-6CF8-3FC2-885C-6F80330321EB> /usr/lib/system/liblaunch.dylib
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]:        0x10eabc000 -        0x10eac2fff  libmacho.dylib (829) <BF332AD9-E89F-387E-92A4-6E1AB74BD4D9> /usr/lib/system/libmacho.dylib
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]:        0x10eacc000 -        0x10eacefff  libquarantine.dylib (52) <4BE2E642-A14F-340A-B482-5BD2AEFD9C24> /usr/lib/system/libquarantine.dylib
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]:        0x10ead3000 -        0x10ead4ff7  libremovefile.dylib (23.1) <DBBFAF35-AC78-3856-92F6-6E4FD9DF14A2> /usr/lib/system/libremovefile.dylib
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]:        0x10eade000 -        0x10eadffff  libsystem_blocks.dylib (59) <D92DCBC3-541C-37BD-AADE-ACC75A0C59C8> /usr/lib/system/libsystem_blocks.dylib
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]:        0x10eae7000 -        0x10ebb3fef  libsystem_c.dylib (825.24) <16B6B86C-53EE-36E8-AC2B-4AADC1008098> /usr/lib/system/libsystem_c.dylib
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]:        0x10ebf9000 -        0x10ec01ff7  libsystem_dnssd.dylib (379.27) <057906EA-206E-3C35-B43F-5D936FD0A84F> /usr/lib/system/libsystem_dnssd.dylib
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]:        0x10ec0c000 -        0x10ec42fff  libsystem_info.dylib (406.17) <4FFCA242-7F04-365F-87A6-D4EFB89503C1> /usr/lib/system/libsystem_info.dylib
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]:        0x10ec61000 -        0x10ec7cff7  libsystem_kernel.dylib (2050.7.9) <E0447BF5-E104-35B0-B28B-4156887D58F1> /usr/lib/system/libsystem_kernel.dylib
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]:        0x10ec93000 -        0x10ecc1ff7  libsystem_m.dylib (3022.6) <B434BE5C-25AB-3EBD-BAA7-5304B34E3441> /usr/lib/system/libsystem_m.dylib
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]:        0x10eccf000 -        0x10ecddff7  libsystem_network.dylib (77.10) <0D99F24E-56FE-380F-B81B-4A4C630EE587> /usr/lib/system/libsystem_network.dylib
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]:        0x10ecf1000 -        0x10ecfcfff  libsystem_notify.dylib (98.5) <C49275CC-835A-3207-AFBA-8C01374927B6> /usr/lib/system/libsystem_notify.dylib
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]:        0x10ed06000 -        0x10ed07ff7  libsystem_sandbox.dylib (220) <3C3B03CF-C525-3CB3-8557-62E91B93AC95> /usr/lib/system/libsystem_sandbox.dylib
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]:        0x10ed11000 -        0x10ed13ff7  libunc.dylib (25) <92805328-CD36-34FF-9436-571AB0485072> /usr/lib/system/libunc.dylib
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]:        0x10ed1f000 -        0x10ed25ff7  libunwind.dylib (35.1) <21703D36-2DAB-3D8B-8442-EAAB23C060D3> /usr/lib/system/libunwind.dylib
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]:        0x10ed32000 -        0x10ed54ff7  libxpc.dylib (140.37) <C552985C-2171-3136-A1B9-3AB21CBF7C4A> /usr/lib/system/libxpc.dylib
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]:        0x10ed6c000 -        0x10edbbff7  libcorecrypto.dylib (106) <57BC99C6-3C3F-344C-BDD6-25E845D956F2> /usr/lib/system/libcorecrypto.dylib
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]:        0x10edca000 -        0x10ee33fff  libstdc++.6.dylib (56) <EAA2B53E-EADE-39CF-A0EF-FB9D4940672A> /usr/lib/libstdc++.6.dylib
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]:        0x10ee9e000 -        0x10ee9ffff  libDiagnosticMessagesClient.dylib (7) <56A70657-E8C2-3804-AB87-77DC100512A4> /usr/lib/libDiagnosticMessagesClient.dylib
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]:        0x10eea6000 -        0x10eeb9ff7  libbsm.0.dylib (32) <F497D3CE-40D9-3551-84B4-3D5E39600737> /usr/lib/libbsm.0.dylib
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]:        0x10eec9000 -        0x10efc6fff  libsqlite3.dylib (138) <8D6A6805-1494-30D1-9F2A-F58FA3C0D7EE> /usr/lib/libsqlite3.dylib
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]:        0x10efe1000 -        0x10eff0ff7  libxar.1.dylib (105) <370ED355-E516-311E-BAFD-D80633A84BE1> /usr/lib/libxar.1.dylib
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]:        0x10effd000 -        0x10f001fff  libpam.2.dylib (20) <C8F45864-5B58-3237-87E1-2C258A1D73B8> /usr/lib/libpam.2.dylib
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]:        0x10f00c000 -        0x10f00cfff  libOpenScriptingUtil.dylib (148) <4DB14EC4-422C-3AE8-83BF-354FEC197FD3> /usr/lib/libOpenScriptingUtil.dylib
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]:        0x10f015000 -        0x10f022fff  libbz2.1.0.dylib (29) <CE9785E8-B535-3504-B392-82F0064D9AF2> /usr/lib/libbz2.1.0.dylib
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]:        0x10f02c000 -        0x10f343ff7  com.apple.CoreServices.CarbonCore (1037 - 1037) <5127E2AB-AE98-3393-AEF6-CA8C1090F921> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]:        0x10f3bf000 -        0x10f440fff  com.apple.Metadata (10.7.0 - 707.1) <ED39A710-1D87-3207-BB7D-4465B2673C1D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]:        0x10f49b000 -        0x10f541fff  com.apple.CoreServices.OSServices (557 - 557) <F5955FD8-E6E1-359F-9D9D-381E55E3EF37> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]:        0x10f5a5000 -        0x10f632ff7  com.apple.SearchKit (1.4.0 - 1.4.0) <C7F43889-F8BF-3CB9-AD66-11AEFCBCEDE7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]:        0x10f67c000 -        0x10f6d9ff7  com.apple.AE (645 - 645) <9C3E54BA-EE6B-3F02-8775-9C4AF40F40CD> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]:        0x10f707000 -        0x10f7b8fff  com.apple.LaunchServices (539 - 539) <04FA5C61-6349-3841-9609-B650B6222800> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]:        0x10f80e000 -        0x10f83ffff  com.apple.DictionaryServices (1.2 - 184) <B37F9A90-8954-3DEC-A216-8ABB15C615A1> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]:        0x10f863000 -        0x10f86afff  com.apple.NetFS (5.0 - 4.0) <82E24B9A-7742-3DA3-9E99-ED267D98C05E> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]:        0x10f871000 -        0x10f87fff7  libkxld.dylib (2050.7.9) <8194156D-8B7D-3881-AF62-BCBE3306EE49> /usr/lib/system/libkxld.dylib
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]:        0x10f885000 -        0x10f892ff7  com.apple.NetAuth (4.0 - 4.0) <F5BC7D7D-AF28-3C83-A674-DADA48FF7810> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]:        0x10f8a3000 -        0x10f910fff  com.apple.datadetectorscore (4.0 - 269.1) <C94C372B-3821-3A46-A8C2-091AB1CFF7F4> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]:        0x10f951000 -        0x10f968fff  com.apple.CFOpenDirectory (10.8 - 151.10) <FFBBA538-00B5-334E-BA5B-C8AD6CDCDA14> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]:        0x10f984000 -        0x10f9affff  libxslt.1.dylib (11.3) <441776B8-9130-3893-956F-39C85FFA644F> /usr/lib/libxslt.1.dylib
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]:        0x10f9be000 -        0x10fa00fff  com.apple.RemoteViewServices (2.0 - 80.3) <E0224421-A421-3DB6-99AF-B249684FD13A> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]:        0x10fa3c000 -        0x10fb8cfff  com.apple.audio.toolbox.AudioToolbox (1.8 - 1.8) <8019964B-4FFB-3328-A425-B1A702177A25> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]:        0x10fc15000 -        0x10fc15ffd  com.apple.audio.units.AudioUnit (1.8 - 1.8) <ECC4891A-9BA8-3C13-9A2B-6116521B7B46> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]:        0x10fc21000 -        0x10fe3ffff  com.apple.CoreData (106 - 407.5) <45EF39FE-7FD6-366E-BB5C-3E86E0B7DA3C> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]:        0x10ff39000 -        0x110058fff  com.apple.desktopservices (1.7.0 - 1.7.0) <F84224B1-BA28-31AF-8C89-1C2DBBFE4753> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]:        0x1100cb000 -        0x1103faff7  com.apple.HIToolbox (2.0 - 624) <49C4A53E-9239-3B9A-95DC-8C7B398E491D> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]:        0x110550000 -        0x11055afff  com.apple.speech.recognition.framework (4.1.5 - 4.1.5) <D803919C-3102-3515-A178-61E9C86C46A1> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]:        0x11056a000 -        0x11062ffff  com.apple.coreui (2.0 - 181) <CFCB6868-36AC-3734-ACEA-DF9CAB2B84F2> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]:        0x1106a8000 -        0x110705fff  com.apple.audio.CoreAudio (4.1.0 - 4.1.0) <B3198BD6-EA1D-3E5E-ADD4-37D8E6B72678> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]:        0x110730000 -        0x110746fff  com.apple.MultitouchSupport.framework (235.27 - 235.27) <78E356A6-78E8-3CAB-8982-7A4958C7A955> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]:        0x110756000 -        0x11077dff7  com.apple.PerformanceAnalysis (1.16 - 16) <E4888388-F41B-313E-9CBB-5807D077BDA9> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]:        0x11079c000 -        0x1107abff7  com.apple.opengl (1.8.5 - 1.8.5) <C554C4DA-517D-3F77-BC7E-DDFD9E01A891> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]:        0x1107b5000 -        0x110886ff7  com.apple.CoreText (260.0 - 275.14) <98A59BFB-9AC0-3EAB-B5A4-26C2F965A65D> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]:        0x1108e8000 -        0x110a01ff7  com.apple.ImageIO.framework (3.2.0 - 843) <A9AC2A79-331A-3B06-AFE6-7E34EF876221> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]:        0x110a61000 -        0x110b3bfff  com.apple.backup.framework (1.4 - 1.4) <00964E68-4A36-3F9F-B0A5-B782575C64DE> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]:        0x110bc4000 -        0x110beafff  com.apple.framework.familycontrols (4.0 - 400) <B296674D-6D0B-323D-84C0-1D356F6F3BFA> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]:        0x110c04000 -        0x110ca2fff  com.apple.ink.framework (1.4 - 110) <C6E43ED5-7189-3291-80F0-BB7702AD051A> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]:        0x110cdb000 -        0x11166c39f  com.apple.CoreGraphics (1.600.0 - 322) <2F5D7032-9A96-36AE-A227-428E95CAE0C5> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]:        0x111776000 -        0x1117f6ff7  com.apple.ApplicationServices.ATS (332 - 341) <0CAA1A5C-59DB-3ACE-8478-05D72CBB7C76> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]:        0x111822000 -        0x1118dfff7  com.apple.ColorSync (4.8.0 - 4.8.0) <6CE333AE-EDDB-3768-9598-9DB38041DC55> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]:        0x11192b000 -        0x111981fff  com.apple.HIServices (1.20 - 416) <E7DC75C4-A3E0-3D6B-B961-C9849442BCA6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]:        0x1119b8000 -        0x1119cbff7  com.apple.LangAnalysis (1.7.0 - 1.7.0) <2F2694E9-A7BC-33C7-B4CF-8EC907DF0FEB> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]:        0x1119dd000 -        0x111a37fff  com.apple.print.framework.PrintCore (8.0 - 387) <3CA8A004-8F93-3936-9F9E-7030BD474D2B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]:        0x111a65000 -        0x111aa4ff7  com.apple.QD (3.42 - 285) <8DF36FCA-C06B-30F4-A631-7BE2FF7E56D1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]:        0x111abf000 -        0x111ad3fff  com.apple.speech.synthesis.framework (4.1.10 - 4.1.10) <21086D96-F997-38D3-BB59-8600CCC3A36F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]:        0x111aea000 -        0x111aeefff  com.apple.IOSurface (86.0.2 - 86.0.2) <739A481A-DF06-39EB-B784-D03BA1CBD762> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]:        0x111af9000 -        0x111af9fff  com.apple.Accelerate (1.8 - Accelerate 1.8) <6AD48543-0864-3D40-80CE-01F184F24B45> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]:        0x111aff000 -        0x111c0afff  libFontParser.dylib (84.5) <617A7D30-C7BC-39FC-A1FE-59367B4A5719> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]:        0x111c72000 -        0x111cc1ff7  libFontRegistry.dylib (100) <2E03D7DA-9B8F-31BB-8FB5-3D3B6272127F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]:        0x111cec000 -        0x111e87fef  com.apple.vImage (6.0 - 6.0) <FAE13169-295A-33A5-8E6B-7C2CC1407FA7> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]:        0x111eab000 -        0x111eabfff  com.apple.Accelerate.vecLib (3.8 - vecLib 3.8) <B5A18EE8-DF81-38DD-ACAF-7076B2A26225> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]:        0x111eb0000 -        0x111f18fff  libvDSP.dylib (380.6) <CD4C5EEB-9E63-30C4-8103-7A5EAEA0BE60> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]:        0x111f27000 -        0x111fc1fff  libvMisc.dylib (380.6) <714336EA-1C0E-3735-B31C-19DFDAAF6221> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]:        0x111fd3000 -        0x1123cafff  libLAPACK.dylib (1073.3) <E670020A-6969-3ED7-B80B-285AE1DE5F95> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]:        0x11242d000 -        0x1125b3fff  libBLAS.dylib (1073.3) <6B71AB8C-3D9A-33C2-9EAF-2A0BA504D493> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]:        0x1125e8000 -        0x112610fff  libJPEG.dylib (843) <377EC31E-1831-32E2-AEEB-C375E0A80335> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]:        0x11261e000 -        0x112673ff7  libTIFF.dylib (843) <4EB491F3-8DA4-3E4F-AE83-E207720F38B3> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]:        0x112686000 -        0x1126a6fff  libPng.dylib (843) <8F83F355-CA33-3D15-8178-54A135BA23BA> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]:        0x1126b0000 -        0x1126b4fff  libGIF.dylib (843) <21324AF8-AFDA-3149-B547-C5109C1FBECF> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]:        0x1126bc000 -        0x1127befff  libJP2.dylib (843) <04915A7F-EE27-3C01-8582-0BD9919558B1> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]:        0x1127f0000 -        0x1127f3fff  libRadiance.dylib (843) <61405840-A8B0-368E-B39A-704B5A04FDA5> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.d ylib
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]:        0x1127f9000 -        0x11283dfff  libcups.2.dylib (327) <9B3F3321-D2BC-3195-BF20-4008FC52A390> /usr/lib/libcups.2.dylib
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]:        0x112851000 -        0x112873ff7  com.apple.Kerberos (2.0 - 1) <C49B8820-34ED-39D7-A407-A3E854153556> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]:        0x11288d000 -        0x1128c7fff  com.apple.GSS (3.0 - 2.0) <0BDF8090-5EF4-3759-94DE-8521D74188AA> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]:        0x1128ec000 -        0x11290bff7  libresolv.9.dylib (51) <0882DC2D-A892-31FF-AD8C-0BB518C48B23> /usr/lib/libresolv.9.dylib
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]:        0x112917000 -        0x112a0cfff  libiconv.2.dylib (34) <FEE8B996-EB44-37FA-B96E-D379664DEFE1> /usr/lib/libiconv.2.dylib
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]:        0x112a21000 -        0x112aa3fff  com.apple.Heimdal (3.0 - 2.0) <660A6C64-4912-32C8-A332-B64164032A2D> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]:        0x112ad2000 -        0x112ad4fff  com.apple.TrustEvaluationAgent (2.0 - 23) <A97D348B-32BF-3E52-8DF2-59BFAD21E1A3> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]:        0x112adc000 -        0x112ae1fff  com.apple.OpenDirectory (10.8 - 151.10) <CF44120B-9B01-32DD-852E-C9C0E1243FC0> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]:        0x112aec000 -        0x112af7fff  com.apple.CommonAuth (3.0 - 2.0) <74A86DDD-57D0-3178-AB74-E1F31DBFFC39> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]:        0x112b04000 -        0x112b47ff7  com.apple.bom (12.0 - 192) <0BF1F2D2-3648-36B7-BE4B-551A0173209B> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]:        0x112b5b000 -        0x112b85ff7  com.apple.CoreVideo (1.8 - 99.0) <ED17EF3A-2775-3840-BBD1-6513B5B112F2> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]:        0x112ba4000 -        0x112e34fff  com.apple.CoreImage (8.0.17 - 1.0.1) <FFD6159F-DF31-3EFC-9C59-7FC4F4219D43> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]:        0x112f16000 -        0x112f6dff7  com.apple.ScalableUserInterface (1.0 - 1) <F1D43DFB-1796-361B-AD4B-39F1EED3BE19> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableU serInterface.framework/Versions/A/ScalableUserInterface
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]:        0x112f96000 -        0x112fe0ff7  libGLU.dylib (8.5) <47CB8E1C-F98F-352E-B235-DE9EA7A3454F> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]:        0x112fef000 -        0x112ff5fff  libGFXShared.dylib (8.5) <34093C75-3ECB-3899-A2C0-A52ECAA7C3FC> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]:        0x113002000 -        0x113016fff  libGL.dylib (8.5) <BE75219E-DC86-343A-983C-CA3ECADE659F> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]:        0x11302f000 -        0x11306cfe7  libGLImage.dylib (8.5) <9583CF74-F84A-33C7-B06A-3A72F090E544> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]:        0x113077000 -        0x113079fff  libCVMSPluginSupport.dylib (8.5) <437A72B8-1FA6-346C-8949-D63164A062F7> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]:        0x113083000 -        0x113090fff  libCoreVMClient.dylib (24.4) <A0E83074-D4CA-3BE8-B77E-FC476B4BF328> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]:        0x11309f000 -        0x113953f1f  libLLVMContainer.dylib (24.4) <F4F7E5F1-F5B8-3B25-A6B7-2667F9055840> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libLLVMContain er.dylib
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]:        0x113dc6000 -        0x113dd2ff7  com.apple.CrashReporterSupport (10.8 - 411) <FA7EA7CD-103D-30B1-BF2F-862E68A6B5B7> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]:        0x113de2000 -        0x113e38ff7  com.apple.opencl (2.1.17 - 2.1.17) <CA9E8BED-17C9-393B-A53E-8EAA8BF01C47> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]:        0x113e53000 -        0x113e60fff  com.apple.AppleFSCompression (49 - 1.0) <5508344A-2A7E-3122-9562-6F363910A80E> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]:        0x113e69000 -        0x113e8afff  Ubiquity (234.2) <AC544B6F-0879-39A3-90A3-8BC8C29CBAD5> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]:        0x113e9e000 -        0x113ea9ff7  com.apple.bsd.ServiceManagement (2.0 - 2.0) <7A5F12E8-C1C2-39C7-8599-2362EAAB9F03> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]:        0x113eb6000 -        0x113ed5fff  com.apple.ChunkingLibrary (2.0 - 132) <F5051C19-6C4E-3E65-9BEC-B0A4BA82457A> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/Chunking Library
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]:        0x113ee6000 -        0x113ee6fff  com.apple.vecLib (3.8 - vecLib 3.8) <794317C7-4E38-338A-A874-5E18001C8503> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]:        0x113eeb000 -        0x113f69ff7  com.apple.securityfoundation (6.0 - 55115.4) <C5461971-E455-31A6-99B8-AF80C4BC26DD> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]:        0x113faf000 -        0x113fb8fff  com.apple.CommerceCore (1.0 - 26) <997CD214-BC78-3C61-A1B8-813EA1CB9997> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]:        0x113fc5000 -        0x11405ffff  com.apple.CoreSymbolication (3.0 - 87) <75F2C0DD-549A-36F6-BD9E-FB40A924344F> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]:        0x1140ab000 -        0x114107ff7  com.apple.Symbolication (1.3 - 93) <F2C7E0B6-B241-3020-B30A-0636D0FA3378> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]:        0x11414b000 -        0x114181fff  com.apple.DebugSymbols (98 - 98) <14E788B1-4EB2-3FD7-934B-849534DFC198> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]:        0x1141a5000 -        0x1141a9ff7  com.apple.CommonPanels (1.2.5 - 94) <AAC003DE-2D6E-38B7-B66B-1F3DA91E7245> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]:        0x1141b0000 -        0x1141b3fff  com.apple.help (1.3.2 - 42) <343904FE-3022-3573-97D6-5FE17F8643BA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]:        0x1141bc000 -        0x1141d1fff  com.apple.ImageCapture (8.0 - 8.0) <17A45CE6-7DA3-36A5-B7EF-72BC136981AE> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]:        0x1141f3000 -        0x11420ffff  com.apple.openscripting (1.3.5 - 148) <ACDE22A1-6170-3289-AF26-E501E6326BD7> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]:        0x114228000 -        0x11422aff7  com.apple.print.framework.Print (8.0 - 258) <34666CC2-B86D-3313-B3B6-A9977AD593DA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]:        0x114233000 -        0x114235fff  com.apple.securityhi (4.0 - 55002) <34E45C60-DC7E-3FCC-A1ED-EBF48B77C559> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]:        0x11423f000 -        0x11424afff  com.apple.CoreBluetooth (100.6 - 1) <8166B68C-3AA7-30F9-8454-CA2AA03F50E4> /System/Library/Frameworks/IOBluetooth.framework/Versions/A/Frameworks/CoreBlue tooth.framework/Versions/A/CoreBluetooth
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]:        0x11425d000 -        0x11425dfff  com.apple.Cocoa (6.7 - 19) <1F77945C-F37A-3171-B22E-F7AB0FCBB4D4> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    Nov 28 02:55:31 imac-c82a141bdeb8.local ReportCrash[313]:        0x11

    Hi and thank you for your reply.
    Yes it works if holding the option key. But the error log is huge so I was wondering if someone that can read it and understands more than we did can provide with some usefull information about what is really going on with my operating system...
    Do I have to worry ? Or maybe do a format and a fresh install ?

  • After soak test update, I get error messages repeatedly. The majority are "unfortunately, messaging has stopped", but you can replace messaging with "android os", or any other process, as it happens with more than just messaging. I have had numerous peopl

    After soak test update, I get error messages repeatedly. The majority are "unfortunately, messaging has stopped", but you can replace messaging with "android os", or any other process, as it happens with more than just messaging. I have had numerous people call and ask why I didn't reply to their texts...and I look, but have not received any new texts. YES, I have restarted phone. I have cleared data as well as cache on all apps. I have downloaded the vzw messaging app, which seems silly, since it happens with several different processes and apps, but all to no avail. I am missing texts from my employer, from my family. This did happen, but rarely, before this "soak test". It is now Kitkat version 19.6.3.obake_verizon.en.US. THIS is when I started having problems...like 50 times a day kind of problems! I have seen hundreds of posts all over the internet over the past 3 days. Does no one know how to fix this??? Shouldn't there be a way to revert phone to a pre-update state? and no, hard reset did NOT work!!!! I have been with verizon for well over 15 years, but I have not upgraded my lines and will not in July either. This is ridiculous. It's not like my games aren't working, it is my messaging and "android os"...my lifeline at work!

    kristinaf333,
    Oh no, I am sorry to hear your messages are not working since the software update. I greatlly appreciate doing all that troubleshooting to try and get the messaging application back in business. I know how much I rely on my messages so I can understand the urgency to get this resolved. Have you had a resolution ticket opened since you started experiencing issues with your messages? Does this happen with all contacts or just some? Please provide additional information to ensure we get to the bottom of this for you.
    KarenC_VZW
    Follow us on Twitter @VZWSupport

  • How do I get my error log to stop outputting in Chinese?

    Hello friendly Adobe community!
    I'm running Photoshop CC 2014 (although I had an already existing installation of CS6 on this computer, and the settings were imported).  I'm working on a long batch automation, and trying to troubleshoot my way through all the problems with the process.  I choose the option to export the errors to a log, so I can go back and fix them later, but when the log is generated, the text comes out in Chinese (or Japanese, sorry, I have problems differentiating between the two).   This error also occured in CS6, and I was hoping the update would fix it.
    1) I downloaded CC from Adobe's website, so I don't think it's an issue with the software or installation, as it was all automated.
    2) The UI language is in English.
    Here's a sample of the text:
    匀琀愀爀琀 䈀愀琀挀栀ഀ਀ഀ਀䘀椀氀攀㨀 ∀䌀㨀尀唀猀攀爀猀尀䐀愀瘀椀猀尀䐀攀猀欀琀漀瀀尀刀漀礀愀氀 䌀愀甀猀攀尀䨀甀洀戀氀攀 刀愀眀⬀䘀椀渀椀猀栀攀搀 猀渀椀瀀 爀攀挀漀瘀攀爀礀 㤀ⴀ㄀㔀ⴀ㄀㐀尀㄀㄀㔀 欀欀渀眀开㤀㠀  㘀⸀瀀渀最∀ഀ਀䔀爀爀漀爀㨀 吀栀攀 瀀愀爀愀洀攀琀攀爀猀 昀漀爀 挀漀洀洀愀渀搀 ∀䌀氀漀猀攀∀ 愀爀攀 渀漀琀 挀甀爀爀攀渀琀氀礀 瘀愀氀椀搀⸀ ⠀ⴀ㈀㔀㤀㈀㌀⤀ഀ਀ഀ਀䘀椀氀攀㨀 ∀䌀㨀尀唀猀攀爀猀尀䐀愀瘀椀猀尀䐀攀猀欀琀漀瀀尀刀漀礀愀氀 䌀愀甀猀攀尀䨀甀洀戀氀攀 刀愀眀⬀䘀椀渀椀猀栀攀搀 猀渀椀瀀 爀攀挀漀瘀攀爀礀 㤀ⴀ㄀㔀ⴀ㄀㐀尀㄀㄀漀氀椀瘀攀猀开㤀㠀㄀㄀㘀⸀倀一䜀∀ഀ਀䔀爀爀漀爀㨀 吀栀攀 瀀愀爀愀洀攀琀攀爀猀 昀漀爀 挀漀洀洀愀渀搀 ∀䌀氀漀猀攀∀ 愀爀攀 渀漀琀 挀甀爀爀攀渀琀氀礀 瘀愀氀椀搀⸀ ⠀ⴀ㈀㔀㤀㈀㌀⤀ഀ਀ഀ਀
    I have no idea what any of that says, but the boxes for the missing characters are sometimes shaped differently than they are appearing in this forum text box. Some are larger, some are smaller.
    Can anyone help? Anyone experienced something similar?  Have I just missed some obscure setting in the preferences menu?
    Thank you!

    Mac or Windows?
    What sort of automation are you using?
    Any plug-ins involved?

  • I want to reinstall our Adobe Acrobat XI Pro because we have begun to get error messages. I followed the initial instructions but when I logged in I couldn't find "My Orders" page which is required to locate my order and install.  Any ideas?

    I want to reinstall our Adobe Acrobat XI Pro because we have begun to get error messages. I followed the initial instructions but when I logged in I couldn't find "My Orders" page which is required to locate my order and install.  Any ideas?

    Barbara,
    If you are looking for your  serial number, sign in to your Adobe account. On the Manage Accounts page that appears, all of your registered products and their serial numbers are listed in the Plans & Products section. For more information on locating serial numbers,please see Find a serial number
    Here is the link to download and install the software:
    Acrobat XI, X
    Pattie

  • ERROR-Logging of Stored Procedure (Stop / Going on after error + logging)

    Hi @all,
    I am using a Stored Procedure which is very simple:
    =>The stored procedure is selecting many tousands of records from table1 + table2.
    => Some values (records) will be summarized (aggregated/group by).
    =>After this selection and summarizing, this records will be deleted from table3 (if they exist in table3).
    =>Then the selected records will be inserted in table3.
    Now I want to do the following:
    Is there a way to log the errors of the stored procedure?
    For example, the stored procedure is copying many thousands of records.
    If there is a problem on copying/ inserting a record to table3, then I want a error-log in a loggin_table.
    Is there a way to write the error-logs from a stored procedure to a special table in database?
    I want to do this in 2 ways:
    1) On error the error is logged and the stored procedure is stopped.
    2) On error the error is logged and the stored procedure is going on to insert/summarize the next record.
    I don't know how I can get these errors of a stored procedure. Maybe it isn't possible? Or is it better to use a function?
    Hope anyone can give me a hint?
    Thanks a lot.
    Best regards,
    Tim

    Hi
    option one:
    as i know you can have another table without primer key (log table).
    then before you insert into table, select the record count using primary key. if it is duplicate then put those record into the table.
    option two:
    write the log into file.
    declare
    f utl_file.file_type;
    s varchar2(200);
    begin
    f := utl_file.fopen('SAMPLEDATA','sample1.txt','R');
    loop
    utl_file.get_line(f,s);
    dbms_output.put_line(s);
    end loop;
    exception
    when NO_DATA_FOUND then
    utl_file.fclose(f);
    end;
    refer : http://www.psoug.org/reference/OLD/utl_file.html
    regards
    upul.
    Edited by: Upul Indika on Apr 9, 2009 12:45 PM

  • I updated to the latest IOS and now my passwords don't work.  Reset 4 time which reset for my iPad and iPhone but I cant log into my itunes account using my apple ID it indicates an error, Help?

    I updated to the latest IOS and now my passwords don't work.  Reset 4 time which reset for my iPad and iPhone but I cant log into my itunes account using my apple ID it indicates an error, Help?

    This may sound crazy, but download any free app.  This often "shocks" the other apps into working.

  • I can't log in to game centre but I can log into iTunes. I recently changed my password. I checked the troubleshooter and am getting the message regarding server error but how do I fix this? It doesn't specify this in that article. I don't have firewalls

    I can't log in to game centre but I can log into iTunes. I recently changed my password. I checked the troubleshooter and am getting the message regarding server error but how do I fix this? It doesn't specify this in that article. I don't have firewalls

    Hello sadiepix,
    The following article details several things that can be done to quell iTunes' constant need for authorization.
    iTunes repeatedly prompts to authorize computer to play iTunes Store purchases
    http://support.apple.com/kb/TS1389
    Cheers,
    Allen

  • I just got new iphone 4 but it tells me to restore the phone wen i plug in my computer.. then half way thru the restoring on the "firmwear" part it stops an says error "9?? wats the go there?? its driving me insane...

    i just got new iphone 4 but it tells me to restore the phone wen i plug in my computer.. then half way thru the restoring on the "firmwear" part it stops an says error "9?? wats the go there?? its driving me insane...

    Let's first define what "new" means. Was it purchased from Apple or your authorized carrier, and it came in a shrink wrapped box? Or is it only new to you, and you don't know its history?
    Assuming it truly is a new, never used phone, Error 9 means that the USB connection to the phone is intermittent. Do the following:
    Make sure you have the latest version of iTunes (10.4) - if not, download and install it from htp://www.apple.com/itunes
    Reboot your computer
    Disable your antivirus and firewall software
    Disconnect all USB devices except keyboard and mouse
    Connect the cable to a USB port directly on your computer, not to a hub; do not connect the other end to the phone yet (If your computer is a desktop or tower and has ports on both front and back us a port on the back)
    Launch iTunes
    Connect the phone to the other end of the cable
    If the phone is recognized in iTunes proceed with the Restore
    If the phone is NOT recognized by iTunes:
    Disconnect the cable from the phone (leave connected to the computer)
    Hold the HOME and SLEEP buttons until the screen goes blank, then IMMEDIATELY release the SLEEP button but continue holding the HOME button
    Connect the cable to the phone while holding the HOME button
    Wait for iTunes to recognize the phone, then release the HOME button (this may take several minutes of holding)
    If you still have a problem after these steps take the phone to Apple for exchange.

  • Server Agent job failing but not writing to Error log

    We recently migrated from Server 2003 to 2008 R2 running Microsoft SQL Management Studio 2008.  We've had a few bumps along the road but my main concern is a SQL Server Agent job that runs at 1:00 AM is failing part way through. Some of the work is
    done but not all. The Job Activity Monitor reports it failed but nothing goes in the Error Log. The job did run successfully last week during tests but these failures came after going live and bring over the latest data. 
    I guess I really need help in diagnosing the lack of information in the Error Log. If I had that data I can begin to follow the bread crumbs to the actual problem.

    The Job Activity Monitor reports it failed but nothing goes in the Error Log.
    The Agent writes error to it's own log file, called SQLAGENT.OUT, it's also located in LOG subfolder and you also can look it up in SSMS from node "SQL Server Agent"
    Olaf Helper
    [ Blog] [ Xing] [ MVP]

  • I re-installed my Mac OS, but now Elements won't open. Licensing stopped working. Error code 150:30

    I re-installed my Mac OS, but now Elements won't open. Licensing stopped working. Error code 150:30.
    This is Photoshop Elements 8, and I have the original disc with serial number so I can re-install that.
    The probelm is I'd need to de-cactivate the serial number before un-installing, and I need to open the programme to do that.
    Any ideas?
    Thanks

    Okay, I've found that this is a recognised problem.
    http://helpx.adobe.com/x-productkb/global/error-licensing-stopped-mac-os.html
    Error "Licensing has stopped working" | Mac OS
    and all the solutions tell me to find the folder FlexNet Publisher in my library.
    Problem is FlexNet Publisher doesn't seem to exist there. Can't find it anywhere on my hard drive.
    Gettting down to the end of that page gives me the following info....
    The FlexNet folders and files required to run Adobe applications can become corrupted or have permission problems if moved from one machine to another. They can also be damaged through a Time Machine system restore. FlexNet service licensing failures cannot be resolved by reinstalling the application or by using the Adobe CS5 Cleaner Tool. If permissions issues prevent the FlexNet licensing service from launching, accessing data, or communicating with Adobe processes, a licensing failure occurs.
    Well it looks like backing everything up using Time Machine may have caused all this problem. Anyone know how to get Flexnet Publisher back?

  • Help please! My macbook air (2015) startup showed a folder with question mark so i tried "Command   R" for internet recovery but after few minutes it stopped and showed error.. Please hepl me!

    Help please! My macbook air (2015) startup showed a folder with question mark so i tried "Command   R" for internet recovery but after few minutes it stopped and showed error.. Please hepl me!

    Startup – Question Mark
    Startup Issues - Resolve
    Startup Issues - Resolve (2)
    Startup Issues - Resolve (3)

  • HT202159 I started download of OS X Mountain Lion and it stopped with "An error has occurred" with no option to resume download. When I go to appstore it shows but again.

    I started download of OS X Mountain Lion and it stopped with "An error has occurred" with no option to resume download. When I go to appstore it shows but again.

    Try this Discussion...
    https://discussions.apple.com/message/19032230#19032230

  • An AIM service error occurred, but where to Log-Out ?

    Here's a real basic question, due to be a head-slapping "of course !" ( I hope )
    I just got Leopard last Sat, my brother Jim tonight, and he suggested an iChat so he could show me what was different on a big ol' MacPro.
    There was a lot that mystified us about iChat on Tiger, let alone it's beefed-up Leopard incarnation, so I looked into it and got enough of the "An AIM service error occurred. Error: Serv:RequestTimeout " that I googled it and found this thread from right here on Apple Discussons : http://74.125.95.104/search?q=cache:H2ojIfDVIDoJ:discussions.apple.com/thread.js pa%3FthreadID%3D1208110An+AIM+service+error+occurred.+Error:Serv:RequestTimeout&hl=en&ct=clnk&cd=1&gl=us&client=safari
    So many flummoxed by the same deal. But here's my problem & where I'm stupidly stuck :
    To follow the suggestion & change server-ports, one must log out, but aside from Log-In being greyed out, I can find nowhere *to log out !* !!
    It's one a' those really annoying Catch-22's too.
    I have to log out to change the server-port, but can I change the port when logged-out ??
    And where the *@#% is the log out option ?!
    Heh-heh ( help )
    ( thanks )

    Thanks Tony,
    This time I went in, clicked in accounts from .mac to MoblieMe ( all I have is .mac and Bonjour . . . no AIM, which I thought I did ! ), but I decided MobileMe was likely not so "stable" and I switched it back to .mac. I checked Server Settings and I wasn't greyed out.
    I switched it to 443, pioked around a bit, and now I am greyed out again !
    I am also completely confused, if it ain't obvious !
    but thanks again !

Maybe you are looking for