Resource hungry query

Friends
I had used the following query for an update statement:
UPDATE target_table tar
   SET (tar.flag1, tar.flag2, tar.flag3, tar.flag4, tar.flag5, tar.flag6,
        tar.flag7, tar.flag8, tar.flag9, tar.flag10, tar.flag11, tar.flag12,
        tar.flag13, tar.flag14, tar.flag15) =
          (SELECT src.flag1, src.flag2, src.flag3, src.flag4, src.flag5,
                  src.flag6, src.flag7, src.flag8, src.flag9, src.flag10,
                  src.flag11, src.flag12, src.flag13, src.flag14, src.flag15
             FROM src_table src
            WHERE src.date_col = tar.date_col AND src.cust_id = tar.cust_id)
WHERE EXISTS (
              SELECT 'x'
                FROM src_table src
               WHERE src.date_col = tar.date_cole
                     AND src.cust_id = tar.cust_id)But I got a message from our DBAs that this query is very resource hungry causing outage & job abends. When I did explain plan for this query, I got the following output:
UPDATE STATEMENT 
UPDATE  target_table
  PX COORDINATOR 
   PX SEND QC (RANDOM) :TQ10002
    HASH JOIN RIGHT SEMI BUFFERED
     PX RECEIVE 
      PX SEND HASH :TQ10000
       PX BLOCK ITERATOR
        INDEX FAST FULL SCAN src_table_index
     PX RECEIVE 
      PX SEND HASH :TQ10001
       PX BLOCK ITERATOR
        TABLE ACCESS FULL target_table
  TABLE ACCESS BY INDEX ROWID src_table
   INDEX RANGE SCAN src_table_indexNow if I change this query to the following:
UPDATE target_table tar
   SET (tar.flag1, tar.flag2, tar.flag3, tar.flag4, tar.flag5, tar.flag6,
        tar.flag7, tar.flag8, tar.flag9, tar.flag10, tar.flag11, tar.flag12,
        tar.flag13, tar.flag14, tar.flag15) =
          (SELECT src.flag1, src.flag2, src.flag3, src.flag4, src.flag5,
                  src.flag6, src.flag7, src.flag8, src.flag9, src.flag10,
                  src.flag11, src.flag12, src.flag13, src.flag14, src.flag15
             FROM src_table src
            WHERE src.date_col = tar.date_col AND src.cust_id = tar.cust_id)And then I do explain plan, I get the following results:
UPDATE STATEMENT 
UPDATE  target_table
  PX COORDINATOR 
   PX SEND QC (RANDOM) :TQ10000
    PX BLOCK ITERATOR
     TABLE ACCESS FULL target_table
  TABLE ACCESS BY INDEX ROWID src_table
   INDEX RANGE SCAN src_table_indexDoes that mean that using 'where exists' is not a good option?
Thanks

Tuning updates is very tricky - especially those with subquries!
You're performaing a full index scan on the source table but a full table scan on the target table. I could not tell the query cardinality from the postings, but since the parallel query option is being employed I'll assume a large amount of data is being processed.
Is the full table scan on the target table necessary? Would an index on the WHERE clause columns from the target table prevent this and use fewer system resources to perform the update?
You are also reading the source data twice, for each subquery. This may be necessary :( ; maybe Karthick's MERGE can avoid this. You're doing a full index scan against the source table, which is similar to a full table scan except you are only reading the keys from the index - better, but like a FTS you are readling all of the rows. Is this necessary?
WHERE EXISTS() is usually a good option, although not when a full table scan is performed. You need a way to avoid the FTS.
The parallel query option can do one of three things: help performance, hurt performance, or do nothing. It can help with the full table and full index scans you are doing so it may be helping. How much data are are you updating (bytes and rows)?
If you have the licence partitioned tables might help performance by partitioning both the source and target tables by the same partition key. In that case SQL can match smaller sets of data (the partitions) and run more efficiently. This might help if you are processing a lot of data - as you seem to be.
Good luck!
Edited by: riedelme on Jan 5, 2010 8:04 AM

Similar Messages

  • Why is the Java runtime resource hungry and slow?

    Hi,
    First of all let me make it clear that I'm not here to bash Java. I'm a big fan of the technology. In fact I believe in its potential as it is the only true 100% cross-platform runtime. Now that it has been open sourced, it has just made me happier,
    However, the only factor which has been hurting me is that the Java runtime is resource hungry and has long startup times.
    Consider a Adobe Flash .swf file with lot of animation, it is opened by the Flash player in a snap. On the other hand Java applets (with same amount of graphics) take several seconds to load even from the local machine and also require much more memory. With the introduction of Flex flash might become a platform of choice for RIA. Java FX has made matters worse. The loading time of Java FX is much higher than that applets themselves.
    The problem with Flash Player is it not 100% platform independent. For example the latest version of player was released for Linux several months after it was released for Windows and Mac OS X.
    Is there any way to make the Java runtime use less memory and start faster? If this can be achieved I feel that applets are a better choice over Flex for building RIAs. After all appearance is not everything and definitely Java is a much more robust platform than Flash.

    I'm running it on Kubuntu Linux. Even on this Flash Player is much faster at loading embedded Flash animations than JRE loads applets.
    Seriously, if alone the speed of loading applets can be increased, the world will have an extremely robust platform for RIAs.

  • Is LR4 Resource Hungry?

    I am running Windows 7 x64 with 8GB of memory and an i7 processor and I have given Lightroom a 20GB cache, so I am a bit surprised that Lightroom 4 appears sluggish.  For example, I made a number of adjustments to a photo and then tried to move around it whilst it was scaled at 1:1.  At first the movement was jerky and then Lightroom crashed.  I repeated the process and it crashed again.  However, I reset the photo and moving it around was ok without any adjustments.  I do not have any such problems with Lightroom 3.6.  I also notice my computer's cooling system activating when using Lightroom 4, when it hardly seems to activate at all with Lightroom 3.6.  Perhaps Lightroom 4 appears resource hungry because (as a beta version) it is not complete?

    What video card do you have and how much memory does it have.
    That computer system cooling you are activating is probably your video card heating up.
    LR 4 is going to severly test some peoples video cards. Do you have a gadget that can track its GPU usage?
    Jim Michaelsen

  • OIM 9.1.0.2 Resource Profile Query

    Hello
    I need to get the usr_key or any info on the users in OIM that have a certain condition. I have a number of OID resources for users that have a status or 'provisioned' but when looking at the resource tasks the system validation is set to 'cancelled'. Due to this, updates are not flowing to these users. I am looking through the tables to try to find the resource task list and the status info so I can find the system validation cancelled and location those users. Does anyone have a query to search through and find all users with system validation = canceled and resource status as provisioned? Any help you can give would be appreciated.
    Thanks
    Nick

    I'm positive there's a great way to do it with SQL, but you'll need to look at 4 tables:
    1) OBJ (Objects) - Here you are looking in OBJ_NAME for 'OID User', once found get the OBJ_KEY value for the row.
    2) OST (Object Status) - In this table, you can find all the statuses for the OID User resource based on the OBJ_KEY value. Look for the applicable ones and get the OST_KEY value for each row.
    3) OIU (Object Instance for Users) - Now you can query this table for all results where OST_KEY equals the desired values as found in step 2.
    4) USR (Users) - Here you can get the User ID's (usr_login), User Key (usr_key) or any other value for users to help with the query.

  • Is TOP a resource intensive query.

    Hi,
    We are using TOP to monitor load on LInux production server.
    I just wanted to know if TOP is a resource intensive command?
    Whether TOP adds up to the load on server. Say for example TOP running simultenously from 5/6 putty sessions.
    Regards,

    Running top with default parameters is not a resource intensive process. There were issues with long running top sessions in the past, with ported versions of the top command on certain Unix platforms, but Linux was not affected. I don't think you will notice a performance issue running several top sessions. You can easily test it. Whether or not the top utility is the right tool for what you are trying to accomplish however is a different question.

  • Resource Hungry !?

    I just noticed my hard drive thrashing away after opening SQL Developer (SD) for Windows XP. Ah, thrashing of the page file I thought, so I opened up task manager and noticed SD was consuming 271MB of RAM and 305MB of Virtual Memory.
    I know it is Java, but I use several other feature rich Java apps and compared to SD they are tiny. SD's memory usage seems really excessive, especially as this is prior to having any SQL Developer tabs open yet! Any reasons for this?
    Paul

    From earlier posts, the memory problems are related to how the Code Insight is working in the current release. See Re: Memory Issues or similar other posts.

  • Oracle Strange Long query

    Hello,
    I'm still in the process of finding what is wrong with my oracle connection.
    Everytime a request is done, this query is executed:
    SELECT NULL AS table_cat, t.owner AS table_schem,t.table_name AS
    table_name,t.column_name AS column_name, DECODE (t.data_type, 'CHAR',
    1, 'CLOB', 2005, 'BLOB', 2004, 'VARCHAR2', 12, 'NUMBER', 3, 'LONG',
    -1, 'DATE', 93,'RAW', -3, 'LONG RAW', -4, 'BINARY_FLOAT', 7,
    'BINARY_DOUBLE', 8, 'XMLTYPE',2005, 'BFILE',2004,'NCHAR',1,
    'NVARCHAR2',12, 'NCLOB', 2005, 'ROWID', 12, 'FLOAT', 8, 1111) AS
    data_type, t.data_type AS type_name, decode(t.data_type, 'NUMBER',
    decode(t.data_precision, null, decode(t.data_scale, null, 0, 0, 38,
    t.data_scale), t.data_precision), 'FLOAT', 15, 'CLOB',2147483647,
    'NCLOB', 2147483647, 'LONG', 2147483647, 'BLOB', 2147483647, 'LONG
    RAW', 2147483647, 'BFILE', 2147483647, 'DATE', 19, 'ROWID', 18,
    'BINARY_FLOAT', 7, 'BINARY_DOUBLE', 15,decode(t.data_length, 0, 1,
    t.data_length)) as column_size, 0 AS buffer_length,
    decode(t.data_type, 'NUMBER', decode(t.data_scale, null,
    decode(t.data_precision, null, 0,null), t.data_scale), 'FLOAT',
    NULL,'DATE', 0, NULL) AS decimal_digits, decode(t.data_type,
    'BINARY_FLOAT', 10, 'BINARY_DOUBLE', 10, 'FLOAT', 10, 'NUMBER', 10,
    NULL) AS num_prec_radix, DECODE (t.nullable, 'N', 0, 1) AS nullable,
    NULL AS remarks,NULL AS column_def, null AS sql_data_type, null AS
    sql_datetime_sub, decode(t.data_type, 'VARCHAR2',
    decode(t.data_length, 0, 1, t.data_length), 'CHAR', t.data_length,
    'NCHAR', t.data_length, 'CLOB', 2147483647, 'NCLOB', 2147483647,
    'LONG', 2147483647, 'BFILE', 2147483647, NULL) AS char_octet_length,
    t.column_id AS ordinal_position, DECODE (t.nullable, 'N', 'NO', 'YES')
    AS is_nullable, null as SCOPE_CATLOG, null as SCOPE_SCHEMA, null as
    SCOPE_TABLE, null as SOURCE_DATA_TYPE FROM all_tab_columns t WHERE
    t.owner LIKE 'REI' ESCAPE '\' AND t.table_name LIKE 'G_PAGE' ESCAPE
    '\' AND t.column_name LIKE '%' ESCAPE '\' UNION ALL SELECT NULL,
    asy.owner, asy.synonym_name , t.column_name, DECODE (t.data_type,
    'CHAR', 1, 'CLOB', 2005, 'BLOB', 2004, 'VARCHAR2', 12, 'NUMBER', 3,
    'LONG', -1, 'DATE', 93,'RAW', -3, 'LONG RAW', -4, 'BINARY_FLOAT', 7,
    'BINARY_DOUBLE', 8, 'XMLTYPE',2005, 'BFILE',2004,'NCHAR',1,
    'NVARCHAR2',12, 'NCLOB', 2005, 'ROWID', 12, 'FLOAT', 8, 1111),
    t.data_type, decode(t.data_type, 'NUMBER', decode(t.data_precision,
    null, decode(t.data_scale, null, 0, 0, 38, t.data_scale),
    t.data_precision), 'FLOAT', 15, 'CLOB',2147483647, 'NCLOB',
    2147483647, 'LONG', 2147483647, 'BLOB', 2147483647, 'LONG
    RAW',2147483647, 'BFILE', 2147483647, 'DATE', 19, 'ROWID', 18,
    'BINARY_FLOAT', 7, 'BINARY_DOUBLE', 15,decode(t.data_length, 0, 1,
    t.data_length)), 0, decode(t.data_type, 'NUMBER', nvl(t.data_scale,
    0), 'DATE', 0, 'FLOAT', NULL, NULL) AS decimal_digits,
    decode(t.data_type, 'FLOAT', 10, 'NUMBER', 10, NULL), DECODE
    (t.nullable, 'N', 0, 1), NULL, NULL, null, null, decode(t.data_type,
    'VARCHAR2', decode(t.data_length, 0, 1, t.data_length), 'CHAR',
    t.data_length, 'NCHAR', t.data_length, 'CLOB', 2147483647, 'NCLOB',
    2147483647, 'LONG', 2147483647, 'BFILE', 2147483647, NULL),
    t.column_id, DECODE (t.nullable, 'N', 'NO', 'YES'), null, null, null,
    null FROM all_synonyms asy, all_tab_columns t WHERE t.table_name =
    asy.table_name AND t.owner = asy.table_owner AND t.column_name LIKE
    '%' ESCAPE '\' AND asy.owner LIKE 'REI' ESCAPE '\' AND
    asy.synonym_name LIKE 'G_PAGE' ESCAPE '\' ORDER BY table_schem,
    table_name, ordinal_positionThis is a very long and resource consuming query.
    Why this query is executed everytime I do a commit, select or anything.
    A commit is 30 sec long (http://swforum.sun.com/jive/thread.jspa?threadID=93759&tstart=0).
    Are all Oracle users subject to this problem?
    Regards
    Kuon

    Here's my theory:
    Oracle's jdbc driver (not Sun's) doesn't support rowset.getMetaData() until the query statement is executed. I understand that the database itself doesn't have support. (a year ago this was a problem, I still think so now).
    Sun's jdbc driver for Oracle (repackaged from DataDirect) does support rowset.getMetatData().
    So how does it do this? I don't know exactly, but the only way I can think of is that it is to parse the query, get the database meta data, and use all that to determine the resultSet meta data.
    I think you're seeing the "get the database meta data" request, and that's just taking along time.
    I'd expect that data to be cached by the driver on (at least) a per-connection basis. Doesn't look like though.
    Maybe someone from Sun has the current scoop for plans in this area.
    In the meantime, I think you're hosed if you want to use a CachedRowSet.
    Workarounds would be using plain old jdbc, hibernate, etc., to get the data then wrapping your results into an ObjectArrayDataProvider or whatever.
    Good luck.

  • Crash during spotlight indexing - Mountain Lion

    Macbook Pro
    Late 2011
    Mountain Lion
    500GB SSD (replaced original 750GB)
    1TB (replaced faulty optical drive with OWC data doubler)
    16GB ram (2x OWC 8GB)
    Over the last couple of months I've been plagued with crashes and kernal panics that, after time will result in my hdd failing and having to be reformatted and OS X reinstalled. The first time it happened I took my macbook into the genius bar as I had never encountered this problem before and they said one of the disks was faulty but they couldn't tell me which and recommended reformat (the drives were only a few weeks old) which I did and backed up as much data as I could. I only reformatted my boot disk (SSD) as I figured it was a OS issue After a reinstall of Mountain Lion it ran smooth for a bit until it happened again, I thought perhaps I had installed the SSD incorrect and got it damaged with ESD so I had it replaced under warranty.
    After a fresh install of OS X and all my apps it started happenning again almost straight away. This time I did a bit of digging into why it was crashing and learned how to read crash and panic reports and started uninstalling apps that were near or at the top of the threads before time of crash. After doing this it ran well with no hiccups until this morning it crashed while spotlight was indexing and i was also analysing some songs in Mixed in Key. MIK is fairly resource hungry but has never caused a crash before. After crashing and restarting the grey screen appeared with a loading bar which reaches about 40% and the macbook shuts down it does not reboot. Running disk utility and trying to repair the disk failed.I tried plugging in my external drive with OS X installed on it so i can access the files on the faulty drive, but as the drive had been unmounted and wouldn't mount for some reason I could not access my hdd to read the crash log. I ended up finding software that allowed me to read files on an unmounted drive and here are the 2 crash logs leading up to it.
    I cannot understand what the problem was so I thought i'd post my question here with everyone else's and hope someone can help me. Sorry for the long winded explaination I just thought I would give information leading up to it. Hopefully it is a particular app causing the problem and not a hardware fault, but seeing as its been ongoing and i've replaced the SSD hdd once already i think i can rule it out. Perhaps it is a faulty logic board as i've read can also be an issue. Any help is appreciated.
    Here are the 2 crash reports:
    Process:         mds [15388]
    Path:            /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Support/mds
    Identifier:      mds
    Version:         707.12
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [1]
    User ID:         0
    Date/Time:       2014-02-09 16:07:30.703 +0800
    OS Version:      Mac OS X 10.8.5 (12F45)
    Report Version:  10
    Crashed Thread:  4  Dispatch queue: <MDSImporterProxy 0x7feaa5c0f510 shutdown:NO got shutdown notification:NO>
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x0000080000000000
    VM Regions Near 0x80000000000:
        MALLOC_LARGE (reserved 000000013075e000-000000013092f000 [ 1860K] rw-/rwx SM=NUL  reserved VM address space (unallocated)
    -->
        MALLOC_TINY            00007fea93400000-00007fea93600000 [ 2048K] rw-/rwx SM=PRV 
    Application Specific Information:
    objc_msgSend() selector name: hash
    [0x107d51000](Warning) IndexPath in void _SIPreHeatPermissions(SIRef, RLEOIDArrayRef, SIUserCtxRef, void (*)(void *), void *):pre-heat 82750 items exceeded limit, falling back to default
    Initializing
    Thread 0:: Dispatch queue: com.apple.main-thread
    0   libsystem_kernel.dylib                  0x00007fff920af686 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff920aec42 mach_msg + 70
    2   com.apple.CoreFoundation                0x00007fff89e4e233 __CFRunLoopServiceMachPort + 195
    3   com.apple.CoreFoundation                0x00007fff89e53916 __CFRunLoopRun + 1078
    4   com.apple.CoreFoundation                0x00007fff89e530e2 CFRunLoopRunSpecific + 290
    5   mds                                     0x00000001073bd474 0x1073af000 + 58484
    6   libdyld.dylib                           0x00007fff8ea2a7e1 start + 1
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x00007fff920b1d16 kevent + 10
    1   libdispatch.dylib                       0x00007fff8db32dea _dispatch_mgr_invoke + 883
    2   libdispatch.dylib                       0x00007fff8db329ee _dispatch_mgr_thread + 54
    Thread 2:
    0   libsystem_kernel.dylib                  0x00007fff920b1ffa read + 10
    1   mds                                     0x00000001073b870d 0x1073af000 + 38669
    2   libsystem_c.dylib                       0x00007fff8d6bb772 _pthread_start + 327
    3   libsystem_c.dylib                       0x00007fff8d6a81a1 thread_start + 13
    Thread 3:
    0   libsystem_kernel.dylib                  0x00007fff920b16d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff8d6bdf1c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff8d6bdce3 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff8d6a8191 start_wqthread + 13
    Thread 4 Crashed:: Dispatch queue: <MDSImporterProxy 0x7feaa5c0f510 shutdown:NO got shutdown notification:NO>
    0   libobjc.A.dylib                         0x00007fff8b8cc24c objc_msgSend + 12
    1   com.apple.CoreFoundation                0x00007fff89f4012d -[__NSDictionaryM objectForKey:] + 77
    2   com.apple.CoreFoundation                0x00007fff89ec2f1c -[NSDictionary __apply:context:] + 204
    3   com.apple.CoreFoundation                0x00007fff89e4e2dc CFDictionaryApplyFunction + 92
    4   com.apple.CoreFoundation                0x00007fff89e4f09d __CFPropertyListIsValidAux + 349
    5   com.apple.CoreFoundation                0x00007fff89e6edd7 __CFPropertyListIsDictPlistAux + 247
    6   com.apple.CoreFoundation                0x00007fff89ec2f2f -[NSDictionary __apply:context:] + 223
    7   com.apple.CoreFoundation                0x00007fff89e4e2dc CFDictionaryApplyFunction + 92
    8   com.apple.CoreFoundation                0x00007fff89e4f09d __CFPropertyListIsValidAux + 349
    9   com.apple.CoreFoundation                0x00007fff89e6edd7 __CFPropertyListIsDictPlistAux + 247
    10  com.apple.CoreFoundation                0x00007fff89ec2f2f -[NSDictionary __apply:context:] + 223
    11  com.apple.CoreFoundation                0x00007fff89e4e2dc CFDictionaryApplyFunction + 92
    12  com.apple.CoreFoundation                0x00007fff89e4f09d __CFPropertyListIsValidAux + 349
    13  com.apple.CoreFoundation                0x00007fff89e4ee2c CFPropertyListCreateData + 140
    14  com.apple.Foundation                    0x00007fff87153b52 +[NSPropertyListSerialization dataWithPropertyList:format:options:error:] + 37
    15  mds                                     0x000000010746e6ae 0x1073af000 + 784046
    16  mds                                     0x00000001074668db 0x1073af000 + 751835
    17  com.apple.Metadata                      0x00007fff91ff2bc6 mach_msg_dispatch + 156
    18  mds                                     0x00000001074097fb 0x1073af000 + 370683
    19  libsystem_kernel.dylib                  0x00007fff920af223 mach_msg_server_once + 387
    20  mds                                     0x00000001074095e1 0x1073af000 + 370145
    21  libdispatch.dylib                       0x00007fff8db300b6 _dispatch_client_callout + 8
    22  libdispatch.dylib                       0x00007fff8db3229b _dispatch_source_invoke + 691
    23  libdispatch.dylib                       0x00007fff8db31305 _dispatch_queue_invoke + 72
    24  libdispatch.dylib                       0x00007fff8db31448 _dispatch_queue_drain + 180
    25  libdispatch.dylib                       0x00007fff8db312f1 _dispatch_queue_invoke + 52
    26  libdispatch.dylib                       0x00007fff8db311c3 _dispatch_worker_thread2 + 249
    27  libsystem_c.dylib                       0x00007fff8d6bdcdb _pthread_wqthread + 404
    28  libsystem_c.dylib                       0x00007fff8d6a8191 start_wqthread + 13
    Thread 5:
    0   libsystem_kernel.dylib                  0x00007fff920b16d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff8d6bdf1c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff8d6bdce3 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff8d6a8191 start_wqthread + 13
    Thread 6:
    0   libsystem_kernel.dylib                  0x00007fff920b16d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff8d6bdf1c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff8d6bdce3 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff8d6a8191 start_wqthread + 13
    Thread 7:
    0   libsystem_kernel.dylib                  0x00007fff920b16d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff8d6bdf1c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff8d6bdce3 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff8d6a8191 start_wqthread + 13
    Thread 8:
    0   libsystem_kernel.dylib                  0x00007fff920b16d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff8d6bdf1c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff8d6bdce3 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff8d6a8191 start_wqthread + 13
    Thread 9:
    0   libsystem_kernel.dylib                  0x00007fff920b16d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff8d6bdf1c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff8d6bdce3 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff8d6a8191 start_wqthread + 13
    Thread 4 crashed with X86 Thread State (64-bit):
      rax: 0x00007feaa4a4b400  rbx: 0x00007feaacb70150  rcx: 0x00007fff76119e20  rdx: 0x0000080000000000
      rdi: 0x0000080000000000  rsi: 0x00007fff90bd3691  rbp: 0x0000000110bb1c10  rsp: 0x0000000110bb1bc8
       r8: 0x0000000000000023   r9: 0x00007feaa423ee13  r10: 0x00007feaa423ee13  r11: 0x00007feaa423ee11
      r12: 0x000000000000043f  r13: 0x0000000000000010  r14: 0x00000000000001a5  r15: 0x0000080000000000
      rip: 0x00007fff8b8cc24c  rfl: 0x0000000000010246  cr2: 0x0000080000000000
    Logical CPU: 4
    Binary Images:
           0x1073af000 -        0x1074cefff  mds (707.12) <72984FB4-5955-3336-9DF3-C079D3126DEF> /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework /Support/mds
           0x107526000 -        0x1076f5fff  com.apple.spotlight.index (10.7.0 - 707.12) <FD63669B-3D65-34E5-A48A-BED4933FCD79> /System/Library/PrivateFrameworks/SpotlightIndex.framework/Versions/A/Spotlight Index
           0x107759000 -        0x10775fff7  com.apple.MDSChannel (1.2 - 1.2) <05A6F55A-8197-316A-A127-DE6528F9B291> /System/Library/PrivateFrameworks/MDSChannel.framework/Versions/A/MDSChannel
           0x107766000 -        0x10776afff  com.apple.ServerInformation (1.2 - 1) <5AC80E5E-3B55-3784-854D-1D49A874E775> /System/Library/PrivateFrameworks/ServerInformation.framework/Versions/A/Server Information
           0x107773000 -        0x1077ebfff  com.apple.DCERPC (1.5 - 53.1.1) <25F4A15A-5252-3C70-A1D0-8145357F78B8> /System/Library/PrivateFrameworks/DCERPC.framework/Versions/A/DCERPC
           0x107814000 -        0x10782dff7  com.apple.SMBClient (1.8 - 1.8) <CCEABA2F-2F88-3CF1-B39E-5D92DE47BACF> /System/Library/PrivateFrameworks/SMBClient.framework/Versions/A/SMBClient
           0x114935000 -        0x114a4efff  libmecab.1.0.0.dylib (359.70) <6A697F27-0296-3BEF-BBCE-D96471D5FE32> /usr/lib/libmecab.1.0.0.dylib
           0x117703000 -        0x117708ff7  libgermantok.dylib (7) <B98522FA-23D1-351E-9F25-5AAF58FD862D> /usr/lib/libgermantok.dylib
        0x7fff66faf000 -     0x7fff66fe394f  dyld (210.2.3) <8958FE97-5830-3928-BC38-23136E7D3783> /usr/lib/dyld
        0x7fff85729000 -     0x7fff85751fff  libJPEG.dylib (851) <64A3EB03-34FB-308C-817B-6106D1F4D80F> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
        0x7fff857f7000 -     0x7fff85910fff  com.apple.ImageIO.framework (3.2.2 - 851) <6552C673-9F29-3B31-A12E-C4391A950965> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
        0x7fff85911000 -     0x7fff8591ffff  libcommonCrypto.dylib (60027) <BAAFE0C9-BB86-3CA7-88C0-E3CBA98DA06F> /usr/lib/system/libcommonCrypto.dylib
        0x7fff85a3d000 -     0x7fff85a81fff  libcups.2.dylib (327.7) <9F35B58A-F47E-348A-8E09-E235FA4B9270> /usr/lib/libcups.2.dylib
        0x7fff85a82000 -     0x7fff85a89fff  com.apple.NetFS (5.0 - 4.0) <82E24B9A-7742-3DA3-9E99-ED267D98C05E> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
        0x7fff85a8a000 -     0x7fff85b3bfff  com.apple.LaunchServices (539.9 - 539.9) <07FC6766-778E-3479-8F28-D2C9917E1DD1> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
        0x7fff85db8000 -     0x7fff85dc4fff  com.apple.CrashReporterSupport (10.8.3 - 418) <DE6AFE16-D97E-399D-82ED-3522C773C36E> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
        0x7fff85e0e000 -     0x7fff85e1cfff  com.apple.Librarian (1.1 - 1) <5AC28666-7642-395F-A923-C6F8A274BBBD> /System/Library/PrivateFrameworks/Librarian.framework/Versions/A/Librarian
        0x7fff85e1f000 -     0x7fff85e24fff  com.apple.OpenDirectory (10.8 - 151.10) <51E52779-4F5A-36B5-9297-67138547DCA9> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
        0x7fff85e25000 -     0x7fff85e2eff7  com.apple.CommerceCore (1.0 - 26.2) <AF35874A-6FA7-328E-BE30-8BBEF0B741A8> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
        0x7fff85e2f000 -     0x7fff85e31fff  libquarantine.dylib (52.1) <143B726E-DF47-37A8-90AA-F059CFD1A2E4> /usr/lib/system/libquarantine.dylib
        0x7fff86213000 -     0x7fff862d8ff7  com.apple.coreui (2.0 - 181.1) <83D2C92D-6842-3C9D-9289-39D5B4554C3A> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
        0x7fff862d9000 -     0x7fff866f6fff  FaceCoreLight (2.4.1) <DDAFFD7A-D312-3407-A010-5AEF3E17831B> /System/Library/PrivateFrameworks/FaceCoreLight.framework/Versions/A/FaceCoreLi ght
        0x7fff866f7000 -     0x7fff86a27fff  com.apple.HIToolbox (2.0 - 626.1) <656D08C2-9068-3532-ABDD-32EC5057CCB2> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
        0x7fff86a28000 -     0x7fff86a3bff7  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
        0x7fff86f44000 -     0x7fff86fdefff  libvMisc.dylib (380.10) <A7F12764-A94C-36EB-88E0-F826F5AF55B4> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
        0x7fff87010000 -     0x7fff8701dfff  libbz2.1.0.dylib (29) <CE9785E8-B535-3504-B392-82F0064D9AF2> /usr/lib/libbz2.1.0.dylib
        0x7fff8704b000 -     0x7fff8709aff7  libFontRegistry.dylib (100) <2E03D7DA-9B8F-31BB-8FB5-3D3B6272127F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
        0x7fff8709b000 -     0x7fff8709efff  com.apple.AppleSystemInfo (2.0 - 2) <BC221376-361F-3F85-B284-DC251D3BB442> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSys temInfo
        0x7fff8709f000 -     0x7fff873fefff  com.apple.Foundation (6.8 - 945.18) <1D7E58E6-FA3A-3CE8-AC85-B9D06B8C0AA0> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
        0x7fff873ff000 -     0x7fff87400fff  libsystem_blocks.dylib (59) <D92DCBC3-541C-37BD-AADE-ACC75A0C59C8> /usr/lib/system/libsystem_blocks.dylib
        0x7fff874fc000 -     0x7fff8751eff7  com.apple.Kerberos (2.0 - 1) <C49B8820-34ED-39D7-A407-A3E854153556> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
        0x7fff8751f000 -     0x7fff87562ff7  com.apple.RemoteViewServices (2.0 - 80.6) <5CFA361D-4853-3ACC-9EFC-A2AC1F43BA4B> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
        0x7fff879c8000 -     0x7fff879ceff7  libunwind.dylib (35.1) <21703D36-2DAB-3D8B-8442-EAAB23C060D3> /usr/lib/system/libunwind.dylib
        0x7fff87a1f000 -     0x7fff87b1cfff  libsqlite3.dylib (138.1) <ADE9CB98-D77D-300C-A32A-556B7440769F> /usr/lib/libsqlite3.dylib
        0x7fff87b1d000 -     0x7fff87b3fff7  libxpc.dylib (140.43) <70BC645B-6952-3264-930C-C835010CCEF9> /usr/lib/system/libxpc.dylib
        0x7fff87b40000 -     0x7fff87b4afff  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
        0x7fff87e8e000 -     0x7fff87faefff  com.apple.desktopservices (1.7.4 - 1.7.4) <ED3DA8C0-160F-3CDC-B537-BF2E766AB7C1> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
        0x7fff87fbb000 -     0x7fff87fbcff7  libSystem.B.dylib (169.3) <DF030DDB-DF22-3769-A8CD-9806DDB84008> /usr/lib/libSystem.B.dylib
        0x7fff87fbd000 -     0x7fff87ff3fff  libsystem_info.dylib (406.17) <4FFCA242-7F04-365F-87A6-D4EFB89503C1> /usr/lib/system/libsystem_info.dylib
        0x7fff88366000 -     0x7fff88438ff7  com.apple.CoreText (260.0 - 275.17) <AB493289-E188-3CCA-8658-1E5039715F82> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
        0x7fff88439000 -     0x7fff8843bfff  com.apple.TrustEvaluationAgent (2.0 - 23) <A97D348B-32BF-3E52-8DF2-59BFAD21E1A3> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
        0x7fff8843c000 -     0x7fff88465fff  libsandbox.1.dylib (220.3) <410BC7E1-24A4-3E5A-ACCF-2F444DC82814> /usr/lib/libsandbox.1.dylib
        0x7fff88466000 -     0x7fff8847dfff  com.apple.GenerationalStorage (1.1 - 132.3) <FD4A84B3-13A8-3C60-A59E-25A361447A17> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
        0x7fff8847e000 -     0x7fff88875fff  libLAPACK.dylib (1073.4) <D632EC8B-2BA0-3853-800A-20DA00A1091C> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
        0x7fff88876000 -     0x7fff88878fff  libCVMSPluginSupport.dylib (8.10.1) <F0239392-E0CB-37D7-BFE2-D6F5D42F9196> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
        0x7fff88879000 -     0x7fff8887aff7  libsystem_sandbox.dylib (220.3) <B739DA63-B675-387A-AD84-412A651143C0> /usr/lib/system/libsystem_sandbox.dylib
        0x7fff8887b000 -     0x7fff888c5ff7  libGLU.dylib (8.10.1) <6699DEA6-9EEB-3B84-A57F-B25AE44EC584> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
        0x7fff888c6000 -     0x7fff888cafff  libGIF.dylib (851) <AD40D084-6E34-38CD-967D-705F94B188DA> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
        0x7fff88929000 -     0x7fff8892dfff  com.apple.IOSurface (86.0.4 - 86.0.4) <26F01CD4-B76B-37A3-989D-66E8140542B3> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
        0x7fff88d57000 -     0x7fff88d7cff7  libc++abi.dylib (26) <D86169F3-9F31-377A-9AF3-DB17142052E4> /usr/lib/libc++abi.dylib
        0x7fff88dc1000 -     0x7fff88e7eff7  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
        0x7fff88ecc000 -     0x7fff88eccfff  com.apple.Accelerate.vecLib (3.8 - vecLib 3.8) <F565B686-24E2-39F2-ACC3-C5E4084476BE> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
        0x7fff88ecd000 -     0x7fff88ed5fff  liblaunch.dylib (442.26.2) <2F71CAF8-6524-329E-AC56-C506658B4C0C> /usr/lib/system/liblaunch.dylib
        0x7fff88f21000 -     0x7fff88f42ff7  libCRFSuite.dylib (33) <736ABE58-8DED-3289-A042-C25AF7AE5B23> /usr/lib/libCRFSuite.dylib
        0x7fff88f43000 -     0x7fff88f94ff7  com.apple.SystemConfiguration (1.12.2 - 1.12.2) <581BF463-C15A-363B-999A-E830222FA925> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
        0x7fff89023000 -     0x7fff891befef  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
        0x7fff891bf000 -     0x7fff891bffff  com.apple.vecLib (3.8 - vecLib 3.8) <6CBBFDC4-415C-3910-9558-B67176447789> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
        0x7fff891c0000 -     0x7fff891c8ff7  libsystem_dnssd.dylib (379.38.1) <BDCB8566-0189-34C0-9634-35ABD3EFE25B> /usr/lib/system/libsystem_dnssd.dylib
        0x7fff891d6000 -     0x7fff89219ff7  com.apple.bom (12.0 - 192) <0BF1F2D2-3648-36B7-BE4B-551A0173209B> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
        0x7fff89226000 -     0x7fff89231fff  com.apple.CommonAuth (3.0 - 2.0) <1CA95702-DDC7-3ADB-891E-7F037ABDDA14> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
        0x7fff89232000 -     0x7fff89295fff  com.apple.audio.CoreAudio (4.1.2 - 4.1.2) <FEAB83AB-1DE5-3813-BA48-7A7F2374CCF0> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
        0x7fff89296000 -     0x7fff89323ff7  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
        0x7fff89341000 -     0x7fff89341fff  com.apple.Accelerate (1.8 - Accelerate 1.8) <878A6E7E-CB34-380F-8212-47FBF12C7C96> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
        0x7fff8937d000 -     0x7fff893d7ff7  com.apple.opencl (2.2.19 - 2.2.19) <3C7DFB2C-B3F9-3447-A1FC-EAAA42181A6E> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
        0x7fff8950f000 -     0x7fff8951cfff  com.apple.KerberosHelper (4.0 - 1.0) <6815439D-1A03-3251-99FE-CC24CF4C93C5> /System/Library/PrivateFrameworks/KerberosHelper.framework/Versions/A/KerberosH elper
        0x7fff89527000 -     0x7fff8952bff7  com.apple.TCC (1.0 - 1) <F2F3B753-FC73-3543-8BBE-859FDBB4D6A6> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
        0x7fff8952c000 -     0x7fff89761ff7  com.apple.CoreData (106.1 - 407.7) <A676E1A4-2144-376B-92B8-B450DD1D78E5> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
        0x7fff89762000 -     0x7fff89763ff7  libremovefile.dylib (23.2) <6763BC8E-18B8-3AD9-8FFA-B43713A7264F> /usr/lib/system/libremovefile.dylib
        0x7fff89764000 -     0x7fff8978ffff  libxslt.1.dylib (11.3) <441776B8-9130-3893-956F-39C85FFA644F> /usr/lib/libxslt.1.dylib
        0x7fff8979d000 -     0x7fff897b4fff  libGL.dylib (8.10.1) <F8BABA3C-7810-3A65-83FC-61945AA50E90> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
        0x7fff897b5000 -     0x7fff897ebfff  com.apple.DebugSymbols (98 - 98) <14E788B1-4EB2-3FD7-934B-849534DFC198> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
        0x7fff897ec000 -     0x7fff897f1fff  libcache.dylib (57) <65187C6E-3FBF-3EB8-A1AA-389445E2984D> /usr/lib/system/libcache.dylib
        0x7fff89862000 -     0x7fff898b1ff7  libcorecrypto.dylib (106.2) <CE0C29A3-C420-339B-ADAA-52F4683233CC> /usr/lib/system/libcorecrypto.dylib
        0x7fff89999000 -     0x7fff899f8fff  com.apple.AE (645.6 - 645.6) <44F403C1-660A-3543-AB9C-3902E02F936F> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
        0x7fff899f9000 -     0x7fff89a0ffff  com.apple.MultitouchSupport.framework (237.4 - 237.4) <0F7FEE29-161B-3D8E-BE91-308CBD354461> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
        0x7fff89ae5000 -     0x7fff89b67ff7  com.apple.Heimdal (3.0 - 2.0) <ACF0C667-5ACC-382A-A998-61E85386C814> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
        0x7fff89b68000 -     0x7fff89b68ffd  com.apple.audio.units.AudioUnit (1.9.2 - 1.9.2) <6D314680-7409-3BC7-A807-36341411AF9A> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
        0x7fff89b69000 -     0x7fff89ba6fef  libGLImage.dylib (8.10.1) <91E31B9B-4141-36D5-ABDC-20F1D6D1D0CF> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
        0x7fff89e1d000 -     0x7fff89e1dfff  libOpenScriptingUtil.dylib (148.3) <F8681222-0969-3B10-8BCE-C55A4B9C520C> /usr/lib/libOpenScriptingUtil.dylib
        0x7fff89e1e000 -     0x7fff8a008ff7  com.apple.CoreFoundation (6.8 - 744.19) <0F7403CA-2CB8-3D0A-992B-679701DF27CA> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
        0x7fff8a009000 -     0x7fff8a088ff7  com.apple.securityfoundation (6.0 - 55115.4) <9291CE2A-37D9-39DF-956E-7B2650A9F3B0> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
        0x7fff8a09d000 -     0x7fff8aa2d627  com.apple.CoreGraphics (1.600.0 - 333.1) <C085C074-7260-3C3D-90C6-A65D3CB2BD41> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
        0x7fff8aa32000 -     0x7fff8aa63ff7  com.apple.DictionaryServices (1.2 - 184.4) <FB0540FF-5034-3591-A28D-6887FBC220F7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
        0x7fff8b050000 -     0x7fff8b051ff7  libdnsinfo.dylib (453.19) <14202FFB-C3CA-3FCC-94B0-14611BF8692D> /usr/lib/system/libdnsinfo.dylib
        0x7fff8b0a1000 -     0x7fff8b2a1fff  libicucore.A.dylib (491.11.3) <5783D305-04E8-3D17-94F7-1CEAFA975240> /usr/lib/libicucore.A.dylib
        0x7fff8b2cf000 -     0x7fff8b2effff  libPng.dylib (851) <3466F35C-EC1A-3D1A-80DC-175857FA19D5> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
        0x7fff8b2f0000 -     0x7fff8b2fbfff  libsystem_notify.dylib (98.5) <C49275CC-835A-3207-AFBA-8C01374927B6> /usr/lib/system/libsystem_notify.dylib
        0x7fff8b2fc000 -     0x7fff8b30bfff  com.apple.opengl (1.8.10 - 1.8.10) <AD49CF56-B7C1-3598-8610-58532FC41345> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
        0x7fff8b30c000 -     0x7fff8b361ff7  libTIFF.dylib (851) <7706BB07-E7E8-38BE-A5F0-D8B63E3B9283> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
        0x7fff8b362000 -     0x7fff8b368fff  libmacho.dylib (829) <BF332AD9-E89F-387E-92A4-6E1AB74BD4D9> /usr/lib/system/libmacho.dylib
        0x7fff8b369000 -     0x7fff8b369fff  com.apple.ApplicationServices (45 - 45) <A3ABF20B-ED3A-32B5-830E-B37831A45A80> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
        0x7fff8b36a000 -     0x7fff8b444fff  com.apple.backup.framework (1.4.3 - 1.4.3) <6B65C44C-7777-3331-AD9D-438D10AAC777> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
        0x7fff8b8ba000 -     0x7fff8b8c5ff7  com.apple.bsd.ServiceManagement (2.0 - 2.0) <C12962D5-85FB-349E-AA56-64F4F487F219> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
        0x7fff8b8c6000 -     0x7fff8b9de92f  libobjc.A.dylib (532.2) <90D31928-F48D-3E37-874F-220A51FD9E37> /usr/lib/libobjc.A.dylib
        0x7fff8ba47000 -     0x7fff8bb49fff  libJP2.dylib (851) <26FFBDBF-9CCE-33D7-A45B-0A31C98DA37E> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
        0x7fff8ce27000 -     0x7fff8ce28fff  libDiagnosticMessagesClient.dylib (8) <8548E0DC-0D2F-30B6-B045-FE8A038E76D8> /usr/lib/libDiagnosticMessagesClient.dylib
        0x7fff8ce29000 -     0x7fff8ce38ff7  libxar.1.dylib (105) <370ED355-E516-311E-BAFD-D80633A84BE1> /usr/lib/libxar.1.dylib
        0x7fff8ce39000 -     0x7fff8ce67ff7  libsystem_m.dylib (3022.6) <B434BE5C-25AB-3EBD-BAA7-5304B34E3441> /usr/lib/system/libsystem_m.dylib
        0x7fff8ce74000 -     0x7fff8cea2fff  com.apple.CoreServicesInternal (154.3 - 154.3) <F4E118E4-E327-3314-83D7-EA20B1717ED0> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/Cor eServicesInternal
        0x7fff8ced2000 -     0x7fff8ced7fff  libcompiler_rt.dylib (30) <08F8731D-5961-39F1-AD00-4590321D24A9> /usr/lib/system/libcompiler_rt.dylib
        0x7fff8cfbd000 -     0x7fff8d03dff7  com.apple.ApplicationServices.ATS (332 - 341.1) <39B53565-FA31-3F61-B090-C787C983142E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
        0x7fff8d0d3000 -     0x7fff8d13bff7  libc++.1.dylib (65.1) <20E31B90-19B9-3C2A-A9EB-474E08F9FE05> /usr/lib/libc++.1.dylib
        0x7fff8d13c000 -     0x7fff8d1e2ff7  com.apple.CoreServices.OSServices (557.6 - 557.6) <E91B0882-E75C-30E9-8DCD-7A0EEE4405CC> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
        0x7fff8d1e3000 -     0x7fff8d202ff7  com.apple.ChunkingLibrary (2.0 - 133.3) <8BEC9AFB-DCAA-37E8-A5AB-24422B234ECF> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/Chunking Library
        0x7fff8d251000 -     0x7fff8d257fff  com.apple.DiskArbitration (2.5.2 - 2.5.2) <C713A35A-360E-36CE-AC0A-25C86A3F50CA> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
        0x7fff8d258000 -     0x7fff8d2c6ff7  com.apple.framework.IOKit (2.0.1 - 755.42.1) <A90038ED-48F2-3CC9-A042-53A3D7985844> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
        0x7fff8d2c9000 -     0x7fff8d315ff7  libauto.dylib (185.4) <AD5A4CE7-CB53-313C-9FAE-673303CC2D35> /usr/lib/libauto.dylib
        0x7fff8d316000 -     0x7fff8d413ff7  libxml2.2.dylib (22.3) <47B09CB2-C636-3024-8B55-6040F7829B4C> /usr/lib/libxml2.2.dylib
        0x7fff8d414000 -     0x7fff8d46efff  com.apple.print.framework.PrintCore (8.3 - 387.2) <5BA0CBED-4D80-386A-9646-F835C9805B71> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
        0x7fff8d46f000 -     0x7fff8d4cbff7  com.apple.Symbolication (1.3 - 93) <84D69A46-BB0A-3DBE-ABC2-B767F61EC221> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
        0x7fff8d4cc000 -     0x7fff8d4d0fff  libMatch.1.dylib (17) <E10E50F3-25F8-3B9B-AA11-923E40F5FFDD> /usr/lib/libMatch.1.dylib
        0x7fff8d4d1000 -     0x7fff8d623fff  com.apple.audio.toolbox.AudioToolbox (1.9.2 - 1.9.2) <DC5F3D1B-036A-37DE-BC24-7636DC95EA1C> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
        0x7fff8d628000 -     0x7fff8d691fff  libstdc++.6.dylib (56) <EAA2B53E-EADE-39CF-A0EF-FB9D4940672A> /usr/lib/libstdc++.6.dylib
        0x7fff8d6a7000 -     0x7fff8d773ff7  libsystem_c.dylib (825.40.1) <543B05AE-CFA5-3EFE-8E58-77225411BA6B> /usr/lib/system/libsystem_c.dylib
        0x7fff8d7d4000 -     0x7fff8d7fbff7  com.apple.PerformanceAnalysis (1.16 - 16) <96A89CD5-16E9-37CA-8740-22B5DB5A4679> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
        0x7fff8d7fc000 -     0x7fff8d81dfff  com.apple.Ubiquity (1.2 - 243.15) <C9A7EE77-B637-3676-B667-C0843BBB0409> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
        0x7fff8d911000 -     0x7fff8dabffff  com.apple.QuartzCore (1.8 - 304.3) <F450F2DE-2F24-3557-98B6-310E05DAC17F> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
        0x7fff8dac0000 -     0x7fff8db2dff7  com.apple.datadetectorscore (4.1 - 269.3) <5775F0DB-87D6-310D-8B03-E2AD729EFB28> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
        0x7fff8db2e000 -     0x7fff8db43ff7  libdispatch.dylib (228.23) <D26996BF-FC57-39EB-8829-F63585561E09> /usr/lib/system/libdispatch.dylib
        0x7fff8dc49000 -     0x7fff8dce4fff  com.apple.CoreSymbolication (3.0 - 117) <7D43ED93-BD81-338C-8076-6A932A1D19E8> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
        0x7fff8dcfb000 -     0x7fff8dcfffff  libpam.2.dylib (20) <C8F45864-5B58-3237-87E1-2C258A1D73B8> /usr/lib/libpam.2.dylib
        0x7fff8deb2000 -     0x7fff8ded1ff7  libresolv.9.dylib (51) <0882DC2D-A892-31FF-AD8C-0BB518C48B23> /usr/lib/libresolv.9.dylib
        0x7fff8e194000 -     0x7fff8e194fff  com.apple.CoreServices (57 - 57) <9DD44CB0-C644-35C3-8F57-0B41B3EC147D> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
        0x7fff8e240000 -     0x7fff8e24dfff  com.apple.AppleFSCompression (49 - 1.0) <5508344A-2A7E-3122-9562-6F363910A80E> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
        0x7fff8e24e000 -     0x7fff8e4f2ff7  com.apple.CoreImage (8.4.0 - 1.0.1) <CC6DD22B-FFC6-310B-BE13-2397A02C79EF> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
        0x7fff8e8fd000 -     0x7fff8e953fff  com.apple.HIServices (1.20 - 417) <BCD36950-013F-35C2-918E-05A93A47BE8C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
        0x7fff8e989000 -     0x7fff8ea27ff7  com.apple.ink.framework (10.8.2 - 150) <3D8D16A2-7E01-3EA1-B637-83A36D353308> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
        0x7fff8ea28000 -     0x7fff8ea2bff7  libdyld.dylib (210.2.3) <F59367C9-C110-382B-A695-9035A6DD387E> /usr/lib/system/libdyld.dylib
        0x7fff8ea2c000 -     0x7fff8ea2cfff  libkeymgr.dylib (25) <CC9E3394-BE16-397F-926B-E579B60EE429> /usr/lib/system/libkeymgr.dylib
        0x7fff8eaf6000 -     0x7fff8eafdfff  libGFXShared.dylib (8.10.1) <B4AB9480-2CDB-34F8-8D6F-F5A2CFC221B0> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
        0x7fff8eb03000 -     0x7fff8eb04fff  liblangid.dylib (116) <864C409D-D56B-383E-9B44-A435A47F2346> /usr/lib/liblangid.dylib
        0x7fff8f9c4000 -     0x7fff8f9d1ff7  com.apple.NetAuth (4.0 - 4.0) <F5BC7D7D-AF28-3C83-A674-DADA48FF7810> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
        0x7fff8f9d2000 -     0x7fff8fce9ff7  com.apple.CoreServices.CarbonCore (1037.6 - 1037.6) <1E567A52-677F-3168-979F-5FBB0818D52B> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
        0x7fff8fcea000 -     0x7fff8fe70fff  libBLAS.dylib (1073.4) <C102C0F6-8CB6-3B49-BA6B-2EB61F0B2784> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
        0x7fff8fe71000 -     0x7fff8fe74fff  libRadiance.dylib (851) <C317B2C7-CA3A-329F-B6DC-7CC33FE08C81> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.d ylib
        0x7fff8feb2000 -     0x7fff8fec9fff  com.apple.CFOpenDirectory (10.8 - 151.10) <D01120CC-16E0-372C-825B-B3AB510A8916> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
        0x7fff8feca000 -     0x7fff8ffd5fff  libFontParser.dylib (84.6) <96C42E49-79A6-3475-B5E4-6A782599A6DA> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
        0x7fff8ffd6000 -     0x7fff9014bff7  com.apple.CFNetwork (596.5 - 596.5) <22372475-6EF4-3A04-83FC-C061FE4717B3> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
        0x7fff9014c000 -     0x7fff90241fff  libiconv.2.dylib (34) <FEE8B996-EB44-37FA-B96E-D379664DEFE1> /usr/lib/libiconv.2.dylib
        0x7fff90242000 -     0x7fff90250ff7  libsystem_network.dylib (77.10) <0D99F24E-56FE-380F-B81B-4A4C630EE587> /usr/lib/system/libsystem_network.dylib
        0x7fff90251000 -     0x7fff90253ff7  libunc.dylib (25) <92805328-CD36-34FF-9436-571AB0485072> /usr/lib/system/libunc.dylib
        0x7fff90254000 -     0x7fff90e81fff  com.apple.AppKit (6.8 - 1187.40) <F12CF463-6F88-32ED-9EBA-0FA2AD3CF576> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
        0x7fff911d1000 -     0x7fff911fbff7  com.apple.CoreVideo (1.8 - 99.4) <E5082966-6D81-3973-A05A-38AA5B85F886> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
        0x7fff911fc000 -     0x7fff91200fff  libCoreVMClient.dylib (32.5) <DB009CD4-BB0E-3331-BBB4-A118781D193F> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
        0x7fff91201000 -     0x7fff91258ff7  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
        0x7fff912af000 -     0x7fff91580ff7  com.apple.security (7.0 - 55179.13) <F428E306-C407-3B55-BA82-E58755E8A76F> /System/Library/Frameworks/Security.framework/Versions/A/Security
        0x7fff91581000 -     0x7fff91594ff7  libbsm.0.dylib (32) <F497D3CE-40D9-3551-84B4-3D5E39600737> /usr/lib/libbsm.0.dylib
        0x7fff915e9000 -     0x7fff91628ff7  com.apple.QD (3.42.1 - 285.1) <77A20C25-EBB5-341C-A05C-5D458B97AD5C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
        0x7fff91629000 -     0x7fff91650fff  com.apple.framework.familycontrols (4.1 - 410) <50F5A52C-8FB6-300A-977D-5CFDE4D5796B> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
        0x7fff916f1000 -     0x7fff916ffff7  libkxld.dylib (2050.48.12) <B8F7ED1F-CF84-3777-9183-0A1C513DF81F> /usr/lib/system/libkxld.dylib
        0x7fff91700000 -     0x7fff91707fff  libcopyfile.dylib (89) <876573D0-E907-3566-A108-577EAD1B6182> /usr/lib/system/libcopyfile.dylib
        0x7fff91f4a000 -     0x7fff91fb2fff  libvDSP.dylib (380.10) <3CA154A3-1BE5-3CF4-BE48-F0A719A963BB> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
        0x7fff91fb6000 -     0x7fff91ff0ff7  com.apple.GSS (3.0 - 2.0) <423BDFCC-9187-3F3E-ABB0-D280003EB15E> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
        0x7fff91ff1000 -     0x7fff92072fff  com.apple.Metadata (10.7.0 - 707.12) <69E3EEF7-8B7B-3652-8320-B8E885370E56> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
        0x7fff92073000 -     0x7fff92087fff  com.apple.speech.synthesis.framework (4.1.12 - 4.1.12) <94EDF2AB-809C-3D15-BED5-7AD45B2A7C16> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
        0x7fff9209f000 -     0x7fff920baff7  libsystem_kernel.dylib (2050.48.12) <4B7993C3-F62D-3AC1-AF92-414A0D6EED5E> /usr/lib/system/libsystem_kernel.dylib
        0x7fff92116000 -     0x7fff92128ff7  libz.1.dylib (43) <2A1551E8-A272-3DE5-B692-955974FE1416> /usr/lib/libz.1.dylib
    External Modification Summary:
      Calls made by other processes targeting this process:
        task_for_pid: 3
        thread_create: 0
        thread_set_state: 0
      Calls made by this process:
        task_for_pid: 0
        thread_create: 0
        thread_set_state: 0
      Calls made by all processes on this machine:
        task_for_pid: 484738
        thread_create: 1
        thread_set_state: 0
    VM Region Summary:
    ReadOnly portion of Libraries: Total=147.8M resident=96.4M(65%) swapped_out_or_unallocated=51.5M(35%)
    Writable regions: Total=514.9M written=166.9M(32%) resident=169.4M(33%) swapped_out=0K(0%) unallocated=345.5M(67%)
    REGION TYPE                      VIRTUAL
    ===========                      =======
    CoreServices                       4648K
    MALLOC                            402.1M
    MALLOC guard page                    96K
    MALLOC_LARGE (reserved)            2504K        reserved VM address space (unallocated)
    Mach message                         12K
    Memory tag=240                        8K
    Memory tag=241                     2004K
    Memory tag=243                     42.0M
    Memory tag=243 (reserved)          18.0M        reserved VM address space (unallocated)
    Memory tag=244                     9856K
    Memory tag=246                     6144K
    Memory tag=246 (reserved)          8192K        reserved VM address space (unallocated)
    Memory tag=247                     10.0M
    Memory tag=255                     1056K
    STACK GUARD                        56.0M
    Stack                              12.6M
    VM_ALLOCATE                         544K
    __DATA                             10.9M
    __IMAGE                             528K
    __LINKEDIT                         52.8M
    __TEXT                             95.1M
    __UNICODE                           544K
    mapped file                       341.3M
    shared memory                      1580K
    ===========                      =======
    TOTAL                               1.1G
    TOTAL, minus reserved VM space      1.0G

    CRASH REPORT 2:
    Process:         mds [81]
    Path:            /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Support/mds
    Identifier:      mds
    Version:         707.12
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [1]
    User ID:         0
    Date/Time:       2014-02-09 15:40:55.323 +0800
    OS Version:      Mac OS X 10.8.5 (12F45)
    Report Version:  10
    Sleep/Wake UUID: B6983286-619D-417B-B50C-CEC79537537A
    Crashed Thread:  6  Dispatch queue: com.apple.metadata.spotlightindex
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x000000056fa1c864
    VM Regions Near 0x56fa1c864:
        MALLOC_LARGE (reused)  000000013dfb2000-000000013e93c000 [ 9768K] rw-/rwx SM=PRV 
    -->
        MALLOC_TINY            00007fda33400000-00007fda33700000 [ 3072K] rw-/rwx SM=PRV 
    Application Specific Information:
    [0x1048a1000](Warning) IndexQuery in bool preIterate_FSI(SISearchCtx_FSI *):Throttling inefficient file system query
    [0x1048a1000](Warning) IndexQuery in bool preIterate_FSI(SISearchCtx_FSI *):Throttling inefficient file system query
    [0x10427b000](Warning) IndexQuery in bool preIterate_FSI(SISearchCtx_FSI *):Throttling inefficient file system query
    Initializing
    Thread 0:: Dispatch queue: com.apple.main-thread
    0   libsystem_kernel.dylib                  0x00007fff920af686 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff920aec42 mach_msg + 70
    2   com.apple.CoreFoundation                0x00007fff89e4e233 __CFRunLoopServiceMachPort + 195
    3   com.apple.CoreFoundation                0x00007fff89e53916 __CFRunLoopRun + 1078
    4   com.apple.CoreFoundation                0x00007fff89e530e2 CFRunLoopRunSpecific + 290
    5   mds                                     0x00000001039f0474 0x1039e2000 + 58484
    6   libdyld.dylib                           0x00007fff8ea2a7e1 start + 1
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x00007fff920b1d16 kevent + 10
    1   libdispatch.dylib                       0x00007fff8db32dea _dispatch_mgr_invoke + 883
    2   libdispatch.dylib                       0x00007fff8db329ee _dispatch_mgr_thread + 54
    Thread 2:
    0   libsystem_kernel.dylib                  0x00007fff920b1ffa read + 10
    1   mds                                     0x00000001039eb70d 0x1039e2000 + 38669
    2   libsystem_c.dylib                       0x00007fff8d6bb772 _pthread_start + 327
    3   libsystem_c.dylib                       0x00007fff8d6a81a1 thread_start + 13
    Thread 3:
    0   libsystem_kernel.dylib                  0x00007fff920b16d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff8d6bdf1c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff8d6bdce3 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff8d6a8191 start_wqthread + 13
    Thread 4:
    0   libsystem_kernel.dylib                  0x00007fff920b16d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff8d6bdf1c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff8d6bdce3 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff8d6a8191 start_wqthread + 13
    Thread 5:
    0   libsystem_kernel.dylib                  0x00007fff920b16d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff8d6bdf1c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff8d6bdce3 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff8d6a8191 start_wqthread + 13
    Thread 6 Crashed:: Dispatch queue: com.apple.metadata.spotlightindex
    0   com.apple.spotlight.index               0x0000000103bd45e0 getContentTokensCallback + 704
    1   com.apple.spotlight.index               0x0000000103bf4afc _CITokenizerGetTokens + 2316
    2   com.apple.spotlight.index               0x0000000103bf4cbe CITokenizerGetTokens + 78
    3   com.apple.spotlight.index               0x0000000103bd32bb invertValueToUpdateSet + 1083
    4   com.apple.spotlight.index               0x0000000103bd2c1a termUpdateSetProcessFields + 1338
    5   com.apple.spotlight.index               0x0000000103bd2de2 TermUpdateSetAddDocumentInfo + 178
    6   com.apple.spotlight.index               0x0000000103bc1a3f setDocumentAttributes + 2623
    7   com.apple.spotlight.index               0x0000000103baefbc _CIUpdateContent + 548
    8   com.apple.spotlight.index               0x0000000103c292af si_writeBackAndIndex + 2956
    9   com.apple.spotlight.index               0x0000000103b81df9 setAttributes + 6480
    10  com.apple.spotlight.index               0x0000000103b6cdd3 runLoop + 51
    11  com.apple.spotlight.index               0x0000000103b954a1 work_fun + 662
    12  libdispatch.dylib                       0x00007fff8db300b6 _dispatch_client_callout + 8
    13  libdispatch.dylib                       0x00007fff8db3147f _dispatch_queue_drain + 235
    14  libdispatch.dylib                       0x00007fff8db312f1 _dispatch_queue_invoke + 52
    15  libdispatch.dylib                       0x00007fff8db31448 _dispatch_queue_drain + 180
    16  libdispatch.dylib                       0x00007fff8db312f1 _dispatch_queue_invoke + 52
    17  libdispatch.dylib                       0x00007fff8db31448 _dispatch_queue_drain + 180
    18  libdispatch.dylib                       0x00007fff8db312f1 _dispatch_queue_invoke + 52
    19  libdispatch.dylib                       0x00007fff8db311c3 _dispatch_worker_thread2 + 249
    20  libsystem_c.dylib                       0x00007fff8d6bdcdb _pthread_wqthread + 404
    21  libsystem_c.dylib                       0x00007fff8d6a8191 start_wqthread + 13
    Thread 7:
    0   libsystem_kernel.dylib                  0x00007fff920b16d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff8d6bdf1c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff8d6bdce3 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff8d6a8191 start_wqthread + 13
    Thread 8:
    0   libsystem_kernel.dylib                  0x00007fff920b16d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff8d6bdf1c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff8d6bdce3 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff8d6a8191 start_wqthread + 13
    Thread 6 crashed with X86 Thread State (64-bit):
      rax: 0x0000000000010c55  rbx: 0x00000000000000e3  rcx: 0x00000000000007b1  rdx: 0x000000056fa1c860
      rdi: 0x0000000133157000  rsi: 0x0000000087918b0c  rbp: 0x0000000105d3f290  rsp: 0x0000000105d3ed90
       r8: 0x000000011090df24   r9: 0x00000000000035a0  r10: 0x0000000000000000  r11: 0x0000000000000001
      r12: 0x00000001124a860c  r13: 0x00007fda434123e0  r14: 0x00007fda43412350  r15: 0x000000011090df28
      rip: 0x0000000103bd45e0  rfl: 0x0000000000010206  cr2: 0x000000056fa1c864
    Logical CPU: 4
    Binary Images:
           0x1039e2000 -        0x103b01fff  mds (707.12) <72984FB4-5955-3336-9DF3-C079D3126DEF> /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework /Support/mds
           0x103b55000 -        0x103d24fff  com.apple.spotlight.index (10.7.0 - 707.12) <FD63669B-3D65-34E5-A48A-BED4933FCD79> /System/Library/PrivateFrameworks/SpotlightIndex.framework/Versions/A/Spotlight Index
           0x103d81000 -        0x103d87ff7  com.apple.MDSChannel (1.2 - 1.2) <05A6F55A-8197-316A-A127-DE6528F9B291> /System/Library/PrivateFrameworks/MDSChannel.framework/Versions/A/MDSChannel
           0x103d95000 -        0x103d99fff  com.apple.ServerInformation (1.2 - 1) <5AC80E5E-3B55-3784-854D-1D49A874E775> /System/Library/PrivateFrameworks/ServerInformation.framework/Versions/A/Server Information
           0x103da4000 -        0x103e1cfff  com.apple.DCERPC (1.5 - 53.1.1) <25F4A15A-5252-3C70-A1D0-8145357F78B8> /System/Library/PrivateFrameworks/DCERPC.framework/Versions/A/DCERPC
           0x103e47000 -        0x103e60ff7  com.apple.SMBClient (1.8 - 1.8) <CCEABA2F-2F88-3CF1-B39E-5D92DE47BACF> /System/Library/PrivateFrameworks/SMBClient.framework/Versions/A/SMBClient
           0x10763a000 -        0x10763fff7  libgermantok.dylib (7) <B98522FA-23D1-351E-9F25-5AAF58FD862D> /usr/lib/libgermantok.dylib
           0x1140e9000 -        0x114202fff  libmecab.1.0.0.dylib (359.70) <6A697F27-0296-3BEF-BBCE-D96471D5FE32> /usr/lib/libmecab.1.0.0.dylib
        0x7fff635e2000 -     0x7fff6361694f  dyld (210.2.3) <8958FE97-5830-3928-BC38-23136E7D3783> /usr/lib/dyld
        0x7fff85729000 -     0x7fff85751fff  libJPEG.dylib (851) <64A3EB03-34FB-308C-817B-6106D1F4D80F> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
        0x7fff857f7000 -     0x7fff85910fff  com.apple.ImageIO.framework (3.2.2 - 851) <6552C673-9F29-3B31-A12E-C4391A950965> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
        0x7fff85911000 -     0x7fff8591ffff  libcommonCrypto.dylib (60027) <BAAFE0C9-BB86-3CA7-88C0-E3CBA98DA06F> /usr/lib/system/libcommonCrypto.dylib
        0x7fff85a3d000 -     0x7fff85a81fff  libcups.2.dylib (327.7) <9F35B58A-F47E-348A-8E09-E235FA4B9270> /usr/lib/libcups.2.dylib
        0x7fff85a82000 -     0x7fff85a89fff  com.apple.NetFS (5.0 - 4.0) <82E24B9A-7742-3DA3-9E99-ED267D98C05E> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
        0x7fff85a8a000 -     0x7fff85b3bfff  com.apple.LaunchServices (539.9 - 539.9) <07FC6766-778E-3479-8F28-D2C9917E1DD1> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
        0x7fff85db8000 -     0x7fff85dc4fff  com.apple.CrashReporterSupport (10.8.3 - 418) <DE6AFE16-D97E-399D-82ED-3522C773C36E> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
        0x7fff85e0e000 -     0x7fff85e1cfff  com.apple.Librarian (1.1 - 1) <5AC28666-7642-395F-A923-C6F8A274BBBD> /System/Library/PrivateFrameworks/Librarian.framework/Versions/A/Librarian
        0x7fff85e1f000 -     0x7fff85e24fff  com.apple.OpenDirectory (10.8 - 151.10) <51E52779-4F5A-36B5-9297-67138547DCA9> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
        0x7fff85e25000 -     0x7fff85e2eff7  com.apple.CommerceCore (1.0 - 26.2) <AF35874A-6FA7-328E-BE30-8BBEF0B741A8> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
        0x7fff85e2f000 -     0x7fff85e31fff  libquarantine.dylib (52.1) <143B726E-DF47-37A8-90AA-F059CFD1A2E4> /usr/lib/system/libquarantine.dylib
        0x7fff86213000 -     0x7fff862d8ff7  com.apple.coreui (2.0 - 181.1) <83D2C92D-6842-3C9D-9289-39D5B4554C3A> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
        0x7fff862d9000 -     0x7fff866f6fff  FaceCoreLight (2.4.1) <DDAFFD7A-D312-3407-A010-5AEF3E17831B> /System/Library/PrivateFrameworks/FaceCoreLight.framework/Versions/A/FaceCoreLi ght
        0x7fff866f7000 -     0x7fff86a27fff  com.apple.HIToolbox (2.0 - 626.1) <656D08C2-9068-3532-ABDD-32EC5057CCB2> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
        0x7fff86a28000 -     0x7fff86a3bff7  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
        0x7fff86f44000 -     0x7fff86fdefff  libvMisc.dylib (380.10) <A7F12764-A94C-36EB-88E0-F826F5AF55B4> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
        0x7fff87010000 -     0x7fff8701dfff  libbz2.1.0.dylib (29) <CE9785E8-B535-3504-B392-82F0064D9AF2> /usr/lib/libbz2.1.0.dylib
        0x7fff8704b000 -     0x7fff8709aff7  libFontRegistry.dylib (100) <2E03D7DA-9B8F-31BB-8FB5-3D3B6272127F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
        0x7fff8709b000 -     0x7fff8709efff  com.apple.AppleSystemInfo (2.0 - 2) <BC221376-361F-3F85-B284-DC251D3BB442> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSys temInfo
        0x7fff8709f000 -     0x7fff873fefff  com.apple.Foundation (6.8 - 945.18) <1D7E58E6-FA3A-3CE8-AC85-B9D06B8C0AA0> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
        0x7fff873ff000 -     0x7fff87400fff  libsystem_blocks.dylib (59) <D92DCBC3-541C-37BD-AADE-ACC75A0C59C8> /usr/lib/system/libsystem_blocks.dylib
        0x7fff874fc000 -     0x7fff8751eff7  com.apple.Kerberos (2.0 - 1) <C49B8820-34ED-39D7-A407-A3E854153556> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
        0x7fff8751f000 -     0x7fff87562ff7  com.apple.RemoteViewServices (2.0 - 80.6) <5CFA361D-4853-3ACC-9EFC-A2AC1F43BA4B> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
        0x7fff879c8000 -     0x7fff879ceff7  libunwind.dylib (35.1) <21703D36-2DAB-3D8B-8442-EAAB23C060D3> /usr/lib/system/libunwind.dylib
        0x7fff87a1f000 -     0x7fff87b1cfff  libsqlite3.dylib (138.1) <ADE9CB98-D77D-300C-A32A-556B7440769F> /usr/lib/libsqlite3.dylib
        0x7fff87b1d000 -     0x7fff87b3fff7  libxpc.dylib (140.43) <70BC645B-6952-3264-930C-C835010CCEF9> /usr/lib/system/libxpc.dylib
        0x7fff87b40000 -     0x7fff87b4afff  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
        0x7fff87e8e000 -     0x7fff87faefff  com.apple.desktopservices (1.7.4 - 1.7.4) <ED3DA8C0-160F-3CDC-B537-BF2E766AB7C1> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
        0x7fff87fbb000 -     0x7fff87fbcff7  libSystem.B.dylib (169.3) <DF030DDB-DF22-3769-A8CD-9806DDB84008> /usr/lib/libSystem.B.dylib
        0x7fff87fbd000 -     0x7fff87ff3fff  libsystem_info.dylib (406.17) <4FFCA242-7F04-365F-87A6-D4EFB89503C1> /usr/lib/system/libsystem_info.dylib
        0x7fff88366000 -     0x7fff88438ff7  com.apple.CoreText (260.0 - 275.17) <AB493289-E188-3CCA-8658-1E5039715F82> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
        0x7fff88439000 -     0x7fff8843bfff  com.apple.TrustEvaluationAgent (2.0 - 23) <A97D348B-32BF-3E52-8DF2-59BFAD21E1A3> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
        0x7fff8843c000 -     0x7fff88465fff  libsandbox.1.dylib (220.3) <410BC7E1-24A4-3E5A-ACCF-2F444DC82814> /usr/lib/libsandbox.1.dylib
        0x7fff88466000 -     0x7fff8847dfff  com.apple.GenerationalStorage (1.1 - 132.3) <FD4A84B3-13A8-3C60-A59E-25A361447A17> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
        0x7fff8847e000 -     0x7fff88875fff  libLAPACK.dylib (1073.4) <D632EC8B-2BA0-3853-800A-20DA00A1091C> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
        0x7fff88876000 -     0x7fff88878fff  libCVMSPluginSupport.dylib (8.10.1) <F0239392-E0CB-37D7-BFE2-D6F5D42F9196> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
        0x7fff88879000 -     0x7fff8887aff7  libsystem_sandbox.dylib (220.3) <B739DA63-B675-387A-AD84-412A651143C0> /usr/lib/system/libsystem_sandbox.dylib
        0x7fff8887b000 -     0x7fff888c5ff7  libGLU.dylib (8.10.1) <6699DEA6-9EEB-3B84-A57F-B25AE44EC584> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
        0x7fff888c6000 -     0x7fff888cafff  libGIF.dylib (851) <AD40D084-6E34-38CD-967D-705F94B188DA> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
        0x7fff88929000 -     0x7fff8892dfff  com.apple.IOSurface (86.0.4 - 86.0.4) <26F01CD4-B76B-37A3-989D-66E8140542B3> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
        0x7fff88d57000 -     0x7fff88d7cff7  libc++abi.dylib (26) <D86169F3-9F31-377A-9AF3-DB17142052E4> /usr/lib/libc++abi.dylib
        0x7fff88dc1000 -     0x7fff88e7eff7  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
        0x7fff88ecc000 -     0x7fff88eccfff  com.apple.Accelerate.vecLib (3.8 - vecLib 3.8) <F565B686-24E2-39F2-ACC3-C5E4084476BE> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
        0x7fff88ecd000 -     0x7fff88ed5fff  liblaunch.dylib (442.26.2) <2F71CAF8-6524-329E-AC56-C506658B4C0C> /usr/lib/system/liblaunch.dylib
        0x7fff88f21000 -     0x7fff88f42ff7  libCRFSuite.dylib (33) <736ABE58-8DED-3289-A042-C25AF7AE5B23> /usr/lib/libCRFSuite.dylib
        0x7fff88f43000 -     0x7fff88f94ff7  com.apple.SystemConfiguration (1.12.2 - 1.12.2) <581BF463-C15A-363B-999A-E830222FA925> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
        0x7fff89023000 -     0x7fff891befef  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
        0x7fff891bf000 -     0x7fff891bffff  com.apple.vecLib (3.8 - vecLib 3.8) <6CBBFDC4-415C-3910-9558-B67176447789> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
        0x7fff891c0000 -     0x7fff891c8ff7  libsystem_dnssd.dylib (379.38.1) <BDCB8566-0189-34C0-9634-35ABD3EFE25B> /usr/lib/system/libsystem_dnssd.dylib
        0x7fff891d6000 -     0x7fff89219ff7  com.apple.bom (12.0 - 192) <0BF1F2D2-3648-36B7-BE4B-551A0173209B> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
        0x7fff89226000 -     0x7fff89231fff  com.apple.CommonAuth (3.0 - 2.0) <1CA95702-DDC7-3ADB-891E-7F037ABDDA14> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
        0x7fff89232000 -     0x7fff89295fff  com.apple.audio.CoreAudio (4.1.2 - 4.1.2) <FEAB83AB-1DE5-3813-BA48-7A7F2374CCF0> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
        0x7fff89296000 -     0x7fff89323ff7  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
        0x7fff89341000 -     0x7fff89341fff  com.apple.Accelerate (1.8 - Accelerate 1.8) <878A6E7E-CB34-380F-8212-47FBF12C7C96> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
        0x7fff8937d000 -     0x7fff893d7ff7  com.apple.opencl (2.2.19 - 2.2.19) <3C7DFB2C-B3F9-3447-A1FC-EAAA42181A6E> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
        0x7fff8950f000 -     0x7fff8951cfff  com.apple.KerberosHelper (4.0 - 1.0) <6815439D-1A03-3251-99FE-CC24CF4C93C5> /System/Library/PrivateFrameworks/KerberosHelper.framework/Versions/A/KerberosH elper
        0x7fff89527000 -     0x7fff8952bff7  com.apple.TCC (1.0 - 1) <F2F3B753-FC73-3543-8BBE-859FDBB4D6A6> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
        0x7fff8952c000 -     0x7fff89761ff7  com.apple.CoreData (106.1 - 407.7) <A676E1A4-2144-376B-92B8-B450DD1D78E5> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
        0x7fff89762000 -     0x7fff89763ff7  libremovefile.dylib (23.2) <6763BC8E-18B8-3AD9-8FFA-B43713A7264F> /usr/lib/system/libremovefile.dylib
        0x7fff89764000 -     0x7fff8978ffff  libxslt.1.dylib (11.3) <441776B8-9130-3893-956F-39C85FFA644F> /usr/lib/libxslt.1.dylib
        0x7fff8979d000 -     0x7fff897b4fff  libGL.dylib (8.10.1) <F8BABA3C-7810-3A65-83FC-61945AA50E90> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
        0x7fff897b5000 -     0x7fff897ebfff  com.apple.DebugSymbols (98 - 98) <14E788B1-4EB2-3FD7-934B-849534DFC198> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
        0x7fff897ec000 -     0x7fff897f1fff  libcache.dylib (57) <65187C6E-3FBF-3EB8-A1AA-389445E2984D> /usr/lib/system/libcache.dylib
        0x7fff89862000 -     0x7fff898b1ff7  libcorecrypto.dylib (106.2) <CE0C29A3-C420-339B-ADAA-52F4683233CC> /usr/lib/system/libcorecrypto.dylib
        0x7fff89999000 -     0x7fff899f8fff  com.apple.AE (645.6 - 645.6) <44F403C1-660A-3543-AB9C-3902E02F936F> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
        0x7fff899f9000 -     0x7fff89a0ffff  com.apple.MultitouchSupport.framework (237.4 - 237.4) <0F7FEE29-161B-3D8E-BE91-308CBD354461> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
        0x7fff89ae5000 -     0x7fff89b67ff7  com.apple.Heimdal (3.0 - 2.0) <ACF0C667-5ACC-382A-A998-61E85386C814> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
        0x7fff89b68000 -     0x7fff89b68ffd  com.apple.audio.units.AudioUnit (1.9.2 - 1.9.2) <6D314680-7409-3BC7-A807-36341411AF9A> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
        0x7fff89b69000 -     0x7fff89ba6fef  libGLImage.dylib (8.10.1) <91E31B9B-4141-36D5-ABDC-20F1D6D1D0CF> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
        0x7fff89e1d000 -     0x7fff89e1dfff  libOpenScriptingUtil.dylib (148.3) <F8681222-0969-3B10-8BCE-C55A4B9C520C> /usr/lib/libOpenScriptingUtil.dylib
        0x7fff89e1e000 -     0x7fff8a008ff7  com.apple.CoreFoundation (6.8 - 744.19) <0F7403CA-2CB8-3D0A-992B-679701DF27CA> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
        0x7fff8a009000 -     0x7fff8a088ff7  com.apple.securityfoundation (6.0 - 55115.4) <9291CE2A-37D9-39DF-956E-7B2650A9F3B0> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
        0x7fff8a09d000 -     0x7fff8aa2d627  com.apple.CoreGraphics (1.600.0 - 333.1) <C085C074-7260-3C3D-90C6-A65D3CB2BD41> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
        0x7fff8aa32000 -     0x7fff8aa63ff7  com.apple.DictionaryServices (1.2 - 184.4) <FB0540FF-5034-3591-A28D-6887FBC220F7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
        0x7fff8b050000 -     0x7fff8b051ff7  libdnsinfo.dylib (453.19) <14202FFB-C3CA-3FCC-94B0-14611BF8692D> /usr/lib/system/libdnsinfo.dylib
        0x7fff8b0a1000 -     0x7fff8b2a1fff  libicucore.A.dylib (491.11.3) <5783D305-04E8-3D17-94F7-1CEAFA975240> /usr/lib/libicucore.A.dylib
        0x7fff8b2cf000 -     0x7fff8b2effff  libPng.dylib (851) <3466F35C-EC1A-3D1A-80DC-175857FA19D5> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
        0x7fff8b2f0000 -     0x7fff8b2fbfff  libsystem_notify.dylib (98.5) <C49275CC-835A-3207-AFBA-8C01374927B6> /usr/lib/system/libsystem_notify.dylib
        0x7fff8b2fc000 -     0x7fff8b30bfff  com.apple.opengl (1.8.10 - 1.8.10) <AD49CF56-B7C1-3598-8610-58532FC41345> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
        0x7fff8b30c000 -     0x7fff8b361ff7  libTIFF.dylib (851) <7706BB07-E7E8-38BE-A5F0-D8B63E3B9283> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
        0x7fff8b362000 -     0x7fff8b368fff  libmacho.dylib (829) <BF332AD9-E89F-387E-92A4-6E1AB74BD4D9> /usr/lib/system/libmacho.dylib
        0x7fff8b369000 -     0x7fff8b369fff  com.apple.ApplicationServices (45 - 45) <A3ABF20B-ED3A-32B5-830E-B37831A45A80> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
        0x7fff8b36a000 -     0x7fff8b444fff  com.apple.backup.framework (1.4.3 - 1.4.3) <6B65C44C-7777-3331-AD9D-438D10AAC777> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
        0x7fff8b8ba000 -     0x7fff8b8c5ff7  com.apple.bsd.ServiceManagement (2.0 - 2.0) <C12962D5-85FB-349E-AA56-64F4F487F219> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
        0x7fff8b8c6000 -     0x7fff8b9de92f  libobjc.A.dylib (532.2) <90D31928-F48D-3E37-874F-220A51FD9E37> /usr/lib/libobjc.A.dylib
        0x7fff8ba47000 -     0x7fff8bb49fff  libJP2.dylib (851) <26FFBDBF-9CCE-33D7-A45B-0A31C98DA37E> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
        0x7fff8ce27000 -     0x7fff8ce28fff  libDiagnosticMessagesClient.dylib (8) <8548E0DC-0D2F-30B6-B045-FE8A038E76D8> /usr/lib/libDiagnosticMessagesClient.dylib
        0x7fff8ce29000 -     0x7fff8ce38ff7  libxar.1.dylib (105) <370ED355-E516-311E-BAFD-D80633A84BE1> /usr/lib/libxar.1.dylib
        0x7fff8ce39000 -     0x7fff8ce67ff7  libsystem_m.dylib (3022.6) <B434BE5C-25AB-3EBD-BAA7-5304B34E3441> /usr/lib/system/libsystem_m.dylib
        0x7fff8ce74000 -     0x7fff8cea2fff  com.apple.CoreServicesInternal (154.3 - 154.3) <F4E118E4-E327-3314-83D7-EA20B1717ED0> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/Cor eServicesInternal
        0x7fff8ced2000 -     0x7fff8ced7fff  libcompiler_rt.dylib (30) <08F8731D-5961-39F1-AD00-4590321D24A9> /usr/lib/system/libcompiler_rt.dylib
        0x7fff8cfbd000 -     0x7fff8d03dff7  com.apple.ApplicationServices.ATS (332 - 341.1) <39B53565-FA31-3F61-B090-C787C983142E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
        0x7fff8d0d3000 -     0x7fff8d13bff7  libc++.1.dylib (65.1) <20E31B90-19B9-3C2A-A9EB-474E08F9FE05> /usr/lib/libc++.1.dylib
        0x7fff8d13c000 -     0x7fff8d1e2ff7  com.apple.CoreServices.OSServices (557.6 - 557.6) <E91B0882-E75C-30E9-8DCD-7A0EEE4405CC> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
        0x7fff8d1e3000 -     0x7fff8d202ff7  com.apple.ChunkingLibrary (2.0 - 133.3) <8BEC9AFB-DCAA-37E8-A5AB-24422B234ECF> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/Chunking Library
        0x7fff8d251000 -     0x7fff8d257fff  com.apple.DiskArbitration (2.5.2 - 2.5.2) <C713A35A-360E-36CE-AC0A-25C86A3F50CA> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
        0x7fff8d258000 -     0x7fff8d2c6ff7  com.apple.framework.IOKit (2.0.1 - 755.42.1) <A90038ED-48F2-3CC9-A042-53A3D7985844> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
        0x7fff8d2c9000 -     0x7fff8d315ff7  libauto.dylib (185.4) <AD5A4CE7-CB53-313C-9FAE-673303CC2D35> /usr/lib/libauto.dylib
        0x7fff8d316000 -     0x7fff8d413ff7  libxml2.2.dylib (22.3) <47B09CB2-C636-3024-8B55-6040F7829B4C> /usr/lib/libxml2.2.dylib
        0x7fff8d414000 -     0x7fff8d46efff  com.apple.print.framework.PrintCore (8.3 - 387.2) <5BA0CBED-4D80-386A-9646-F835C9805B71> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
        0x7fff8d46f000 -     0x7fff8d4cbff7  com.apple.Symbolication (1.3 - 93) <84D69A46-BB0A-3DBE-ABC2-B767F61EC221> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
        0x7fff8d4cc000 -     0x7fff8d4d0fff  libMatch.1.dylib (17) <E10E50F3-25F8-3B9B-AA11-923E40F5FFDD> /usr/lib/libMatch.1.dylib
        0x7fff8d4d1000 -     0x7fff8d623fff  com.apple.audio.toolbox.AudioToolbox (1.9.2 - 1.9.2) <DC5F3D1B-036A-37DE-BC24-7636DC95EA1C> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
        0x7fff8d628000 -     0x7fff8d691fff  libstdc++.6.dylib (56) <EAA2B53E-EADE-39CF-A0EF-FB9D4940672A> /usr/lib/libstdc++.6.dylib
        0x7fff8d6a7000 -     0x7fff8d773ff7  libsystem_c.dylib (825.40.1) <543B05AE-CFA5-3EFE-8E58-77225411BA6B> /usr/lib/system/libsystem_c.dylib
        0x7fff8d7d4000 -     0x7fff8d7fbff7  com.apple.PerformanceAnalysis (1.16 - 16) <96A89CD5-16E9-37CA-8740-22B5DB5A4679> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
        0x7fff8d7fc000 -     0x7fff8d81dfff  com.apple.Ubiquity (1.2 - 243.15) <C9A7EE77-B637-3676-B667-C0843BBB0409> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
        0x7fff8d911000 -     0x7fff8dabffff  com.apple.QuartzCore (1.8 - 304.3) <F450F2DE-2F24-3557-98B6-310E05DAC17F> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
        0x7fff8dac0000 -     0x7fff8db2dff7  com.apple.datadetectorscore (4.1 - 269.3) <5775F0DB-87D6-310D-8B03-E2AD729EFB28> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
        0x7fff8db2e000 -     0x7fff8db43ff7  libdispatch.dylib (228.23) <D26996BF-FC57-39EB-8829-F63585561E09> /usr/lib/system/libdispatch.dylib
        0x7fff8dc49000 -     0x7fff8dce4fff  com.apple.CoreSymbolication (3.0 - 117) <7D43ED93-BD81-338C-8076-6A932A1D19E8> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
        0x7fff8dcfb000 -     0x7fff8dcfffff  libpam.2.dylib (20) <C8F45864-5B58-3237-87E1-2C258A1D73B8> /usr/lib/libpam.2.dylib
        0x7fff8deb2000 -     0x7fff8ded1ff7  libresolv.9.dylib (51) <0882DC2D-A892-31FF-AD8C-0BB518C48B23> /usr/lib/libresolv.9.dylib
        0x7fff8e194000 -     0x7fff8e194fff  com.apple.CoreServices (57 - 57) <9DD44CB0-C644-35C3-8F57-0B41B3EC147D> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
        0x7fff8e240000 -     0x7fff8e24dfff  com.apple.AppleFSCompression (49 - 1.0) <5508344A-2A7E-3122-9562-6F363910A80E> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
        0x7fff8e24e000 -     0x7fff8e4f2ff7  com.apple.CoreImage (8.4.0 - 1.0.1) <CC6DD22B-FFC6-310B-BE13-2397A02C79EF> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
        0x7fff8e8fd000 -     0x7fff8e953fff  com.apple.HIServices (1.20 - 417) <BCD36950-013F-35C2-918E-05A93A47BE8C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
        0x7fff8e989000 -     0x7fff8ea27ff7  com.apple.ink.framework (10.8.2 - 150) <3D8D16A2-7E01-3EA1-B637-83A36D353308> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
        0x7fff8ea28000 -     0x7fff8ea2bff7  libdyld.dylib (210.2.3) <F59367C9-C110-382B-A695-9035A6DD387E> /usr/lib/system/libdyld.dylib
        0x7fff8ea2c000 -     0x7fff8ea2cfff  libkeymgr.dylib (25) <CC9E3394-BE16-397F-926B-E579B60EE429> /usr/lib/system/libkeymgr.dylib
        0x7fff8eaf6000 -     0x7fff8eafdfff  libGFXShared.dylib (8.10.1) <B4AB9480-2CDB-34F8-8D6F-F5A2CFC221B0> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
        0x7fff8eb03000 -     0x7fff8eb04fff  liblangid.dylib (116) <864C409D-D56B-383E-9B44-A435A47F2346> /usr/lib/liblangid.dylib
        0x7fff8f9c4000 -     0x7fff8f9d1ff7  com.apple.NetAuth (4.0 - 4.0) <F5BC7D7D-AF28-3C83-A674-DADA48FF7810> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
        0x7fff8f9d2000 -     0x7fff8fce9ff7  com.apple.CoreServices.CarbonCore (1037.6 - 1037.6) <1E567A52-677F-3168-979F-5FBB0818D52B> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
        0x7fff8fcea000 -     0x7fff8fe70fff  libBLAS.dylib (1073.4) <C102C0F6-8CB6-3B49-BA6B-2EB61F0B2784> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
        0x7fff8fe71000 -     0x7fff8fe74fff  libRadiance.dylib (851) <C317B2C7-CA3A-329F-B6DC-7CC33FE08C81> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.d ylib
        0x7fff8feb2000 -     0x7fff8fec9fff  com.apple.CFOpenDirectory (10.8 - 151.10) <D01120CC-16E0-372C-825B-B3AB510A8916> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
        0x7fff8feca000 -     0x7fff8ffd5fff  libFontParser.dylib (84.6) <96C42E49-79A6-3475-B5E4-6A782599A6DA> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
        0x7fff8ffd6000 -     0x7fff9014bff7  com.apple.CFNetwork (596.5 - 596.5) <22372475-6EF4-3A04-83FC-C061FE4717B3> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
        0x7fff9014c000 -     0x7fff90241fff  libiconv.2.dylib (34) <FEE8B996-EB44-37FA-B96E-D379664DEFE1> /usr/lib/libiconv.2.dylib
        0x7fff90242000 -     0x7fff90250ff7  libsystem_network.dylib (77.10) <0D99F24E-56FE-380F-B81B-4A4C630EE587> /usr/lib/system/libsystem_network.dylib
        0x7fff90251000 -     0x7fff90253ff7  libunc.dylib (25) <92805328-CD36-34FF-9436-571AB0485072> /usr/lib/system/libunc.dylib
        0x7fff90254000 -     0x7fff90e81fff  com.apple.AppKit (6.8 - 1187.40) <F12CF463-6F88-32ED-9EBA-0FA2AD3CF576> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
        0x7fff911d1000 -     0x7fff911fbff7  com.apple.CoreVideo (1.8 - 99.4) <E5082966-6D81-3973-A05A-38AA5B85F886> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
        0x7fff911fc000 -     0x7fff91200fff  libCoreVMClient.dylib (32.5) <DB009CD4-BB0E-3331-BBB4-A118781D193F> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
        0x7fff91201000 -     0x7fff91258ff7  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
        0x7fff912af000 -     0x7fff91580ff7  com.apple.security (7.0 - 55179.13) <F428E306-C407-3B55-BA82-E58755E8A76F> /System/Library/Frameworks/Security.framework/Versions/A/Security
        0x7fff91581000 -     0x7fff91594ff7  libbsm.0.dylib (32) <F497D3CE-40D9-3551-84B4-3D5E39600737> /usr/lib/libbsm.0.dylib
        0x7fff915e9000 -     0x7fff91628ff7  com.apple.QD (3.42.1 - 285.1) <77A20C25-EBB5-341C-A05C-5D458B97AD5C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
        0x7fff91629000 -     0x7fff91650fff  com.apple.framework.familycontrols (4.1 - 410) <50F5A52C-8FB6-300A-977D-5CFDE4D5796B> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
        0x7fff916f1000 -     0x7fff916ffff7  libkxld.dylib (2050.48.12) <B8F7ED1F-CF84-3777-9183-0A1C513DF81F> /usr/lib/system/libkxld.dylib
        0x7fff91700000 -     0x7fff91707fff  libcopyfile.dylib (89) <876573D0-E907-3566-A108-577EAD1B6182> /usr/lib/system/libcopyfile.dylib
        0x7fff91f4a000 -     0x7fff91fb2fff  libvDSP.dylib (380.10) <3CA154A3-1BE5-3CF4-BE48-F0A719A963BB> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
        0x7fff91fb6000 -     0x7fff91ff0ff7  com.apple.GSS (3.0 - 2.0) <423BDFCC-9187-3F3E-ABB0-D280003EB15E> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
        0x7fff91ff1000 -     0x7fff92072fff  com.apple.Metadata (10.7.0 - 707.12) <69E3EEF7-8B7B-3652-8320-B8E885370E56> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
        0x7fff92073000 -     0x7fff92087fff  com.apple.speech.synthesis.framework (4.1.12 - 4.1.12) <94EDF2AB-809C-3D15-BED5-7AD45B2A7C16> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
        0x7fff9209f000 -     0x7fff920baff7  libsystem_kernel.dylib (2050.48.12) <4B7993C3-F62D-3AC1-AF92-414A0D6EED5E> /usr/lib/system/libsystem_kernel.dylib
        0x7fff92116000 -     0x7fff92128ff7  libz.1.dylib (43) <2A1551E8-A272-3DE5-B692-955974FE1416> /usr/lib/libz.1.dylib
    External Modification Summary:
      Calls made by other processes targeting this process:
        task_for_pid: 3748
        thread_create: 0
        thread_set_state: 0
      Calls made by this process:
        task_for_pid: 0
        thread_create: 0
        thread_set_state: 0
      Calls made by all processes on this machine:
        task_for_pid: 484622
        thread_create: 1
        thread_set_state: 0
    VM Region Summary:
    ReadOnly portion of Libraries: Total=147.8M resident=96.2M(65%) swapped_out_or_unallocated=51.6M(35%)
    Writable regions: Total=635.0M written=249.4M(39%) resident=261.7M(41%) swapped_out=0K(0%) unallocated=373.3M(59%)
    REGION TYPE                      VIRTUAL
    ===========                      =======
    CoreServices                       9296K
    MALLOC                            520.4M
    MALLOC guard page                    96K
    Memory tag=240                       12K
    Memory tag=241                      392K
    Memory tag=243                     36.0M
    Memory tag=243 (reserved)          12.0M        reserved VM address space (unallocated)
    Memory tag=244                     7680K
    Memory tag=246                     4096K
    Memory tag=246 (reserved)          8192K        reserved VM address space (unallocated)
    Memory tag=247                     17.0M
    Memory tag=255                     16.6M
    STACK GUARD                        56.0M
    Stack                              12.1M
    VM_ALLOCATE                         544K
    __DATA                             10.9M
    __IMAGE                             528K
    __LINKEDIT                         52.8M
    __TEXT                             95.1M
    __UNICODE                           544K
    mapped file                       360.6M
    shared memory                      1756K
    ===========                      =======
    TOTAL                               1.2G
    TOTAL, minus reserved VM space      1.2G

  • SGA/PGA best practice

    With an XE limitation of 1GB for the PGA and SGA, how would one best preserve this limitation?
    In other words, how would one minimise the PGA and SGA usage via ones interface with Oracle?
    For instance, in a SQL query I was building I could either (The query has multiple aggregates on multiple tables in a 'one to many' join relationship):
    1) Use WITH clauses
    2) Use inline views
    3) Use standard views
    4) Use temporary tables
    5) Maybe more possibilities
    Without much of an insite into how Oracle 'works' it's difficult to gauge which of these is less 'resource hungry'.
    Possibly there is a reference on how to use the PGA & SGA efficiently?
    Or possibly a more definitive explanation on what's actually stored in these memory areas (rather than just 'prorgam' and 'system' data).
    Regards all,

    SGA is used in 2 main areas: parsing the SQL and avoiding disk reads by having stuff in memory. There is one SGA for all of XE instance.
    PGA is used heavily for sorting, hash joining and 'working stuff'. The PGA is created for each Dedicated Server process. Much of the PGA is inside the SGA for Shared Server processes
    SGA: (There are exceptions to each of these 'Rules Of Thumb' or 'ROT' statements)
    Good coding technique will allow reuse of SQL and avoid as much as possible reparsing;
    Use bind variables;
    Do not create SQL on the fly;
    Avoid dynamic SQL (concat strings to create SQL on the fly);
    Forget about tweakiing the buffer cache as it is mainly a performance thing that you can't do much about in XE;
    WITH clause is nice as it may reduce the count of subqueries;
    Leave it with 'automatic memory management' (again a perf hit, but it will attempt to optimize mem availability);
    Don't reinvent - Use the features that are loaded as they will likely get statements out faster, releasing memory faster;
    Stored Views may (often do) grab unneeded table data. When joining to stored views, see whether they can be replaced by cleaner code;
    Do not create SQL on the fly.
    PGA:
    Use shared server when feasible (at risk of performance hit);
    Global Temp Tables go into PGA, watch the use;
    Maximize reuabale SQL, minimze all other languages (remote or in DB) including PL/SQL;
    Watch for PGA wasters such as UNION vs the better UNION ALL, and unneeded sorts;
    PGA is 'swapped out' to Temporary tablespace. Make sure temp tablespace big enough ... it's not counted in the 4GB disk;
    Avoid using COMMIT except at end of transaction. Avoid COMMIT in loops. Make sure undo tablespace is big enough ... it's not counted in the 4GB disk ;
    Did I mention it's not a good idea to create SQL on the fly?

  • Clarification of Mitigating Alerts and Notifications

    I am investigating mitigating controls in 5.2 and have a query regarding the difference between 'generate action log' and 'alert notifications'. In the configuration tab when maintaining background jobs for mit controls there are the above 2 options. None of the supporting documents clearly explain the difference between these. They're obviously both emails.  I expect one advises that mitigating control is due to be executed (alert notificiation).  That leaves 'generate action log' which seems to have something to do with capturing transactional data from R3.  Can anybody clarify how these are used?
    Many thanks in advance

    Hi
    Firstly thank you to Tavi, Frank and Hersh.  I really appreciate your speedy responses and it has shone light on this topic for me.
    I'd like to summarise to ensure I have clearly understood.  The mitigating controls, users, controllers and approvers are maintained in the 'Mitigation' tab.
    The alerts are emails and relate to the execution of the defined mitigating controls (reports).  If the controls are not executed in defined period an alert will be sent to the monitor to remind them or alert them that this activity is to be performed.  The Monitor is the person assigned to run these controls reports in specified period. 
    The notification logs read from R3 logs and will look specifically for mitigated users.  It will check to see if they run a combination of the mitigated transactions e.g. create vendor, raise invoice.  If this combination of transactions occur a log will generate with relevant details.   My question here is 'are notification logs sent my e mail and who is person to receive them, is it the monitor?'    If not, where are they to be found.  Is this a resource hungry activity and is it recommended.
    Is the Monitor the only role relating to above.
    Thanks so much in advance.

  • R12 12.0.4, System Administration, Debug, trace, log enabled monitoring

    Hi guys,
    I posted the same question with oracle.ittoolbox few days back and yet to get an answer. During the initial stages of implementation, I remember the consultants using a particular jsp/html page under System Administrator responsibility to view the status of diag, trace, log enabled status of the system, akka, if a profile option is enabled to debug, trace, or log was listed...
    Now, I want to access the same page (I have system administrator resp). The SQL query provided by metalink is too complex to understand
    Please help

    Hello again Hussein and others
    Our issue was NOT just with FND% profiles, rather with the consultants turning on diag and debug against their respective modules and later forgetting to turn them off. Take our case, we had SLA Debug enabled from last 2010 Feb until two days back, which has created 21 million rows of data with XLA diag table :)
    Once after turning the SLA debug and truncating the table (following Oracle guidelines) we have a database which is 1/3 of the size until recent times. Oracle has provided us an SQL query which produces the present status of all profiles with latest values (enabled or disabled). We were able to see a number of profiles with debug enabled and successfully disabled them.
    I represent the internal IT team and always have the acceptance for human errors like the SLA debug event. Oracle "apologized" for not having a screen or html form for monitoring such resource hungry activities. The output from the SQL script they provided is too complex for a person who doesn't have core techno functional knowledge about the system.
    Anyway, finally feeling a bit better...
    Thanks guys

  • Handshaking across LAN network.

    I have 8 clients connected to my server. All the client shared folders are used as mapped drives in the server software. The mapped drives disconnect on client shutdown but do not normally reconnect smoothly on client startup. Windows mapped drive polling
    is also very resource hungry and jerky. I have tried WNet commands and echo command to query the client's state. Echo seems to work better.
    1) How to programmatically check the client's state systematically and connect/disconnect smoothly .
    2) Will socket communication do better here?
    3) How do the client know that the OS finished startup and ready to signal the server?
    Thanks 

    Am I correct in believing that the server software is somehow connecting to client data located in a folder on the client's machine? If so, this is a very fragile arrangement.
    Instead, why not use folders on the server, where one folder might be dedicated to one client. Then the software on the client's machine can access the folder on the server when the client is logged in and up and running.

  • System no longer boots

    Hello all.  System will not boot and before I go spending more money on pointless items, I was hoping to get some feedback, please.
    Here are current specs on system:
    MSI K8T Neo2 FIR - AMI BIOS 9.4  Athlon 64 X2 4600+ PIB
    Antec NeoPower 480 +5V/38A +12V1/18A +12V2/15A +3.3V/30A
    Kingston Value Ram 2x512 Matched Pair DDR400
    CD-R/RW & DVD+RW  WD 250g IDE
    BFG 7800GS OC  Sony SDM-HS94P 19" LCD
    Audigy 2  XP Pro
    The upgrades on this system include the X2 and the graphics card.  I know, I know, the power supply may very well be the issue, but please let me detail what's happened and if everyone still thinks the PSU is it, I'll go for a new one.
    Everything ran fine for at least a month.  Most resource hungry app I run is probably EQII.  Towards the end of last week I had a couple of complete crashes during game play and then on Saturday morning the system failed to boot.  I do have power as the case fans, CPU fan and GPU fan and various lights do go on.  It seemed like a hard drive failure to me, so I got a new one (Best Buy! OUCH! the price we pay if we want it that day) and it started up great.  I got windows loaded on the new drive, updated everything and was playing and working fine.  This was Saturday night and Sunday morning.  Sunday afternoon...not happening.  I'm back to a blank screen and lots of fans whirring and a few lights flashing but nothing else.  So, my questions:
    1. Is it possible that I somehow blew a second hard drive?
    2. Was it not the hard drive at all but something else?
    3. Will a new PSU solve the problem and will my original hard drive still work?
    4. Did Amelia Earhardt get abducted by aliens?
    Thank you for your time and patience.
    MEM

    Hans;
    Thank you for the reply.  Say hiya to Amelia for me.  Does this mean you're an alien?
    Ok, I tried using bootable CD and no go.
    I don't really have a simpler graphics card around to try that.  So that test may not happen.
    I can try with one dimm when I get home (I'm at work atm.)
    I also thought about putting the drive into another system and will try that also later today or tomorrow morning.
    D-Bracket:  I will have to watch that again.  It really didn't make sense to me as the lights went through a lot of the steps then came to a halt at what I think was BIOS Sign on.  Someone did suggest to me that I might have a virus, which may be why the second hard drive failed eventually.  But I'm not sure about that and not sure what can be done about that unless clearing CMOS would take care of it.
    So, any new thoughts?
    MEM

  • BI Publisher Cluster Deployment Issue

    Hi All,
    I have installed BI Publisher in two nodes A and B (stand alone basic). During scheduler configuration, I have checked cluster option. A load balancer has been configured to point to these two nodes.The data source is file system and location is on network file server.
    I have a java program that call BI Publisher webservice and submit the job for scheduling. The java program points to load balancer ip. Currently I am facing two issues as below:
    1. When I call BI Publisher webservice to schedule the job, I can see that the job is scheduled through one node only
    2. Processing the scheduled job (report generation is distributed into two nodes. But this distribution is not even. If I shedule 5 jobs, Node A is executing one job while the other node executes reamining 4 jobs. Thus I have noticed that Node A remains idle after completing the job till the other node completes the report generation
    Do I need to do make any changes/ perform additional configuration so that the job is distributed among the nodes evenly.
    Your help will be highlu appreciated
    Thanks
    Angshuman

    First, make sure you've got enough machine resources as BIEE11g is resources hungry.
    Next, after installation you should have icons to start BIEE11g (try windows version as it is easier to start up).
    Run the startBIEE11g script and it will take some minutes, be patient. Once you get all processes running
    then you can try to login.
    Take a look at my post:
    http://oraclebiblog.blogspot.com/2010/11/starting-and-stopping-biee-from-command.html
    Good luck
    regards
    Jorge

  • MBP 15" Retina Battery Life Problems

    Hello all!
    I recently got the highest end MBP 15" Retina and it runs AMAZINGLY fast, but the only problem I'm having with is the battery life.
    For example, right now, at 100% charge, the predicted time is 4 hours and 35 minutes, but it's plummeting very quickly; I don't think I'll get more than 1 or 2 hours.
    On the website, the average predicted battery life is almost 8 hours. I understand that the numbers on Apple's website may not be exact, but I feel like getting a quarter or even half of the advertised battery life suggests there is something wrong as well? o-o
    I'm not doing anything intensive on my computer either; just simple web browsing and chatting on Skype.
    I've searched the internet for solutions, and I've already tried resetting PRAM AND NVRAM settings, I've turned off Bluetooth, and checked off all of the Power Saver settings in Preferences.
    My battery's condition is "Normal" since I recently purchased it.
    I'm curious if anyone has a solution to this problem? (To give an idea of how fast the battery is draining, I started writing this post with 100% battery, and now it's at 98% several minutes later)
    If anyone has any advice, it'd be greatly appreciated!
    Thanks in advanced!

    puzzledsean wrote:
    I'm not doing anything intensive on my computer either; just simple web browsing and chatting on Skype.
    Skype is one of the most resource hungry application that one may use.  It will drain the battery very quickly.  When using it, connect your MBP to the power adapter.
    Read the Apple hype regarding battery run time.  The operative term is 'UP TO' not will achieve 8 hours run time.  In the 'real world' conditions, battery run time will be determined by the number and type of applications you are using.  If you are just text editing, you may very well get 8 hours from from the battery, but certainly not with Skype games or video.
    Ciao.

Maybe you are looking for

  • A wish list for iPhone 5

    I love to hear (and specially be heard by Apple) about iPhone updates. Here is a really cool wishlist for iPhone5 from CNET. http://reviews.cnet.com/iphone-5-most-wanted-features and I have 3 more and please add anything else you find useful: 1. This

  • Post invoice with 1p or 2p difference

    Dear Experts, I need to post the invoice even if the balance with difference untill 2p. Can you please guide me how to do the same. If this post is in the wrong place,please guide me where to post the same. Thanks, RR.

  • Why is the iPhone 5 available in the shops but, not yet available through apple online?

    A Friend of mine has just managed to collect an iPhone 5 at a local phone shop in town. I've pre ordered mine and was informed I won't receive it for two weeks from the apple site. why is this the case, and we have been avid apple fans for many years

  • How to add vcard to address book

    This is a feature proposal.. I just successfully added a vcf file address to the address book. It would be a nice feature to right click on an attached VCF file in an e-mail attachments, and add the vcf to the address book. Thanks Evan

  • Password for imessage on my imac not working

    I went on vacation for a week. The imac was turned off. I turned it one today. Everything works except for imessage and facetime. I was asked for the appleID passwords for both and entered them in but they failed. The AppleID password worked fine for