Excessive logical IO

Hii All
What is the excessive LIO ? so 1.000.000 LIO might be low or high according to sql ?
how could I determine the consistent gets+db block gets is higher than normal(or query+current in 10046 trace) ? is there any base relation when begining to start sql tuning ?
Best Regards

One method that I have seen to identify inefficient SQL statements by Christian Antognini is to compute the number of logical reads PER ROW RETURNED. If this metric seems out of whack with what you think should be happening it may be a candidate for tuning.
High LIO in itself may not be a good indicator because the query may be returning a lot of required data and doing it efficiently.

Similar Messages

  • Excessive Logical I/O's.

    DB - 9.2.0.8.0
    O.S - Win 2003 Server.
    I've got the following query, which does the excessive logical I/O. I really failed to figure out what caused these I/O's to occur.
    UPDATE REPAIRTIP SET BULLETINID =
    (SELECT DISTINCT B.BULLETINID FROM
    BULLETIN B
    INNER JOIN IMP_SERVICEREPAIRTIPSDATA I
    ON B.BULLETINNUMBER = I.TSB_NBR
    INNER JOIN IMP_REPAIRTIP T
    ON I.ISSUE_NBR = T.ISSUE_NBR
    AND I.PART_NBR = T.PART_NBR
    WHERE REPAIRTIP.REPAIRTIPID = T.REPAIRTIPID AND I.FEEDFILE_ID = 584)
    call count cpu elapsed disk query current rows
    Parse 1 0.01 0.00 0 0 0 0
    Execute 2 181.87 182.73 160 6618123 11654 5685
    Fetch 0 0.00 0.00 0 0 0 0
    total 3 181.89 182.74 160 6618123 11654 5685
    Misses in library cache during parse: 1
    Optimizer goal: CHOOSE
    Parsing user id: 74
    Rows Row Source Operation
    0 UPDATE
    5685 TABLE ACCESS FULL REPAIRTIP
    31 SORT UNIQUE
    62 TABLE ACCESS BY INDEX ROWID IMP_REPAIRTIP
    710625 NESTED LOOPS
    352470 NESTED LOOPS
    54359970 TABLE ACCESS BY INDEX ROWID IMP_SERVICEREPAIRTIPSDATA
    54359970 INDEX RANGE SCAN IX_SRT_FEEDFILE (object id 96233)
    352470 TABLE ACCESS BY INDEX ROWID BULLETIN
    352470 INDEX RANGE SCAN IDX_BULLETIN_BULLETINNO (object id 120835)
    352470 INDEX RANGE SCAN IDX_REPAIRTIPID_IMP_REPAIRTIP (object id 120836)
    Elapsed times include waiting on following events:
    Event waited on Times Max. Wait Total Waited
    ---------------------------------------- Waited ---------- ------------
    SQL*Net message to client 2 0.00 0.00
    SQL*Net message from client 2 77.80 77.80
    db file sequential read 149 0.01 0.06
    db file scattered read 3 0.01 0.01
    Here's auto trace output --
    compare@DEVDB> set autotrace traceonly statistics ;
    compare@DEVDB> UPDATE REPAIRTIP SET BULLETINID =
    2 (SELECT DISTINCT B.BULLETINID FROM
    3 BULLETIN B
    4 INNER JOIN IMP_SERVICEREPAIRTIPSDATA I
    5 ON B.BULLETINNUMBER = I.TSB_NBR
    6 INNER JOIN IMP_REPAIRTIP T
    7 ON I.ISSUE_NBR = T.ISSUE_NBR
    8 AND I.PART_NBR = T.PART_NBR
    9 WHERE REPAIRTIP.REPAIRTIPID = T.REPAIRTIPID AND I.FEEDFILE_ID = 584) ;
    5685 rows updated.
    Statistics
    2 recursive calls
    11645 db block gets
    6618119 consistent gets
    0 physical reads
    2377872 redo size
    794 bytes sent via SQL*Net to client
    1091 bytes received via SQL*Net from client
    4 SQL*Net roundtrips to/from client
    5686 sorts (memory)
    0 sorts (disk)
    5685 rows processed
    hare krishna
    Alok
    hare krishna
    Alok

    Thanks Jonathan and Hemant. Now, when I re-ran both the autotrace and explain. It seems both the plan got matched. But, I still feel the logical I/O's are still on the higher side . What do you suggest ?
    compare@DEVDB> UPDATE REPAIRTIP SET BULLETINID =
      2  (SELECT DISTINCT B.BULLETINID FROM
      3  BULLETIN B
      4  INNER JOIN IMP_SERVICEREPAIRTIPSDATA I
      5  ON B.BULLETINNUMBER = I.TSB_NBR
      6  INNER JOIN IMP_REPAIRTIP T
      7  ON I.ISSUE_NBR = T.ISSUE_NBR
      8  AND I.PART_NBR = T.PART_NBR WHERE REPAIRTIP.REPAIRTIPID = T.REPAIRTIPID AND I.FEEDFILE_ID = 584) ;
    5685 rows updated.
    Execution Plan
       0      UPDATE STATEMENT Optimizer=CHOOSE (Cost=4 Card=5685 Bytes=90960)
       1    0   UPDATE OF 'REPAIRTIP'
       2    1     TABLE ACCESS (FULL) OF 'REPAIRTIP' (Cost=4 Card=5685 Bytes=90960)
       3    1     SORT (UNIQUE) (Cost=8 Card=1 Bytes=68)
       4    3       TABLE ACCESS (BY INDEX ROWID) OF 'BULLETIN' (Cost=1 Card=1 Bytes=14)
       5    4         NESTED LOOPS (Cost=6 Card=1 Bytes=68)
       6    5           NESTED LOOPS (Cost=5 Card=1 Bytes=54)
       7    6             TABLE ACCESS (BY INDEX ROWID) OF 'IMP_REPAIRTIP' (Cost=2 Card=1 Byte
              s=24)
       8    7               INDEX (RANGE SCAN) OF 'IDX_REPAIRTIPID_IMP_REPAIRTIP' (NON-UNIQUE)
               (Cost=1 Card=1)
       9    6             TABLE ACCESS (BY INDEX ROWID) OF 'IMP_SERVICEREPAIRTIPSDATA' (Cost=3
               Card=1 Bytes=30)
      10    9               INDEX (RANGE SCAN) OF 'IX_SRT_PNB_ISSNB' (NON-UNIQUE) (Cost=1 Card
              =1)
      11    5           INDEX (RANGE SCAN) OF 'IDX_BULLETIN_BULLETINNO' (NON-UNIQUE)
    Statistics
            184  recursive calls
          11645  db block gets
          29465  consistent gets
           3173  physical reads
        2379496  redo size
            785  bytes sent via SQL*Net to client
           1083  bytes received via SQL*Net from client
              4  SQL*Net roundtrips to/from client
           5693  sorts (memory)
              0  sorts (disk)
           5685  rows processed
    compare@DEVDB> rollback;
    Rollback complete.
    compare@DEVDB> explain plan for
      2  UPDATE REPAIRTIP SET BULLETINID =
      3  (SELECT DISTINCT B.BULLETINID FROM
      4  BULLETIN B
      5  INNER JOIN IMP_SERVICEREPAIRTIPSDATA I
      6  ON B.BULLETINNUMBER = I.TSB_NBR
      7  INNER JOIN IMP_REPAIRTIP T
      8  ON I.ISSUE_NBR = T.ISSUE_NBR
      9  AND I.PART_NBR = T.PART_NBR WHERE REPAIRTIP.REPAIRTIPID = T.REPAIRTIPID AND I.FEEDFILE_ID = 584) ;
    Explained.
    compare@DEVDB> @Plan
    PLAN_TABLE_OUTPUT
    | Id  | Operation                        |  Name                          | Rows  | Bytes | Cost  |
    |   0 | UPDATE STATEMENT                 |                                |  5685 | 90960 |     4 |
    |   1 |  UPDATE                          | REPAIRTIP                      |       |       |       |
    |   2 |   TABLE ACCESS FULL              | REPAIRTIP                      |  5685 | 90960 |     4 |
    |   3 |   SORT UNIQUE                    |                                |     1 |    68 |     8 |
    |   4 |    TABLE ACCESS BY INDEX ROWID   | BULLETIN                       |     1 |    14 |     1 |
    |   5 |     NESTED LOOPS                 |                                |     1 |    68 |     6 |
    |   6 |      NESTED LOOPS                |                                |     1 |    54 |     5 |
    |   7 |       TABLE ACCESS BY INDEX ROWID| IMP_REPAIRTIP                  |     1 |    24 |     2 |
    |*  8 |        INDEX RANGE SCAN          | IDX_REPAIRTIPID_IMP_REPAIRTIP  |     1 |       |     1 |
    |*  9 |       TABLE ACCESS BY INDEX ROWID| IMP_SERVICEREPAIRTIPSDATA      |     1 |    30 |     3 |
    |* 10 |        INDEX RANGE SCAN          | IX_SRT_PNB_ISSNB               |     1 |       |     1 |
    |* 11 |      INDEX RANGE SCAN            | IDX_BULLETIN_BULLETINNO        |     1 |       |       |
    Predicate Information (identified by operation id):
       8 - access("T"."REPAIRTIPID"=:B1)
       9 - filter("I"."FEEDFILE_ID"=584)
      10 - access("I"."PART_NBR"="T"."PART_NBR" AND "I"."ISSUE_NBR"="T"."ISSUE_NBR")
      11 - access("B"."BULLETINNUMBER"="I"."TSB_NBR")
    Note: cpu costing is offhare krishna
    Alok

  • Excessive Packet Loss 1.87 Mb/s Down 39.63 Mb/s Up - 90.19% limited?

    Hello everyone, my name is Sherri.  I became a Fios Internet 50/25 subscriber 4 days ago.  For the first 24 hours speedtest.verizon.net was giving me as much as a 60/30 speed results.  The next morning I noticed web pages taking abnormally long to load (even google.com), so I decided to check my speed again and am now getting as low as 1MB/s download wired or wirelessly.  My upload remains unaffected but browsing can get so slow it's almost unusable.  Any large downloads I try end up failing (i.e. cyanogenmod nightlies).  This has been going on for the past 3 days on all of my devices (android, PC, Macbook).
    How can I check if this is a fixable problem on my end or if it's a problem with Fios in my area that I just need to wait out?  I called tech support and they just want to send me a new router, but if it was the router wouldn't my upload be affected as well?
    Network diagnostic tool:
    Checking for Middleboxes . . . . . . . . . . . . . . . . . . Done
    SendBufferSize set to [131768]
    running 10s outbound test (client to server) . . . . . 39.63Mb/s
    running 10s inbound test (server to client) . . . . . . 1.87Mb/s
    ------ Client System Details ------
    OS data: Name = Mac OS X, Architecture = x86_64, Version = 10.8.4
    Java data: Vendor = Oracle Corporation, Version = 1.7.0_25
    ------ Web100 Detailed Analysis ------
    Client Receive Window detected at 131760 bytes.
    100 Mbps FastEthernet link found.
    Link set to Full Duplex mode
    Information: throughput is limited by other network traffic.
    Good network cable(s) found
    Normal duplex operation found.
    Web100 reports the Round trip time = 11.77 msec; the Packet size = 1448 Bytes; and 
    There were 169 packets retransmitted, 493 duplicate acks received, and 554 SACK blocks received
    The connection stalled 17 times due to packet loss
    The connection was idle 3.65 seconds (30.41%) of the time
    This connection is sender limited 9.81% of the time.
    This connection is network limited 90.19% of the time.
    Excessive packet loss is impacting your performance, check the auto-negotiate function on your local PC and network switch
    Web100 reports TCP negotiated the optional Performance Settings to: 
    RFC 2018 Selective Acknowledgment: ON
    RFC 896 Nagle Algorithm: ON
    RFC 3168 Explicit Congestion Notification: OFF
    RFC 1323 Time Stamping: ON
    RFC 1323 Window Scaling: ON
    Information: Network Middlebox is modifying MSS variable
    Server IP addresses are preserved End-to-End
    Client IP address not found. For IE users, modify the Java parameters
    click Tools - Internet Options - Security - Custom Level, scroll down to
    Microsoft VM - Java permissions and click Custom, click Java Custom Settings
    Edit Permissions - Access to all Network Addresses, click Eanble and save changes
    Any help would be appreciated!  Aside from the internet, I'm really happy with Fios TV .  The customer service rep credited me the internet cost for this month because of my issues and for that I am very thankful!  but... I would still like to get this fixed as soon as possible.
    Things I've tried:
    resetting ONT
    Forced firmware upgrade and router reset
    Verizon reset my service and gave me a new IP

    By the way, I agree with sybrand: you need to tune
    your redo log size.
    Regards
    Ignacio
    http://oracledisect.blogspot.com
    Ignacio,
    The excessive waits on log file parallel write and the related client wait of log file sync may be due to insufficient CPU availability, and may not point at an actual redo log size problem or a problem with the disk speed where the redo is written to disk, especially if there are 3 Oracle instances on the server with a single CPU.
    Paraphrased from "Optimizing Oracle Performance":
    The log file sync wait event is one of the first events to show increased latencies due to the time a process spends waiting in a CPU wait queue while processing excessive logical IOs.
    Kevin Closson wrote a couple blog entries that examined the potential problems of insufficient CPU capacity and its effects on log file parallel write when writing to solid state disks, and even when writing redo was explicitly disabled:
    http://kevinclosson.wordpress.com/2007/07/21/manly-men-only-use-solid-state-disk-for-redo-logging-lgwr-io-is-simple-but-not-lgwr-processing/
    "Once LGWR loses his CPU it may be quite some time until he gets it back. For instance, if LGWR is preempted in the middle of trying to perform a redo buffer flush, there may be several time slices of execution for other processes before LGWR gets back on CPU..." Fix the CPU problem, and the other significant waits may decrease.
    JesusLuvR,
    yingkuan's suggestion to look at the SQL statement that performs the 4,365,564 logical IOs, consumes 186.03 CPU seconds, and has an execution time of 225.06 seconds, is likely a very good starting point. You might also want to check the value of the SESSION_CACHED_CURSORS parameter to see if it needs to be adjusted.
    Charles Hooper
    IT Manager/Oracle DBA
    K&M Machine-Fabricating, Inc.

  • Query Degradation--Hash Join Degraded

    Hi All,
    I found one query degradation issue.I am on 10.2.0.3.0 (Sun OS) with optimizer_mode=ALL_ROWS.
    This is a dataware house db.
    All 3 tables involved are parition tables (with daily partitions).Partitions are created in advance and ELT jobs loads bulk data into daily partitions.
    I have checked that CBO is not using local indexes-created on them which i believe,is appropriate because when i used INDEX HINT, elapsed time increses.
    I checked giving index hint for all tables one by one but dint get any performance improvement.
    Partitions are daily loaded and after loading,partition-level stats are gathered with dbms_stats.
    We are collecting stats at partition level(granularity=>'PARTITION').Even after collecting global stats,there is no change in access pattern.Stats gather command is given below.
    PROCEDURE gather_table_part_stats(i_owner_name,i_table_name,i_part_name,i_estimate:= DBMS_STATS.AUTO_SAMPLE_SIZE, i_invalidate IN VARCHAR2 := 'Y',i_debug:= 'N')
    Only SOT_KEYMAP.IPK_SOT_KEYMAP is GLOBAL.Rest all indexes are LOCAL.
    Earlier,we were having BIND PEEKING issue,which i fixed but introducing NO_INVALIDATE=>FALSE in stats gather job.
    Here,Partition_name (20090219) is being passed through bind variables.
    SELECT a.sotrelstg_sot_ud sotcrct_sot_ud,
    b.sotkey_ud sotcrct_orig_sot_ud, a.ROWID stage_rowid
    FROM (SELECT sotrelstg_sot_ud, sotrelstg_sys_ud,
    sotrelstg_orig_sys_ord_id, sotrelstg_orig_sys_ord_vseq
    FROM sot_rel_stage
    WHERE sotrelstg_trd_date_ymd_part = '20090219'
    AND sotrelstg_crct_proc_stat_cd = 'N'
    AND sotrelstg_sot_ud NOT IN(
    SELECT sotcrct_sot_ud
    FROM sot_correct
    WHERE sotcrct_trd_date_ymd_part ='20090219')) a,
    (SELECT MAX(sotkey_ud) sotkey_ud, sotkey_sys_ud,
    sotkey_sys_ord_id, sotkey_sys_ord_vseq,
    sotkey_trd_date_ymd_part
    FROM sot_keymap
    WHERE sotkey_trd_date_ymd_part = '20090219'
    AND sotkey_iud_cd = 'I'
    --not to select logical deleted rows
    GROUP BY sotkey_trd_date_ymd_part,
    sotkey_sys_ud,
    sotkey_sys_ord_id,
    sotkey_sys_ord_vseq) b
    WHERE a.sotrelstg_sys_ud = b.sotkey_sys_ud
    AND a.sotrelstg_orig_sys_ord_id = b.sotkey_sys_ord_id
    AND NVL(a.sotrelstg_orig_sys_ord_vseq, 1) = NVL(b.sotkey_sys_ord_vseq, 1);
    During normal business hr, i found that query takes 5-7 min(which is also not acceptable), but during high load business hr,it is taking 30-50 min.
    I found that most of the time it is spending on HASH JOIN (direct path write temp).We have sufficient RAM (64 GB total/41 GB available).
    Below is the execution plan i got during normal business hr.
    | Id  | Operation                 | Name                | Starts | E-Rows | A-Rows |   A-Time   | Buffers | Reads  | Writes |  OMem |  1Mem | Used-Mem | Used-Tmp|
    |   1 |  HASH GROUP BY            |                     |      1 |      1 |   7844K|00:05:28.78 |      16M|    217K|  35969 |       |       |          |         |
    |*  2 |   HASH JOIN               |                     |      1 |      1 |   9977K|00:04:34.02 |      16M|    202K|  20779 |   580M|    10M|  563M (1)|     650K|
    |   3 |    NESTED LOOPS ANTI      |                     |      1 |      6 |   7855K|00:01:26.41 |      16M|   1149 |      0 |       |       |          |         |
    |   4 |     PARTITION RANGE SINGLE|                     |      1 |    258K|   8183K|00:00:16.37 |   25576 |   1149 |      0 |       |       |          |         |
    |*  5 |      TABLE ACCESS FULL    | SOT_REL_STAGE       |      1 |    258K|   8183K|00:00:16.37 |   25576 |   1149 |      0 |       |       |          |         |
    |   6 |     PARTITION RANGE SINGLE|                     |   8183K|    326K|    327K|00:01:10.53 |      16M|      0 |      0 |       |       |          |         |
    |*  7 |      INDEX RANGE SCAN     | IDXL_SOTCRCT_SOT_UD |   8183K|    326K|    327K|00:00:53.37 |      16M|      0 |      0 |       |       |          |         |
    |   8 |    PARTITION RANGE SINGLE |                     |      1 |    846K|     14M|00:02:06.36 |     289K|    180K|      0 |       |       |          |         |
    |*  9 |     TABLE ACCESS FULL     | SOT_KEYMAP          |      1 |    846K|     14M|00:01:52.32 |     289K|    180K|      0 |       |       |          |         |
    I will attached the same for high load business hr once query gives results.It is still executing for last 50 mins.
    INDEX STATS (INDEXES ARE LOCAL INDEXES)
    TABLE_NAME                          INDEX_NAME                          COLUMN_NAME        COLUMN_POSITION   NUM_ROWS DISTINCT_KEYS CLUSTERING_FACTOR
    SOT_REL_STAGE                       IDXL_SOTRELSTG_SOT_UD               SOTRELSTG_SOT_UD                 1   25461560      25461560            184180
    SOT_REL_STAGE                                                           SOTRELSTG_TRD_DATE               2   25461560      25461560            184180
                                                                            _YMD_PART
    TABLE_NAME                          INDEX_NAME                          COLUMN_NAME        COLUMN_POSITION   NUM_ROWS DISTINCT_KEYS CLUSTERING_FACTOR
    SOT_KEYMAP                          IDXL_SOTKEY_ENTORDSYS_UD            SOTKEY_ENTRY_ORD_S               1 1012306940             3          38308680
                                                                            YS_UD
    SOT_KEYMAP                          IDXL_SOTKEY_HASH                    SOTKEY_HASH                      1 1049582320    1049582320        1049579520
    SOT_KEYMAP                                                              SOTKEY_TRD_DATE_YM               2 1049582320    1049582320        1049579520
                                                                            D_PART
    SOT_KEYMAP                          IDXL_SOTKEY_SOM_ORD                 SOTKEY_SOM_UD                    1 1023998560     268949136         559414840
    SOT_KEYMAP                                                              SOTKEY_SYS_ORD_ID                2 1023998560     268949136         559414840
    SOT_KEYMAP                          IPK_SOT_KEYMAP                      SOTKEY_UD                        1 1030369480    1015378900          24226580
    TABLE_NAME                          INDEX_NAME                          COLUMN_NAME        COLUMN_POSITION   NUM_ROWS DISTINCT_KEYS CLUSTERING_FACTOR
    SOT_CORRECT                         IDXL_SOTCRCT_SOT_UD                 SOTCRCT_SOT_UD                   1  412484756     412484756         411710982
    SOT_CORRECT                                                             SOTCRCT_TRD_DATE_Y               2  412484756     412484756         411710982
                                                                            MD_PART
    INDEX partiton stas (from dba_ind_partitions)
    INDEX_NAME                     PARTITION_NAME       STATUS       BLEVEL LEAF_BLOCKS DISTINCT_KEYS CLUSTERING_FACTOR   NUM_ROWS SAMPLE_SIZE LAST_ANALYZ GLO
    IDXL_SOTCRCT_SOT_UD            P20090219            USABLE            1         372        327879            216663     327879      327879 20-Feb-2009 YES
    IDXL_SOTKEY_ENTORDSYS_UD       P20090219            USABLE            2        2910             3             36618     856229      856229 19-Feb-2009 YES
    IDXL_SOTKEY_HASH               P20090219            USABLE            2        7783        853956            853914     853956      119705 19-Feb-2009 YES
    IDXL_SOTKEY_SOM_ORD            P20090219            USABLE            2        6411        531492            157147     799758      132610 19-Feb-2009 YES
    IDXL_SOTRELSTG_SOT_UD          P20090219            USABLE            2       13897       9682052             45867    9682052      794958 20-Feb-2009 YESThanks in advance.
    Bhavik Desai

    Hi Randolf,
    Thanks for the time you spent on this issue.I appreciate it.
    Please see my comments below:
    1. You've mentioned several times that you're passing the partition name as bind variable, but you're obviously testing the statement with literals rather than bind
    variables. So your tests obviously don't reflect what is going to happen in case of the actual execution. The cardinality estimates are potentially quite different when
    using bind variables for the partition key.
    Yes.I intentionaly used literals in my tests.I found couple of times that plan used by the application and plan generated by AUTOTRACE+EXPLAIN PLAN command...is same and
    caused hrly elapsed time.
    As i pointed out earlier,last month we solved couple of bind peeking issue by intproducing NO_VALIDATE=>FALSE in stats gather procedure,which we execute just after data
    load into such daily partitions and before start of jobs which executes this query.
    Execution plans From AWR (with parallelism on at table level DEGREE>1)-->This plan is one which CBO has used when degradation occured.This plan is used most of the times.
    ELAPSED_TIME_DELTA BUFFER_GETS_DELTA DISK_READS_DELTA CURSOR(SELECT*FROMTA
            1918506000          46154275              918 CURSOR STATEMENT : 4
    CURSOR STATEMENT : 4
    PLAN_TABLE_OUTPUT
    SQL_ID 39708a3azmks7
    SELECT A.SOTRELSTG_SOT_UD SOTCRCT_SOT_UD, B.SOTKEY_UD SOTCRCT_ORIG_SOT_UD, A.ROWID STAGE_ROWID FROM (SELECT SOTRELSTG_SOT_UD,
    SOTRELSTG_SYS_UD, SOTRELSTG_ORIG_SYS_ORD_ID, SOTRELSTG_ORIG_SYS_ORD_VSEQ FROM SOT_REL_STAGE WHERE SOTRELSTG_TRD_DATE_YMD_PART = :B1 AND
    SOTRELSTG_CRCT_PROC_STAT_CD = 'N' AND SOTRELSTG_SOT_UD NOT IN( SELECT SOTCRCT_SOT_UD FROM SOT_CORRECT WHERE SOTCRCT_TRD_DATE_YMD_PART =
    :B1 )) A, (SELECT MAX(SOTKEY_UD) SOTKEY_UD, SOTKEY_SYS_UD, SOTKEY_SYS_ORD_ID, SOTKEY_SYS_ORD_VSEQ, SOTKEY_TRD_DATE_YMD_PART FROM
    SOT_KEYMAP WHERE SOTKEY_TRD_DATE_YMD_PART = :B1 AND SOTKEY_IUD_CD = 'I' GROUP BY SOTKEY_TRD_DATE_YMD_PART, SOTKEY_SYS_UD,
    SOTKEY_SYS_ORD_ID, SOTKEY_SYS_ORD_VSEQ) B WHERE A.SOTRELSTG_SYS_UD = B.SOTKEY_SYS_UD AND A.SOTRELSTG_ORIG_SYS_ORD_ID =
    B.SOTKEY_SYS_ORD_ID AND NVL(A.SOTRELSTG_ORIG_SYS_ORD_VSEQ, 1) = NVL(B.SOTKEY_SYS_ORD_VSEQ, 1)
    Plan hash value: 1213870831
    | Id  | Operation                     | Name                | Rows  | Bytes | Cost (%CPU)| Time     | Pstart| Pstop |    TQ  |IN-OUT| PQ Distrib |
    |   0 | SELECT STATEMENT              |                     |       |       | 19655 (100)|          |       |       |        |      |            |
    |   1 |  PX COORDINATOR               |                     |       |       |            |          |       |       |        |      |            |
    |   2 |   PX SEND QC (RANDOM)         | :TQ10003            |     1 |   116 | 19655   (1)| 00:05:54 |       |       |  Q1,03 | P->S | QC (RAND)  |
    |   3 |    HASH GROUP BY              |                     |     1 |   116 | 19655   (1)| 00:05:54 |       |       |  Q1,03 | PCWP |            |
    |   4 |     PX RECEIVE                |                     |     1 |   116 | 19655   (1)| 00:05:54 |       |       |  Q1,03 | PCWP |            |
    |   5 |      PX SEND HASH             | :TQ10002            |     1 |   116 | 19655   (1)| 00:05:54 |       |       |  Q1,02 | P->P | HASH       |
    |   6 |       HASH GROUP BY           |                     |     1 |   116 | 19655   (1)| 00:05:54 |       |       |  Q1,02 | PCWP |            |
    |   7 |        NESTED LOOPS ANTI      |                     |     1 |   116 | 19654   (1)| 00:05:54 |       |       |  Q1,02 | PCWP |            |
    |   8 |         HASH JOIN             |                     |     1 |   102 | 19654   (1)| 00:05:54 |       |       |  Q1,02 | PCWP |            |
    |   9 |          PX JOIN FILTER CREATE| :BF0000             |    13M|   664M|  2427   (3)| 00:00:44 |       |       |  Q1,02 | PCWP |            |
    |  10 |           PX RECEIVE          |                     |    13M|   664M|  2427   (3)| 00:00:44 |       |       |  Q1,02 | PCWP |            |
    |  11 |            PX SEND HASH       | :TQ10000            |    13M|   664M|  2427   (3)| 00:00:44 |       |       |  Q1,00 | P->P | HASH       |
    |  12 |             PX BLOCK ITERATOR |                     |    13M|   664M|  2427   (3)| 00:00:44 |   KEY |   KEY |  Q1,00 | PCWC |            |
    |  13 |              TABLE ACCESS FULL| SOT_REL_STAGE       |    13M|   664M|  2427   (3)| 00:00:44 |   KEY |   KEY |  Q1,00 | PCWP |            |
    |  14 |          PX RECEIVE           |                     |    27M|  1270M| 17209   (1)| 00:05:10 |       |       |  Q1,02 | PCWP |            |
    |  15 |           PX SEND HASH        | :TQ10001            |    27M|  1270M| 17209   (1)| 00:05:10 |       |       |  Q1,01 | P->P | HASH       |
    |  16 |            PX JOIN FILTER USE | :BF0000             |    27M|  1270M| 17209   (1)| 00:05:10 |       |       |  Q1,01 | PCWP |            |
    |  17 |             PX BLOCK ITERATOR |                     |    27M|  1270M| 17209   (1)| 00:05:10 |   KEY |   KEY |  Q1,01 | PCWC |            |
    |  18 |              TABLE ACCESS FULL| SOT_KEYMAP          |    27M|  1270M| 17209   (1)| 00:05:10 |   KEY |   KEY |  Q1,01 | PCWP |            |
    |  19 |         PARTITION RANGE SINGLE|                     | 16185 |   221K|     0   (0)|          |   KEY |   KEY |  Q1,02 | PCWP |            |
    |  20 |          INDEX RANGE SCAN     | IDXL_SOTCRCT_SOT_UD | 16185 |   221K|     0   (0)|          |   KEY |   KEY |  Q1,02 | PCWP |            |
    Other Execution plan from AWR
    ELAPSED_TIME_DELTA BUFFER_GETS_DELTA DISK_READS_DELTA CURSOR(SELECT*FROMTA
            1053251381                 0             2925 CURSOR STATEMENT : 4
    CURSOR STATEMENT : 4
    PLAN_TABLE_OUTPUT
    SQL_ID 39708a3azmks7
    SELECT A.SOTRELSTG_SOT_UD SOTCRCT_SOT_UD, B.SOTKEY_UD SOTCRCT_ORIG_SOT_UD, A.ROWID STAGE_ROWID FROM (SELECT SOTRELSTG_SOT_UD,
    SOTRELSTG_SYS_UD, SOTRELSTG_ORIG_SYS_ORD_ID, SOTRELSTG_ORIG_SYS_ORD_VSEQ FROM SOT_REL_STAGE WHERE SOTRELSTG_TRD_DATE_YMD_PART = :B1 AND
    SOTRELSTG_CRCT_PROC_STAT_CD = 'N' AND SOTRELSTG_SOT_UD NOT IN( SELECT SOTCRCT_SOT_UD FROM SOT_CORRECT WHERE SOTCRCT_TRD_DATE_YMD_PART =
    :B1 )) A, (SELECT MAX(SOTKEY_UD) SOTKEY_UD, SOTKEY_SYS_UD, SOTKEY_SYS_ORD_ID, SOTKEY_SYS_ORD_VSEQ, SOTKEY_TRD_DATE_YMD_PART FROM
    SOT_KEYMAP WHERE SOTKEY_TRD_DATE_YMD_PART = :B1 AND SOTKEY_IUD_CD = 'I' GROUP BY SOTKEY_TRD_DATE_YMD_PART, SOTKEY_SYS_UD,
    SOTKEY_SYS_ORD_ID, SOTKEY_SYS_ORD_VSEQ) B WHERE A.SOTRELSTG_SYS_UD = B.SOTKEY_SYS_UD AND A.SOTRELSTG_ORIG_SYS_ORD_ID =
    B.SOTKEY_SYS_ORD_ID AND NVL(A.SOTRELSTG_ORIG_SYS_ORD_VSEQ, 1) = NVL(B.SOTKEY_SYS_ORD_VSEQ, 1)
    Plan hash value: 3434900850
    | Id  | Operation                     | Name                | Rows  | Bytes | Cost (%CPU)| Time     | Pstart| Pstop |    TQ  |IN-OUT| PQ Distrib |
    |   0 | SELECT STATEMENT              |                     |       |       |  1830 (100)|          |       |       |        |      |            |
    |   1 |  PX COORDINATOR               |                     |       |       |            |          |       |       |        |      |            |
    |   2 |   PX SEND QC (RANDOM)         | :TQ10003            |     1 |   131 |  1830   (2)| 00:00:33 |       |       |  Q1,03 | P->S | QC (RAND)  |
    |   3 |    HASH GROUP BY              |                     |     1 |   131 |  1830   (2)| 00:00:33 |       |       |  Q1,03 | PCWP |            |
    |   4 |     PX RECEIVE                |                     |     1 |   131 |  1830   (2)| 00:00:33 |       |       |  Q1,03 | PCWP |            |
    |   5 |      PX SEND HASH             | :TQ10002            |     1 |   131 |  1830   (2)| 00:00:33 |       |       |  Q1,02 | P->P | HASH       |
    |   6 |       HASH GROUP BY           |                     |     1 |   131 |  1830   (2)| 00:00:33 |       |       |  Q1,02 | PCWP |            |
    |   7 |        NESTED LOOPS ANTI      |                     |     1 |   131 |  1829   (2)| 00:00:33 |       |       |  Q1,02 | PCWP |            |
    |   8 |         HASH JOIN             |                     |     1 |   117 |  1829   (2)| 00:00:33 |       |       |  Q1,02 | PCWP |            |
    |   9 |          PX JOIN FILTER CREATE| :BF0000             |  1010K|    50M|   694   (1)| 00:00:13 |       |       |  Q1,02 | PCWP |            |
    |  10 |           PX RECEIVE          |                     |  1010K|    50M|   694   (1)| 00:00:13 |       |       |  Q1,02 | PCWP |            |
    |  11 |            PX SEND HASH       | :TQ10000            |  1010K|    50M|   694   (1)| 00:00:13 |       |       |  Q1,00 | P->P | HASH       |
    |  12 |             PX BLOCK ITERATOR |                     |  1010K|    50M|   694   (1)| 00:00:13 |   KEY |   KEY |  Q1,00 | PCWC |            |
    |  13 |              TABLE ACCESS FULL| SOT_KEYMAP          |  1010K|    50M|   694   (1)| 00:00:13 |   KEY |   KEY |  Q1,00 | PCWP |            |
    |  14 |          PX RECEIVE           |                     |    11M|   688M|  1129   (3)| 00:00:21 |       |       |  Q1,02 | PCWP |            |
    |  15 |           PX SEND HASH        | :TQ10001            |    11M|   688M|  1129   (3)| 00:00:21 |       |       |  Q1,01 | P->P | HASH       |
    |  16 |            PX JOIN FILTER USE | :BF0000             |    11M|   688M|  1129   (3)| 00:00:21 |       |       |  Q1,01 | PCWP |            |
    |  17 |             PX BLOCK ITERATOR |                     |    11M|   688M|  1129   (3)| 00:00:21 |   KEY |   KEY |  Q1,01 | PCWC |            |
    |  18 |              TABLE ACCESS FULL| SOT_REL_STAGE       |    11M|   688M|  1129   (3)| 00:00:21 |   KEY |   KEY |  Q1,01 | PCWP |            |
    |  19 |         PARTITION RANGE SINGLE|                     |  5209 | 72926 |     0   (0)|          |   KEY |   KEY |  Q1,02 | PCWP |            |
    |  20 |          INDEX RANGE SCAN     | IDXL_SOTCRCT_SOT_UD |  5209 | 72926 |     0   (0)|          |   KEY |   KEY |  Q1,02 | PCWP |            |
    EXECUTION PLAN AFTER SETTING DEGREE=1 (It was also degraded)
    | Id  | Operation                 | Name                | Rows  | Bytes |TempSpc| Cost (%CPU)| Time     | Pstart| Pstop |
    |   0 | SELECT STATEMENT          |                     |     1 |   129 |       | 42336   (2)| 00:12:43 |       |       |
    |   1 |  HASH GROUP BY            |                     |     1 |   129 |       | 42336   (2)| 00:12:43 |       |       |
    |   2 |   NESTED LOOPS ANTI       |                     |     1 |   129 |       | 42335   (2)| 00:12:43 |       |       |
    |*  3 |    HASH JOIN              |                     |     1 |   115 |    51M| 42334   (2)| 00:12:43 |       |       |
    |   4 |     PARTITION RANGE SINGLE|                     |   846K|    41M|       |  8241   (1)| 00:02:29 |    81 |    81 |
    |*  5 |      TABLE ACCESS FULL    | SOT_KEYMAP          |   846K|    41M|       |  8241   (1)| 00:02:29 |    81 |    81 |
    |   6 |     PARTITION RANGE SINGLE|                     |  8161K|   490M|       | 12664   (3)| 00:03:48 |    81 |    81 |
    |*  7 |      TABLE ACCESS FULL    | SOT_REL_STAGE       |  8161K|   490M|       | 12664   (3)| 00:03:48 |    81 |    81 |
    |   8 |    PARTITION RANGE SINGLE |                     |  6525K|    87M|       |     1   (0)| 00:00:01 |    81 |    81 |
    |*  9 |     INDEX RANGE SCAN      | IDXL_SOTCRCT_SOT_UD |  6525K|    87M|       |     1   (0)| 00:00:01 |    81 |    81 |
    Predicate Information (identified by operation id):
       3 - access("SOTRELSTG_SYS_UD"="SOTKEY_SYS_UD" AND "SOTRELSTG_ORIG_SYS_ORD_ID"="SOTKEY_SYS_ORD_ID" AND
                  NVL("SOTRELSTG_ORIG_SYS_ORD_VSEQ",1)=NVL("SOTKEY_SYS_ORD_VSEQ",1))
       5 - filter("SOTKEY_TRD_DATE_YMD_PART"=20090219 AND "SOTKEY_IUD_CD"='I')
       7 - filter("SOTRELSTG_CRCT_PROC_STAT_CD"='N' AND "SOTRELSTG_TRD_DATE_YMD_PART"=20090219)
       9 - access("SOTRELSTG_SOT_UD"="SOTCRCT_SOT_UD" AND "SOTCRCT_TRD_DATE_YMD_PART"=20090219)2. Why are you passing the partition name as bind variable? A statement executing 5 mins. best, > 2 hours worst obviously doesn't suffer from hard parsing issues and
    doesn't need to (shouldn't) share execution plans therefore. So I strongly suggest to use literals instead of bind variables. This also solves any potential issues caused
    by bind variable peeking.
    This is a custom application which uses bind variables to extract data from daily partitions.So,daily automated data extract from daily paritions after load and ELT process.
    Here,Value of bind variable is being passed through a procedure parameter.It would be bit difficult to use literals in such application.
    3. All your posted plans suffer from bad cardinality estimates. The NO_MERGE hint suggested by Timur only caused a (significant) damage limitation by obviously reducing
    the row source size by the group by operation before joining, but still the optimizer is way off, apart from the obviously wrong join order (larger row set first) in
    particular the NESTED LOOP operation is causing the main troubles due to excessive logical I/O, as already pointed out by Timur.
    Can i ask for alternatives to NESTED LOOP?
    4. Your PLAN_TABLE seems to be old (you should see a corresponding note at the bottom of the DBMS_XPLAN.DISPLAY output), because none of the operations have a
    filter/access predicate information attached. Since your main issue are the bad cardinality estimates, I strongly suggest to drop any existing PLAN_TABLEs in any non-Oracle
    owned schemas because 10g already provides one in the SYS schema (GTT PLAN_TABLE$) exposed via a public synonym, so that the EXPLAIN PLAN information provides the
    "Predicate Information" section below the plan covering the "Filter/Access" predicates.
    Please post a revised explain plan output including this crucial information so that we get a clue why the cardinality estimates are way off.
    I have dropped the old plan.Got above execution plan(listed above in first point) with PREDICATE information.
    "As already mentioned the usage of bind variables for the partition name makes this issue potentially worse."
    Is there any workaround without replacing bind variable.I am on 10g so 11g's feature will not help !!!
    How are you gathering the statistics daily, can you post the exact command(s) used?
    gather_table_part_stats(i_owner_name,i_table_name,i_part_name,i_estimate:= DBMS_STATS.AUTO_SAMPLE_SIZE, i_invalidate IN VARCHAR2 := 'Y',i_debug:= 'N')
    Thanks & Regards,
    Bhavik Desai

  • [svn:fx-trunk] 7830: Update ASDoc on the new backgroundFrameRate property to WindowedApplication , to by default reduce the CPU usage in cases where an app is not 'active'.

    Revision: 7830
    Author:   [email protected]
    Date:     2009-06-14 15:57:29 -0700 (Sun, 14 Jun 2009)
    Log Message:
    Update ASDoc on the new backgroundFrameRate property to WindowedApplication, to by default reduce the CPU usage in cases where an app is not 'active'.
    Bugs: SDK-21135
    Reviewer:
    QE Notes:
    Ticket Links:
        http://bugs.adobe.com/jira/browse/SDK-21135
    Modified Paths:
        flex/sdk/trunk/frameworks/projects/airframework/src/mx/core/WindowedApplication.as
        flex/sdk/trunk/frameworks/projects/airframework/src/spark/components/WindowedApplication. as

    By the way, I agree with sybrand: you need to tune
    your redo log size.
    Regards
    Ignacio
    http://oracledisect.blogspot.com
    Ignacio,
    The excessive waits on log file parallel write and the related client wait of log file sync may be due to insufficient CPU availability, and may not point at an actual redo log size problem or a problem with the disk speed where the redo is written to disk, especially if there are 3 Oracle instances on the server with a single CPU.
    Paraphrased from "Optimizing Oracle Performance":
    The log file sync wait event is one of the first events to show increased latencies due to the time a process spends waiting in a CPU wait queue while processing excessive logical IOs.
    Kevin Closson wrote a couple blog entries that examined the potential problems of insufficient CPU capacity and its effects on log file parallel write when writing to solid state disks, and even when writing redo was explicitly disabled:
    http://kevinclosson.wordpress.com/2007/07/21/manly-men-only-use-solid-state-disk-for-redo-logging-lgwr-io-is-simple-but-not-lgwr-processing/
    "Once LGWR loses his CPU it may be quite some time until he gets it back. For instance, if LGWR is preempted in the middle of trying to perform a redo buffer flush, there may be several time slices of execution for other processes before LGWR gets back on CPU..." Fix the CPU problem, and the other significant waits may decrease.
    JesusLuvR,
    yingkuan's suggestion to look at the SQL statement that performs the 4,365,564 logical IOs, consumes 186.03 CPU seconds, and has an execution time of 225.06 seconds, is likely a very good starting point. You might also want to check the value of the SESSION_CACHED_CURSORS parameter to see if it needs to be adjusted.
    Charles Hooper
    IT Manager/Oracle DBA
    K&M Machine-Fabricating, Inc.

  • No video, high fan noise on startup, for the THIRD TIME

    For the third time in slightly less than three years, I have encountered the same crippling problem with my iBook G4 (1 GHz, June 2004 vintage). In essence, the screen will abruptly go black while in use (not screensaver) and no amount of keyboard/mouse activity will reactivate the display. If I power off by holding down the power button then restart, the screen stays black and the fans come on full speed.
    Despite a bit of confusion on the details, this sounds like the problem described on the webpages below. In essence the Danish government has issued a finding that there is a design flaw which allows excessive logic board flexing, which in turn causes logic board failure.
    This is, as I said above, the third time I have encountered this failure in less than three years. Worse, they seem to be coming closer together. The first was after about 1.5 years, the second 9 months later, and now seven months after the second repair. Since I didn't get Apple Care, paying for a third repair out of pocket would bring my repair bill up to the cost of a new iBook.
    I do not abuse my iBook, and since the second repair I have been very careful with my iBook. Does anyone have any suggestions on getting Apple to acknowlege the problem or who I can appeal to? Apple's website doesn't seem to offer any e-mail tech support options and I'd rather not sit on hold for an age (again) if it can be avoided. While I don't want to abandon my iBook or Apple, I may be forced to if I can't rely on the hardware.
    Thanks
    Mark
    http://www.theregister.co.uk/2007/05/03/danishconsumer_complaints_board_claim_ibookdefect/
    http://www.forbrug.dk/presse/nyheder/pressekit/ibookg4/ibook-g4-english/
    http://www.coreyarnold.org/ibook/
    iBook G4 1GHz (early 2004)   Mac OS X (10.3.9)   blank screen, high fan noise on start

    Well it doesn't sound like the Danish power problem since it will start up.
    The ATI Mobility Radeon 9200 4x AGP graphics processor chips in these iBooks have been problematic. Usually it's the reball problem and it can be reballed for ~ $78. I've done 4 this year and they work just great. A cheap way to get nice laptops. If they respond to the "shim fix" then reballing will work.
    A more troubling problem is with the 9200 chip itself. My reballer says that this chip is in itself the cause of some of these problems. He knows it since it's also used in IBMs, Compaqs and many other laptops and he's seen a lot of failures. My only failed reball was a 9200. I have a line on a replacement board or finding the chip in a broken PC.
    Richard

  • Index is fragmented

    How can we know – Index is fragmented and re-built is required

    By Searching myself got some references:
    i am including hereby:
    From Sridhar's Oracle pages:
    http://oracle-core.blogspot.com/2007/04/moving-rebuilding-and-or-resizing.html
    How to identify indexes with "excessive" logically deleted rows.
    The first place to look is at any dynamic table I.E. Interface and temporary tables.
    Once the target tables have been identified, obtain a list of index names by using the following example SQL*PLUS script.
    SELECT index_name
    FROM dba_indexes
    WHERE owner = 'SCOTT'
    and table_name = 'EMP'
    For each of the indexes identified, execute the validate index command followed by the SQL*PLUS script shown below to obtain the results of the validate index command. Note: The index_stats table holds only one row.
    SQL> validate index gl.gl_interface_n1
    Index analyzed.
    SQL>
    Use the following SQL*PLUS script to obtain the results.
    column A heading "Index Name" format a30
    column B heading "Rows" format 999,999,990
    column C heading "Deleted|Rows" format 999,999,990
    column D heading "% Del" format 990.0
    SELECT name A,
    lf_rows B,
    del_lf_rows C,
    (del_lf_rows * 100 ) / lf_rows D
    FROM index_stats
    I usually rebuild indexes that have more than 20 % logically deleted rows.
    Rebuilding an index.
    The following PL*SQL script will build an SQL*PLUS script to drop and then recreate the index.
    Note: The storage clause and the index owner's password in the output file will have to be modified before you execute the resulting script. Modifying the storage clause will allow you to resize and or move the index.
    clear columns
    set serveroutput on;
    set echo off
    set heading off
    set feedback off
    set verify off
    WHENEVER SQLERROR CONTINUE
    /** OBTAIN COMMAND LINE PARAMETERS **/
    /** OWNER = Index owner **/
    /** INDEX_NAME = Index name **/
    DEFINE owner = '&1'
    DEFINE index_name = '&2'
    DECLARE
    /** CURSOR C1 Get the index columns **/
    CURSOR C1 is
    SELECT column_name
    FROM dba_ind_columns
    WHERE index_owner = upper('&&owner')
    and index_name = upper('&&index_name')
    ORDER by column_position;
    /** Decalre variables **/
    d_column_name VARCHAR(30);
    d_table_name VARCHAR(30);
    d_uniqe VARCHAR(9);
    d_max_columns NUMBER(4) := 0;
    d_column_counter NUMBER(4) := 0;
    BEGIN
    dbms_output.put_line('/****************************************/' );
    dbms_output.put_line('/* Drop and create index script */' );
    dbms_output.put_line('/* */' );
    dbms_output.put_line('/* Dont forget to edit this file for: */' );
    dbms_output.put_line('/* */' );
    dbms_output.put_line('/* 1. Connect password */' );
    dbms_output.put_line('/* 2. Storage params */' );
    dbms_output.put_line('/* */' );
    dbms_output.put_line('/****************************************/' );
    dbms_output.put_line('');
    dbms_output.put_line('');
    dbms_output.put_line('connect &&owner/password' );
    dbms_output.put_line('');
    dbms_output.put_line('');
    dbms_output.put_line('DROP INDEX &&index_name;' );
    dbms_output.put_line('');
    dbms_output.put_line('');
    /** Determine the number of columns **/
    /** in the index **/
    SELECT max(column_position)
    INTO d_max_columns
    FROM dba_ind_columns
    WHERE index_owner = upper('&&owner')
    and index_name = upper('&&index_name');
    SELECT table_name, uniqueness
    INTO d_table_name, d_uniqe
    FROM dba_indexes
    WHERE owner = upper('&&owner')
    and index_name = upper('&&index_name');
    /** Determine if the index is uniqe **/
    SELECT uniqueness
    INTO d_uniqe
    FROM dba_indexes
    WHERE owner = upper('&&owner')
    and index_name = upper('&&index_name');
    dbms_output.put_line('CREATE '|| d_uniqe ||' INDEX &&index_name' );
    dbms_output.put_line('ON '||d_table_name );
    dbms_output.put_line('(');
    OPEN C1;
    LOOP
    FETCH C1 INTO d_column_name;
    d_column_counter := d_column_counter + 1;
    EXIT WHEN C1%NOTFOUND;
    IF d_column_counter < d_max_columns THEN
    dbms_output.put_line( d_column_name||',' );
    ELSE
    dbms_output.put_line( d_column_name||' )' );
    END IF;
    END LOOP;
    dbms_output.put_line('STORAGE ( initial X M next X M');
    dbms_output.put_line(' minextents 1 maxextents 50');
    dbms_output.put_line(' pctincrease 0 );');
    END;
    NOTE 1: If the index is being used by another user, you will not be able to either validate or drop the index.
    NOTE 2: Beware of the primary key constraint.
    General details about the index can also be found by:
    Analyze index compute statistics;
    Select * from user_indexes
    where index_name= ‘’;
    To obtain further detail about an index:
    Analyze index validate structure;
    The command:
    Validate index ;
    Performs the same function.
    This places detailed information about the index in the table INDEX_STATS. This table can only contain one row, describing only the one index. This SQL also verifies the integrity of each data block in the index and checks for block corruption.
    For example, to get the size of an index:
    validate index ;
    select name "INDEX NAME", blocks * 8192 "BYTES ALLOCATED",
    btree_space "BYTES USED",
    (btree_space / (blocks * 8192))*100 "PERCENT USED"
    from index_stats;
    This assumes a block size of 8K (i.e. 8192 bytes). It shows the number of bytes allocated to the index and the number of bytes actually used.
    Note that it does not confirm that each row in the table has an index entry or that each index entry points to a row in the table. To check this:
    Analyze table validate structure cascade;
    so i am thanking MR. Sridhar Kasukurthi hereby

  • Wait V$ Views

    Hi Guys
    Please suggest me from which V$ View i can get the max cpu utilized, CPU Wait time, CPU Wait, cause for CPU wait, latch wait in library cache, latch free.
    Kindly help me Guys...
    Thanks
    Ram

    In V$SYSSTAT and V$SESSTAT you can find the CPU related information ('CPU used when call started','CPU used by this session')
    With V$OSSTAT and DBA_CPU_USAGE_STATISTICS you can find the OS level how all the CPU's being used.
    In Oracle, the majority of wait time is spent waiting in I/O or performing computations. As we have stressed, CPU enqueues can be observed when the CPU run queue exceeds the number of CPUs on the database server, and this can be seen by looking at the “r” column in the vmstat UNIX/Linux utility or within the Windows performance manager.
    If the system is already optimized, having CPU time as a top wait event is a positive because the addition of faster CPUs or more CPUs will relieve the bottleneck.
    However, high CPU usage is also indicative of excessive logical I/O (consistent gets ) against the data buffers which might indicate the need for SQL tuning or shared pool and library cache tuning. High CPU usage will be reported as a top 5 timed even in any AWR report as shown below:
    Top 5 Timed Events
    % Total
    Event Waits Time (s) Ela Time
    CPU time 4,851 4,042 55.76
    db file sequential read 1,968 1,997 27.55
    log file sync 299,097 369 5.08
    db file scattered read 53,031 330 4.55
    log file parallel write 302,680 190 2.62

  • Logical database excess problem

    hi frends,
    is it possible to make single report for using multiple logical databases ?

    Logical database as the name suggests is a logical combination of related tables along with their common selection criteria and database access routines. Now if you want to use more than one logical database, then you are basically accessing unrelated tables (or at least as per the definition of a logical database) and that defeats the purpose of a logical database which offers some benefits of reusable selection criteria and faster database access.
    That is the reason why SAP gave you an option to specify only one logical database in the attributes. Apart from this there may some technical limitations in providing such a feature, for instance what if you use 100 logical databases in a report, can the combined selection screens of all the logical databases be generated and handled? Can all the database access routines be loaded at the same time into the memory? So it may be both technical implementation limitations as well as logical reasoning that lead SAP to limit it to one LDB.

  • How to know the excess stock with in a sales order and line item

    Hi,
          i am running an MRP against a sales order and sales order line item. the materials are getting planned based on the requirement. but due to some reasons the production orders are confirmed with out consumption of the actual required quantity of the  components. so the stock  is kept  ideal in the sales order  though it is not required further.
       do to some othere reasons also the excess stock of componenets exist. the PR or POs may also exist for the materials though they are not required further.
    i am in need of a report for the excess stock or excess PR or Purchase order for a sales order.
      please give me logic to find the excess things in that sales order and sales order line item. the Expensional message 26 is there in stock requirement list . but it does not give the excess quantity existing.
    regards
    madan

    hi rajesh,
      thanks for your reply. please tell me the logic to see when only partial quantity of sale sorder are delivered  and also when no delivery is made also.
    but manufactured and placed in stock.
    please tell me the tables to follow and logic of going ahead with them.
    regards
    madan

  • PCMCIA firewire card for G4 laptop (follow-up to excessive timecode breaks)

    1.) It was recommended that I get a new firewire bus to resolve excessive timecode breaks when importing from a Canon camcorder to an external hard drive. I've been reading through posts on this topic...and saw getting a new firewire port mentioned a few times... How come when I called Apple to check on the cost of a new firewire card for my laptop Powerbook G4, I was told that nothing could be added without replacing the entire logic board? Am I missing something? I didn't say "PCMCIA firewire drive" - is that something special? Any idea of the cost to purchase and install?
    2.) Apple recommended just capturing to my internal hard drive, and transfering the projects. Apart from this being cumbersome... I need a little verification: if I transfer PROJECT X to my external hard drive, then do I also need to transfer my Audio Render, Autosave,Capture Scratch, Render, Thumbnail, and Waveform folders? [I realize this is basic, but I'm wary of losing the information the project needs and getting it all messed up]
    Powerbook G4,   Mac OS X (10.3.9)   FCP 4.5, LaCie external HD
    Powerbook G4,   Mac OS X (10.3.9)   FCP 4.5, LaCie external HD

    http://www.bhphotovideo.com/bnh/controller/home?A=details&kw=BEAFWT2&is=REG&Q=&O =productlist&sku=304014
    pcmcia is an card slot. If you have a 12" PB you may not have one.
    If you have a pcmcia slot, buy the card. Slide the card into your computer and start up. Put the camcorder on the card and your fw drive on the port built-in to your computer. Even if this does not solve the timecode issues, it will save you other headaches in the future.
    Question. Does capturing to your internal drive solve the timecode issues you are having?
    I disagree with the advice of capturing to your internal drive and transfering the project after the fact. There are a bunch of reasons why, and all of them are qualified, so I hesitate to go further until I know whether or not capturing to the internal drive is making your timecode headaches go away.
    I suspect capturing to the internal drive will not help the timecode issues which will make the whole point moot. But hopefully I'm wrong :>
    Tom
    ps
    When you talk to representatives from Apple, you have to be conscious that if they are not specialists in the area you are focused on their advice may be based on general recommendations from an IT or home user perspective. There is a difference between talking to a sales person on the floor of the Apple Store and someone from the Genius Bar. And the person at the Genius Bar may have a tremendous background in network installations, but never have opened FCP. Or you might get lucky and get a FCP savvy genius, who would be a bit weak when talking about some other area.
    This is not a knock, just a reality. It is difficult to be deeply conversant with even one area. It is not realistic for the generalists you usually deal with to know the best answers to very specific questions.
    I'm working toward becoming a certified trainer with FCP and it is not easy or cheap to become an expert at this one application, never mind all the possible applications and hardware combinations for wildly different needs and budgets.

  • Logic keeps on crashing with E/W Play and Absynth

    Recently Logic 9.1.8 (running on 64 bit 10.6.8) is crashing every 5 minutes or so.
    I'm not doing anything particularly intensive (there are only 8 tracks or so) however I am using some 3rd pary plugins, namely "Play" from East West and Absynth.
    It crashes seemingly randomly during playback. I've done far more complicated stuff than I'm doing now a couple of years ago (with the same plugins) and didn't have this issue.
    The only odd thing I've seen is that Absynth is filling, at times, over half of the CPU bar at the bottom, despite it only playing one track. That said, sometimes it crashes during playback when absynth isn't in the music.
    I'm using a 2.7Ghz quad-core 2011 iMac with (only) 4gb of RAM (though when it crashes there is still often in excess of half a gb free.
    Please help me!
    here's a copy of the crash report
    Process:    
    Logic Pro [428]
    Path:       
    /Applications/Logic Pro.app/Contents/MacOS/Logic Pro
    Identifier: 
    com.apple.logic.pro
    Version:    
    9.1.8 (1700.67)
    Build Info: 
    Logic-17006700~1
    Code Type:  
    X86-64 (Native)
    Parent Process:  launchd [107]
    Date/Time:  
    2014-05-25 13:11:12.796 +0100
    OS Version: 
    Mac OS X 10.6.8 (10K549)
    Report Version:  6
    Interval Since Last Report:     
    199326 sec
    Crashes Since Last Report:      
    17
    Per-App Interval Since Last Report:  93131 sec
    Per-App Crashes Since Last Report:   16
    Anonymous UUID:                 
    7A6C67A1-B014-4C31-988F-AFA17F3616E5
    Exception Type:  EXC_CRASH (SIGABRT)
    Exception Codes: 0x0000000000000000, 0x0000000000000000
    Crashed Thread:  16
    Application Specific Information:
    abort() called
    Thread 0:  Dispatch queue: com.apple.main-thread
    0   libSystem.B.dylib        
    0x00007fff803c3d7a mach_msg_trap + 10
    1   libSystem.B.dylib        
    0x00007fff803c43ed mach_msg + 59
    2   com.apple.CoreFoundation 
    0x00007fff83a03902 __CFRunLoopRun + 1698
    3   com.apple.CoreFoundation 
    0x00007fff83a02d8f CFRunLoopRunSpecific + 575
    4   com.apple.HIToolbox      
    0x00007fff8849d74e RunCurrentEventLoopInMode + 333
    5   com.apple.HIToolbox      
    0x00007fff8849d553 ReceiveNextEventCommon + 310
    6   com.apple.HIToolbox      
    0x00007fff8849d40c BlockUntilNextEventMatchingListInMode + 59
    7   com.apple.AppKit         
    0x00007fff81bffeb2 _DPSNextEvent + 708
    8   com.apple.AppKit         
    0x00007fff81bff801 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 155
    9   com.apple.AppKit         
    0x00007fff81bc568f -[NSApplication run] + 395
    10  com.apple.prokit         
    0x000000010120d04b NSProApplicationMain + 267
    11  com.apple.logic.pro      
    0x000000010002aa58 DummyConnection::DummyConnection() + 86
    Thread 1:  Dispatch queue: com.apple.libdispatch-manager
    0   libSystem.B.dylib        
    0x00007fff803dcc0a kevent + 10
    1   libSystem.B.dylib        
    0x00007fff803deadd _dispatch_mgr_invoke + 154
    2   libSystem.B.dylib        
    0x00007fff803de7b4 _dispatch_queue_invoke + 185
    3   libSystem.B.dylib        
    0x00007fff803de2de _dispatch_worker_thread2 + 252
    4   libSystem.B.dylib        
    0x00007fff803ddc08 _pthread_wqthread + 353
    5   libSystem.B.dylib        
    0x00007fff803ddaa5 start_wqthread + 13
    Thread 2:
    0   libSystem.B.dylib        
    0x00007fff803c3d7a mach_msg_trap + 10
    1   libSystem.B.dylib        
    0x00007fff803c43ed mach_msg + 59
    2   com.apple.CoreFoundation 
    0x00007fff83a03902 __CFRunLoopRun + 1698
    3   com.apple.CoreFoundation 
    0x00007fff83a02d8f CFRunLoopRunSpecific + 575
    4   com.apple.Foundation     
    0x00007fff806fb14f +[NSURLConnection(NSURLConnectionReallyInternal) _resourceLoadLoop:] + 297
    5   com.apple.Foundation     
    0x00007fff8067c114 __NSThread__main__ + 1429
    6   libSystem.B.dylib        
    0x00007fff803fcfd6 _pthread_start + 331
    7   libSystem.B.dylib        
    0x00007fff803fce89 thread_start + 13
    Thread 3:  com.apple.CFSocket.private
    0   libSystem.B.dylib        
    0x00007fff80407932 select$DARWIN_EXTSN + 10
    1   com.apple.CoreFoundation 
    0x00007fff83a25468 __CFSocketManager + 824
    2   libSystem.B.dylib        
    0x00007fff803fcfd6 _pthread_start + 331
    3   libSystem.B.dylib        
    0x00007fff803fce89 thread_start + 13
    Thread 4:
    0   libSystem.B.dylib        
    0x00007fff803fea6a __semwait_signal + 10
    1   libSystem.B.dylib        
    0x00007fff80402881 _pthread_cond_wait + 1286
    2   com.apple.music.apps.MAFiles 
    0x00000001030384d4 ExtendedAudioFileScheduler::WorkerThreadProc() + 100
    3   com.apple.music.apps.MAFiles 
    0x0000000103038589 ExtendedAudioFileScheduler::WorkerThreadProc(void*) + 9
    4   libSystem.B.dylib        
    0x00007fff803fcfd6 _pthread_start + 331
    5   libSystem.B.dylib        
    0x00007fff803fce89 thread_start + 13
    Thread 5:
    0   libSystem.B.dylib        
    0x00007fff803fea6a __semwait_signal + 10
    1   libSystem.B.dylib        
    0x00007fff80402881 _pthread_cond_wait + 1286
    2   com.apple.music.apps.MAFiles 
    0x00000001030384d4 ExtendedAudioFileScheduler::WorkerThreadProc() + 100
    3   com.apple.music.apps.MAFiles 
    0x0000000103038589 ExtendedAudioFileScheduler::WorkerThreadProc(void*) + 9
    4   libSystem.B.dylib        
    0x00007fff803fcfd6 _pthread_start + 331
    5   libSystem.B.dylib        
    0x00007fff803fce89 thread_start + 13
    Thread 6:
    0   libSystem.B.dylib        
    0x00007fff803c3dda semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib        
    0x00007fff80402772 _pthread_cond_wait + 1015
    2   com.apple.audio.CoreAudio
    0x00007fff83b6768c CAGuard::WaitFor(unsigned long long) + 168
    3   com.apple.audio.CoreAudio
    0x00007fff83b69c1b CAGuard::WaitUntil(unsigned long long) + 185
    4   com.apple.audio.CoreAudio
    0x00007fff83b67d85 HP_IOThread::WorkLoop() + 1369
    5   com.apple.audio.CoreAudio
    0x00007fff83b67827 HP_IOThread::ThreadEntry(HP_IOThread*) + 9
    6   com.apple.audio.CoreAudio
    0x00007fff83b67755 CAPThread::Entry(CAPThread*) + 125
    7   libSystem.B.dylib        
    0x00007fff803fcfd6 _pthread_start + 331
    8   libSystem.B.dylib        
    0x00007fff803fce89 thread_start + 13
    Thread 7:
    0   libSystem.B.dylib        
    0x00007fff803c3e82 mach_wait_until + 10
    1   ...ple.CoreServices.CarbonCore
    0x00007fff826b4df5 MPDelayUntil + 28
    2   ...ple.CoreServices.CarbonCore
    0x00007fff826c3361 Delay + 93
    3   ...opellerheads.rewire.library
    0x000000012662627b RWIsReWireMixerAppRunningImp + 31035
    4   ...opellerheads.rewire.library
    0x0000000126633c59 RWIsReWireMixerAppRunningImp + 86809
    5   libSystem.B.dylib        
    0x00007fff803fcfd6 _pthread_start + 331
    6   libSystem.B.dylib        
    0x00007fff803fce89 thread_start + 13
    Thread 8:
    0   libSystem.B.dylib        
    0x00007fff803c3d7a mach_msg_trap + 10
    1   libSystem.B.dylib        
    0x00007fff803c43ed mach_msg + 59
    2   ...ropellerheads.reason.engine
    0x0000000126c1a408 RWDEFLaunchPanelApp + 3224984
    3   libSystem.B.dylib        
    0x00007fff803fcfd6 _pthread_start + 331
    4   libSystem.B.dylib        
    0x00007fff803fce89 thread_start + 13
    Thread 9:
    0   libSystem.B.dylib        
    0x00007fff803fea6a __semwait_signal + 10
    1   libSystem.B.dylib        
    0x00007fff80402881 _pthread_cond_wait + 1286
    2   ...le.music.apps.MAAudioEngine
    0x0000000103117f2b MD::CallProcessThread1(void*) + 299
    3   libSystem.B.dylib        
    0x00007fff803fcfd6 _pthread_start + 331
    4   libSystem.B.dylib        
    0x00007fff803fce89 thread_start + 13
    Thread 10:
    0   libSystem.B.dylib        
    0x00007fff803fea6a __semwait_signal + 10
    1   libSystem.B.dylib        
    0x00007fff80402881 _pthread_cond_wait + 1286
    2   ...le.music.apps.MAAudioEngine
    0x0000000103117d0e MD::CallProcessThread2(void*) + 302
    3   libSystem.B.dylib        
    0x00007fff803fcfd6 _pthread_start + 331
    4   libSystem.B.dylib        
    0x00007fff803fce89 thread_start + 13
    Thread 11:
    0   libSystem.B.dylib        
    0x00007fff803fea6a __semwait_signal + 10
    1   libSystem.B.dylib        
    0x00007fff80402881 _pthread_cond_wait + 1286
    2   ...le.music.apps.MAAudioEngine
    0x0000000103117a35 MD::CallProcessThread3(void*) + 85
    3   libSystem.B.dylib        
    0x00007fff803fcfd6 _pthread_start + 331
    4   libSystem.B.dylib        
    0x00007fff803fce89 thread_start + 13
    Thread 12:
    0   libSystem.B.dylib        
    0x00007fff803fea6a __semwait_signal + 10
    1   libSystem.B.dylib        
    0x00007fff80402881 _pthread_cond_wait + 1286
    2   ...le.music.apps.MAAudioEngine
    0x00000001031161ee MD::CallProcessThread15(void*) + 302
    3   libSystem.B.dylib        
    0x00007fff803fcfd6 _pthread_start + 331
    4   libSystem.B.dylib        
    0x00007fff803fce89 thread_start + 13
    Thread 13:
    0   libSystem.B.dylib        
    0x00007fff803fea6a __semwait_signal + 10
    1   libSystem.B.dylib        
    0x00007fff803fe8f9 nanosleep + 148
    2   libSystem.B.dylib        
    0x00007fff8044b9ac sleep + 61
    3   ...sic.apps.MAAudioUnitSupport
    0x00000001010ce98a CAudioUnitClient::WatchDog(void*) + 26
    4   libSystem.B.dylib        
    0x00007fff803fcfd6 _pthread_start + 331
    5   libSystem.B.dylib        
    0x00007fff803fce89 thread_start + 13
    Thread 14:
    0   libSystem.B.dylib        
    0x00007fff803fea6a __semwait_signal + 10
    1   libSystem.B.dylib        
    0x00007fff80402881 _pthread_cond_wait + 1286
    2   ...le.music.apps.MAAudioEngine
    0x0000000103132cd0 CAudioFileBlockManager::GetBlock(MDFile const*, long, int) + 2064
    3   libSystem.B.dylib        
    0x00007fff803fcfd6 _pthread_start + 331
    4   libSystem.B.dylib        
    0x00007fff803fce89 thread_start + 13
    Thread 15:
    0   libSystem.B.dylib        
    0x00007fff803c3d7a mach_msg_trap + 10
    1   libSystem.B.dylib        
    0x00007fff803c43ed mach_msg + 59
    2   com.apple.audio.midi.CoreMIDI
    0x00000001016eb9c1 XServerMachPort::ReceiveMessage(int&, void*, int&) + 155
    3   com.apple.audio.midi.CoreMIDI
    0x000000010170873d MIDIProcess::RunMIDIInThread() + 147
    4   com.apple.audio.midi.CoreMIDI
    0x00000001016ecace XThread::RunHelper(void*) + 10
    5   com.apple.audio.midi.CoreMIDI
    0x00000001016ec509 CAPThread::Entry(CAPThread*) + 67
    6   libSystem.B.dylib        
    0x00007fff803fcfd6 _pthread_start + 331
    7   libSystem.B.dylib        
    0x00007fff803fce89 thread_start + 13
    Thread 16 Crashed:
    0   libSystem.B.dylib        
    0x00007fff804369ce __semwait_signal_nocancel + 10
    1   libSystem.B.dylib        
    0x00007fff804368d0 nanosleep$NOCANCEL + 129
    2   libSystem.B.dylib        
    0x00007fff804933ce usleep$NOCANCEL + 57
    3   libSystem.B.dylib        
    0x00007fff804b29a1 __abort + 113
    4   libSystem.B.dylib        
    0x00007fff804b2a05 abort_report_np + 0
    5   com.apple.logic.pro      
    0x00000001003b3226 std::_Rb_tree<short, std::pair<short const, CGRect>, std::_Select1st<std::pair<short const, CGRect> >, std::less<short>, std::allocator<std::pair<short const, CGRect> > >::_M_erase(std::_Rb_tree_node<std::pair<short const, CGRect> >*) + 98486
    6   libSystem.B.dylib        
    0x00007fff804241ba _sigtramp + 26
    7   ???                      
    0x000000012cb0a910 0 + 5044742416
    8   com.apple.logic.pro      
    0x000000010035a146 void std::__introsort_loop<__gnu_cxx::__normal_iterator<TMixerStrip*, std::vector<TMixerStrip, std::allocator<TMixerStrip> > >, long>(__gnu_cxx::__normal_iterator<TMixerStrip*, std::vector<TMixerStrip, std::allocator<TMixerStrip> > >, __gnu_cxx::__normal_iterator<TMixerStrip*, std::vector<TMixerStrip, std::allocator<TMixerStrip> > >, long) + 58566
    9   com.apple.logic.pro      
    0x0000000100353c8f void std::__introsort_loop<__gnu_cxx::__normal_iterator<TMixerStrip*, std::vector<TMixerStrip, std::allocator<TMixerStrip> > >, long>(__gnu_cxx::__normal_iterator<TMixerStrip*, std::vector<TMixerStrip, std::allocator<TMixerStrip> > >, __gnu_cxx::__normal_iterator<TMixerStrip*, std::vector<TMixerStrip, std::allocator<TMixerStrip> > >, long) + 32783
    10  com.apple.logic.pro      
    0x00000001003514a6 void std::__introsort_loop<__gnu_cxx::__normal_iterator<TMixerStrip*, std::vector<TMixerStrip, std::allocator<TMixerStrip> > >, long>(__gnu_cxx::__normal_iterator<TMixerStrip*, std::vector<TMixerStrip, std::allocator<TMixerStrip> > >, __gnu_cxx::__normal_iterator<TMixerStrip*, std::vector<TMixerStrip, std::allocator<TMixerStrip> > >, long) + 22566
    11  com.apple.logic.pro      
    0x0000000100356e02 void std::__introsort_loop<__gnu_cxx::__normal_iterator<TMixerStrip*, std::vector<TMixerStrip, std::allocator<TMixerStrip> > >, long>(__gnu_cxx::__normal_iterator<TMixerStrip*, std::vector<TMixerStrip, std::allocator<TMixerStrip> > >, __gnu_cxx::__normal_iterator<TMixerStrip*, std::vector<TMixerStrip, std::allocator<TMixerStrip> > >, long) + 45442
    12  com.apple.logic.pro      
    0x000000010034f52a void std::__introsort_loop<__gnu_cxx::__normal_iterator<TMixerStrip*, std::vector<TMixerStrip, std::allocator<TMixerStrip> > >, long>(__gnu_cxx::__normal_iterator<TMixerStrip*, std::vector<TMixerStrip, std::allocator<TMixerStrip> > >, __gnu_cxx::__normal_iterator<TMixerStrip*, std::vector<TMixerStrip, std::allocator<TMixerStrip> > >, long) + 14506
    13  ...ple.CoreServices.CarbonCore
    0x00007fff826c369f TimerThread + 294
    14  libSystem.B.dylib        
    0x00007fff803fcfd6 _pthread_start + 331
    15  libSystem.B.dylib        
    0x00007fff803fce89 thread_start + 13
    Thread 17:
    0   libSystem.B.dylib        
    0x00007fff80407932 select$DARWIN_EXTSN + 10
    1   com.apple.logic.pro      
    0x00000001009101f2 std::vector<std::pair<double, AttachedTimerListener>, std::allocator<std::pair<double, AttachedTimerListener> > >::_M_insert_aux(__gnu_cxx::__normal_iterator<std::pair<double, AttachedTimerListener>*, std::vector<std::pair<double, AttachedTimerListener>, std::allocator<std::pair<double, AttachedTimerListener> > > >, std::pair<double, AttachedTimerListener> const&) + 1554
    2   com.apple.logic.pro      
    0x000000010055859d std::vector<TOSCService, std::allocator<TOSCService> >::erase(__gnu_cxx::__normal_iterator<TOSCService*, std::vector<TOSCService, std::allocator<TOSCService> > >, __gnu_cxx::__normal_iterator<TOSCService*, std::vector<TOSCService, std::allocator<TOSCService> > >) + 40333
    3   libSystem.B.dylib        
    0x00007fff803fcfd6 _pthread_start + 331
    4   libSystem.B.dylib        
    0x00007fff803fce89 thread_start + 13
    Thread 18:
    0   libSystem.B.dylib        
    0x00007fff803c3dce semaphore_timedwait_trap + 10
    1   com.eastwest.Play        
    0x000000012f99f73c ousia::Streams::OSXVoiceFeeder::run(int) + 252
    2   libSystem.B.dylib        
    0x00007fff803fcfd6 _pthread_start + 331
    3   libSystem.B.dylib        
    0x00007fff803fce89 thread_start + 13
    Thread 19:
    0   libSystem.B.dylib        
    0x00007fff803c3dce semaphore_timedwait_trap + 10
    1   com.eastwest.Play        
    0x000000012f99f73c ousia::Streams::OSXVoiceFeeder::run(int) + 252
    2   libSystem.B.dylib        
    0x00007fff803fcfd6 _pthread_start + 331
    3   libSystem.B.dylib        
    0x00007fff803fce89 thread_start + 13
    Thread 20:
    0   libSystem.B.dylib        
    0x00007fff803c3dce semaphore_timedwait_trap + 10
    1   com.eastwest.Play        
    0x000000012f99f73c ousia::Streams::OSXVoiceFeeder::run(int) + 252
    2   libSystem.B.dylib        
    0x00007fff803fcfd6 _pthread_start + 331
    3   libSystem.B.dylib        
    0x00007fff803fce89 thread_start + 13
    Thread 21:
    0   libSystem.B.dylib        
    0x00007fff803c3dce semaphore_timedwait_trap + 10
    1   com.eastwest.Play        
    0x000000012f99f73c ousia::Streams::OSXVoiceFeeder::run(int) + 252
    2   libSystem.B.dylib        
    0x00007fff803fcfd6 _pthread_start + 331
    3   libSystem.B.dylib        
    0x00007fff803fce89 thread_start + 13
    Thread 22:
    0   libSystem.B.dylib        
    0x00007fff803fea6a __semwait_signal + 10
    1   libSystem.B.dylib        
    0x00007fff80402881 _pthread_cond_wait + 1286
    2   ...st.midi.wordbuildervstplayj
    0x000000013777b29f juce::WaitableEventImpl::wait(int) + 57
    3   ...st.midi.wordbuildervstplayj
    0x000000013776d3c4 juce::WaitableEvent::wait(int) const + 12
    4   ...st.midi.wordbuildervstplayj
    0x000000013778d105 juce::Thread::wait(int) const + 13
    5   ...st.midi.wordbuildervstplayj
    0x0000000137653c8d MyTimerThread::run() + 69
    6   ...st.midi.wordbuildervstplayj
    0x000000013778d53e juce::Thread::threadEntryPoint() + 86
    7   ...st.midi.wordbuildervstplayj
    0x00000001377747dd juce::threadEntryProc(void*) + 29
    8   libSystem.B.dylib        
    0x00007fff803fcfd6 _pthread_start + 331
    9   libSystem.B.dylib        
    0x00007fff803fce89 thread_start + 13
    Thread 23:
    0   libSystem.B.dylib        
    0x00007fff803c3d7a mach_msg_trap + 10
    1   libSystem.B.dylib        
    0x00007fff803c43ed mach_msg + 59
    2   com.apple.CoreFoundation 
    0x00007fff83a03902 __CFRunLoopRun + 1698
    3   com.apple.CoreFoundation 
    0x00007fff83a02d8f CFRunLoopRunSpecific + 575
    4   com.apple.CoreFoundation 
    0x00007fff83a02b16 CFRunLoopRun + 70
    5   com.eastwest.Play        
    0x000000012fb9896d CUSBDeviceNotifyThread::M192D295BF6D8B650() + 325
    6   com.eastwest.Play        
    0x000000012fb99324 CPThread::thread_routine(void*) + 112
    7   libSystem.B.dylib        
    0x00007fff803fcfd6 _pthread_start + 331
    8   libSystem.B.dylib        
    0x00007fff803fce89 thread_start + 13
    Thread 24:
    0   libSystem.B.dylib        
    0x00007fff803fea6a __semwait_signal + 10
    1   libSystem.B.dylib        
    0x00007fff803fe8f9 nanosleep + 148
    2   libSystem.B.dylib        
    0x00007fff803fe863 usleep + 57
    3   com.eastwest.Play        
    0x000000012fb9952f CPTTimer::M192D295BF6D8B650() + 103
    4   com.eastwest.Play        
    0x000000012fb99324 CPThread::thread_routine(void*) + 112
    5   libSystem.B.dylib        
    0x00007fff803fcfd6 _pthread_start + 331
    6   libSystem.B.dylib        
    0x00007fff803fce89 thread_start + 13
    Thread 25:
    0   libSystem.B.dylib        
    0x00007fff803fea6a __semwait_signal + 10
    1   libSystem.B.dylib        
    0x00007fff803fe8f9 nanosleep + 148
    2   libSystem.B.dylib        
    0x00007fff803fe863 usleep + 57
    3   ...nth 5.MusicDevice.component
    0x000000013c0ddebe ProgramChangeThread::run() + 30
    4   ...nth 5.MusicDevice.component
    0x000000013c57e949 NI::GP::Thread::execute(void*) + 73
    5   libSystem.B.dylib        
    0x00007fff803fcfd6 _pthread_start + 331
    6   libSystem.B.dylib        
    0x00007fff803fce89 thread_start + 13
    Thread 26:
    0   libSystem.B.dylib        
    0x00007fff803fea6a __semwait_signal + 10
    1   libSystem.B.dylib        
    0x00007fff803fe8f9 nanosleep + 148
    2   libSystem.B.dylib        
    0x00007fff803fe863 usleep + 57
    3   ...nth 5.MusicDevice.component
    0x000000013c0ddebe ProgramChangeThread::run() + 30
    4   ...nth 5.MusicDevice.component
    0x000000013c57e949 NI::GP::Thread::execute(void*) + 73
    5   libSystem.B.dylib        
    0x00007fff803fcfd6 _pthread_start + 331
    6   libSystem.B.dylib        
    0x00007fff803fce89 thread_start + 13
    Thread 27:
    0   libSystem.B.dylib        
    0x00007fff803fea6a __semwait_signal + 10
    1   libSystem.B.dylib        
    0x00007fff80402881 _pthread_cond_wait + 1286
    2   com.eastwest.Play        
    0x000000012f7ef86b juce::WaitableEventImpl::wait(int) + 57
    3   com.eastwest.Play        
    0x000000012f7e4ef2 juce::WaitableEvent::wait(int) const + 12
    4   com.eastwest.Play        
    0x000000012f90e365 ousia::PartConvolution::Process::run() + 53
    5   com.eastwest.Play        
    0x000000012f7ff25b juce::Thread::threadEntryPoint() + 91
    6   com.eastwest.Play        
    0x000000012f7eb1b0 juce::threadEntryProc(void*) + 29
    7   libSystem.B.dylib        
    0x00007fff803fcfd6 _pthread_start + 331
    8   libSystem.B.dylib        
    0x00007fff803fce89 thread_start + 13
    Thread 28:
    0   libSystem.B.dylib        
    0x00007fff803fea6a __semwait_signal + 10
    1   libSystem.B.dylib        
    0x00007fff80402881 _pthread_cond_wait + 1286
    2   com.eastwest.Play        
    0x000000012f7ef8ec juce::WaitableEventImpl::wait(int) + 186
    3   com.eastwest.Play        
    0x000000012f7e4ef2 juce::WaitableEvent::wait(int) const + 12
    4   com.eastwest.Play        
    0x000000012f7fedeb juce::Thread::wait(int) const + 13
    5   com.eastwest.Play        
    0x000000012f7096fa juce::InternalTimerThread::run() + 230
    6   com.eastwest.Play        
    0x000000012f7ff25b juce::Thread::threadEntryPoint() + 91
    7   com.eastwest.Play        
    0x000000012f7eb1b0 juce::threadEntryProc(void*) + 29
    8   libSystem.B.dylib        
    0x00007fff803fcfd6 _pthread_start + 331
    9   libSystem.B.dylib        
    0x00007fff803fce89 thread_start + 13
    Thread 29:
    0   libSystem.B.dylib        
    0x00007fff803fea6a __semwait_signal + 10
    1   libSystem.B.dylib        
    0x00007fff80402881 _pthread_cond_wait + 1286
    2   com.eastwest.Play        
    0x000000012f7ef86b juce::WaitableEventImpl::wait(int) + 57
    3   com.eastwest.Play        
    0x000000012f7e4ef2 juce::WaitableEvent::wait(int) const + 12
    4   com.eastwest.Play        
    0x000000012f90e365 ousia::PartConvolution::Process::run() + 53
    5   com.eastwest.Play        
    0x000000012f7ff25b juce::Thread::threadEntryPoint() + 91
    6   com.eastwest.Play        
    0x000000012f7eb1b0 juce::threadEntryProc(void*) + 29
    7   libSystem.B.dylib        
    0x00007fff803fcfd6 _pthread_start + 331
    8   libSystem.B.dylib        
    0x00007fff803fce89 thread_start + 13
    Thread 30:
    0   libSystem.B.dylib        
    0x00007fff803fea6a __semwait_signal + 10
    1   libSystem.B.dylib        
    0x00007fff80402881 _pthread_cond_wait + 1286
    2   com.eastwest.Play        
    0x000000012f7ef86b juce::WaitableEventImpl::wait(int) + 57
    3   com.eastwest.Play        
    0x000000012f7e4ef2 juce::WaitableEvent::wait(int) const + 12
    4   com.eastwest.Play        
    0x000000012f90e365 ousia::PartConvolution::Process::run() + 53
    5   com.eastwest.Play        
    0x000000012f7ff25b juce::Thread::threadEntryPoint() + 91
    6   com.eastwest.Play        
    0x000000012f7eb1b0 juce::threadEntryProc(void*) + 29
    7   libSystem.B.dylib        
    0x00007fff803fcfd6 _pthread_start + 331
    8   libSystem.B.dylib        
    0x00007fff803fce89 thread_start + 13
    Thread 31:
    0   libSystem.B.dylib        
    0x00007fff803fea6a __semwait_signal + 10
    1   libSystem.B.dylib        
    0x00007fff80402881 _pthread_cond_wait + 1286
    2   com.eastwest.Play        
    0x000000012f7ef86b juce::WaitableEventImpl::wait(int) + 57
    3   com.eastwest.Play        
    0x000000012f7e4ef2 juce::WaitableEvent::wait(int) const + 12
    4   com.eastwest.Play        
    0x000000012f90e365 ousia::PartConvolution::Process::run() + 53
    5   com.eastwest.Play        
    0x000000012f7ff25b juce::Thread::threadEntryPoint() + 91
    6   com.eastwest.Play        
    0x000000012f7eb1b0 juce::threadEntryProc(void*) + 29
    7   libSystem.B.dylib        
    0x00007fff803fcfd6 _pthread_start + 331
    8   libSystem.B.dylib        
    0x00007fff803fce89 thread_start + 13
    Thread 32:
    0   libSystem.B.dylib        
    0x00007fff803fea6a __semwait_signal + 10
    1   libSystem.B.dylib        
    0x00007fff80402881 _pthread_cond_wait + 1286
    2   com.eastwest.Play        
    0x000000012f7ef86b juce::WaitableEventImpl::wait(int) + 57
    3   com.eastwest.Play        
    0x000000012f7e4ef2 juce::WaitableEvent::wait(int) const + 12
    4   com.eastwest.Play        
    0x000000012f90e365 ousia::PartConvolution::Process::run() + 53
    5   com.eastwest.Play        
    0x000000012f7ff25b juce::Thread::threadEntryPoint() + 91
    6   com.eastwest.Play        
    0x000000012f7eb1b0 juce::threadEntryProc(void*) + 29
    7   libSystem.B.dylib        
    0x00007fff803fcfd6 _pthread_start + 331
    8   libSystem.B.dylib        
    0x00007fff803fce89 thread_start + 13
    Thread 33:
    0   libSystem.B.dylib        
    0x00007fff803fea6a __semwait_signal + 10
    1   libSystem.B.dylib        
    0x00007fff80402881 _pthread_cond_wait + 1286
    2   com.eastwest.Play        
    0x000000012f7ef86b juce::WaitableEventImpl::wait(int) + 57
    3   com.eastwest.Play        
    0x000000012f7e4ef2 juce::WaitableEvent::wait(int) const + 12
    4   com.eastwest.Play        
    0x000000012f90e365 ousia::PartConvolution::Process::run() + 53
    5   com.eastwest.Play        
    0x000000012f7ff25b juce::Thread::threadEntryPoint() + 91
    6   com.eastwest.Play        
    0x000000012f7eb1b0 juce::threadEntryProc(void*) + 29
    7   libSystem.B.dylib        
    0x00007fff803fcfd6 _pthread_start + 331
    8   libSystem.B.dylib        
    0x00007fff803fce89 thread_start + 13
    Thread 34:
    0   libSystem.B.dylib        
    0x00007fff803fea6a __semwait_signal + 10
    1   libSystem.B.dylib        
    0x00007fff803fe8f9 nanosleep + 148
    2   libSystem.B.dylib        
    0x00007fff803fe863 usleep + 57
    3   ...nth 5.MusicDevice.component
    0x000000013c9ae295 NI::SND::PresetManagerDB::scanForBackground(CppSQLite3DB&) + 485
    4   ...nth 5.MusicDevice.component
    0x000000013c9af20b NI::SND::PresetManagerDB::run() + 283
    5   ...nth 5.MusicDevice.component
    0x000000013c57e949 NI::GP::Thread::execute(void*) + 73
    6   libSystem.B.dylib        
    0x00007fff803fcfd6 _pthread_start + 331
    7   libSystem.B.dylib        
    0x00007fff803fce89 thread_start + 13
    Thread 35:
    0   libSystem.B.dylib        
    0x00007fff803dda2a __workq_kernreturn + 10
    1   libSystem.B.dylib        
    0x00007fff803dde3c _pthread_wqthread + 917
    2   libSystem.B.dylib        
    0x00007fff803ddaa5 start_wqthread + 13
    Thread 16 crashed with X86 Thread State (64-bit):
      rax: 0x000000000000003c  rbx: 0x000000012cb0a240  rcx: 0x000000012cb0a1f8  rdx: 0x0000000000000001
      rdi: 0x0000000000000c03  rsi: 0x0000000000000000  rbp: 0x000000012cb0a230  rsp: 0x000000012cb0a1f8
       r8: 0x0000000000000000   r9: 0x0000000000989680  r10: 0x0000000000000001  r11: 0xffffff80002e4730
      r12: 0x0000000000000000  r13: 0x000000014550e922  r14: 0x0000000145483000  r15: 0x0000000000000000
      rip: 0x00007fff804369ce  rfl: 0x0000000000000247  cr2: 0x0000000104063000
    Binary Images:
    0x100000000 -   
    0x100c18fef  com.apple.logic.pro 9.1.8 (1700.67) <5CBBDF7C-6505-0A14-61F1-483839F57524> /Applications/Logic Pro.app/Contents/MacOS/Logic Pro
    0x101086000 -   
    0x1010a4fef  com.apple.XSKey 1.0.0 (52) <800DD908-E341-2BCD-11D9-DEAC7E8197E9> /Library/Frameworks/XSKey.framework/Versions/A/XSKey
    0x1010b6000 -   
    0x1010f0ff7  com.apple.music.apps.MAAudioUnitSupport 9.1.8 (233.53) <B5939861-E5F9-3218-0989-4ED074B1323D> /Applications/Logic Pro.app/Contents/Frameworks/MAAudioUnitSupport.framework/Versions/A/MAAudioUnit Support
    0x101113000 -   
    0x101141ff7  com.apple.musicaudiodataservices 1.1 (251.4) <93B2F8C3-E091-C1CA-8932-91840CC968BC> /Applications/Logic Pro.app/Contents/Frameworks/MAAssetSharing.framework/Versions/A/MAAssetSharing
    0x101153000 -   
    0x1011b6ff7  com.apple.music.apps.MALoopManagement 9.1.8 (219.66) <FE447B07-89A4-E025-DFB8-4C71A0EFEBF0> /Applications/Logic Pro.app/Contents/Frameworks/MALoopManagement.framework/Versions/A/MALoopManagem ent
    0x1011ed000 -   
    0x10147bff7  com.apple.prokit 7.0.1 (1331.1) <0C6C56BB-83E2-7090-90D0-C9005C955F8A> /System/Library/PrivateFrameworks/ProKit.framework/Versions/A/ProKit
    0x1015fd000 -   
    0x101693fe7  com.apple.music.apps.MACore 9.1.8 (477.58) <3E8020EA-9B42-63A5-613D-FD2D7675546F> /Applications/Logic Pro.app/Contents/Frameworks/MACore.framework/Versions/A/MACore
    0x1016dd000 -   
    0x10172dff7  com.apple.audio.midi.CoreMIDI 1.7.1 (42) <872D18F1-18CB-DDC1-FBC8-B144604A39B1> /System/Library/Frameworks/CoreMIDI.framework/Versions/A/CoreMIDI
    0x101755000 -   
    0x1017b3fef  com.apple.music.apps.MAHarmony 9.1.8 (199.72) <EE991E63-1236-765D-3C95-4AE3494B295C> /Applications/Logic Pro.app/Contents/Frameworks/MAHarmony.framework/Versions/A/MAHarmony
    0x1017db000 -   
    0x101c1cfff  com.apple.music.apps.MAPlugInGUI 9.1.8 (424.79) <6FEA2031-69A3-9209-54EF-36BA3DAD1883> /Applications/Logic Pro.app/Contents/Frameworks/MAPlugInGUI.framework/Versions/A/MAPlugInGUI
    0x101ee0000 -   
    0x101fbcfff  com.apple.music.apps.OMF 9.1.8 (109.7) <F72235D0-517D-CCCB-3B91-78396786EB34> /Applications/Logic Pro.app/Contents/Frameworks/OMF.framework/Versions/A/OMF
    0x101fdb000 -   
    0x10260bfef  com.apple.music.apps.MADSP 9.1.8 (588.98) <D794D156-112C-29E3-EB9D-62604A9807DE> /Applications/Logic Pro.app/Contents/Frameworks/MADSP.framework/Versions/A/MADSP
    0x102e69000 -   
    0x102e8eff7  com.apple.music.apps.LogicFileBrowser 9.1.8 (1700.67) <8E130979-83FB-56BD-DE18-A723A94B7530> /Applications/Logic Pro.app/Contents/Frameworks/LogicFileBrowser.framework/Versions/A/LogicFileBrow ser
    0x102ea1000 -   
    0x102f1ffff  com.apple.music.apps.LogicLoopBrowser 9.1.8 (1700.67) <47AF47CE-F6A1-E025-96FA-5C30EAFA13BC> /Applications/Logic Pro.app/Contents/Frameworks/LogicLoopBrowser.framework/Versions/A/LogicLoopBrow ser
    0x102f4e000 -   
    0x102f72ff7  com.apple.music.apps.MAApogeeSupport 9.1.8 (313.26) <6384895C-60D4-CE0B-0E86-673A20A34D36> /Applications/Logic Pro.app/Contents/Frameworks/MAApogeeSupport.framework/Versions/A/MAApogeeSuppor t
    0x102f80000 -   
    0x102f85fff  com.apple.music.apps.MAResources 9.1.8 (212.66) <0E66AB42-6F37-9AE7-8766-264DAE455688> /Applications/Logic Pro.app/Contents/Frameworks/MAResources.framework/Versions/A/MAResources
    0x102f88000 -   
    0x102fb4fff  com.apple.audio.CoreAudioKit 1.6.1 (1.6.1) <45C04031-42F8-D096-1CC3-0CA266FDAC61> /System/Library/Frameworks/CoreAudioKit.framework/Versions/A/CoreAudioKit
    0x102fcd000 -   
    0x102fe0ff7  com.apple.AERegistration 1.2 (401) <A424BA9F-0DD7-BE25-2738-4BCD22F0BB2A> /Applications/Logic Pro.app/Contents/Frameworks/AERegistration.framework/Versions/A/AERegistration
    0x102ff9000 -   
    0x103006fff  com.apple.music.apps.MAUnitTest 9.1.8 (97.27) <8AF973F8-CBB2-931B-6BFC-D4BCB8A434F6> /Applications/Logic Pro.app/Contents/Frameworks/MAUnitTest.framework/Versions/A/MAUnitTest
    0x10300f000 -   
    0x1030cafe7  com.apple.music.apps.MAFiles 9.1.8 (144.87) <F9F3C7E2-46F5-0EC3-7297-096AEB83BFD6> /Applications/Logic Pro.app/Contents/Frameworks/MAFiles.framework/Versions/A/MAFiles
    0x103103000 -   
    0x10317ffe7  com.apple.music.apps.MAAudioEngine 9.1.8 (158.42) <6944C1FC-7ACD-53A2-5095-E017C39D8CBA> /Applications/Logic Pro.app/Contents/Frameworks/MAAudioEngine.framework/Versions/A/MAAudioEngine
    0x1031f3000 -   
    0x1031fefff  com.apple.music.apps.MAToolKit 9.1.8 (359.28) <B9729EDA-E5DB-C831-E473-EED9C906AAA0> /Applications/Logic Pro.app/Contents/Frameworks/MAToolKit.framework/Versions/A/MAToolKit
    0x103205000 -   
    0x103213ff7  com.apple.music.apps.MAVideo 9.1.8 (12.70) <19D30553-8BFE-4F8C-D13E-0D3139AAC22B> /Applications/Logic Pro.app/Contents/Frameworks/MAVideo.framework/Versions/A/MAVideo
    0x10321b000 -   
    0x103301fe7  libcrypto.0.9.7.dylib 0.9.7 (compatibility 0.9.7) <64B3566E-5F3A-A466-ED3F-B91F4B3E5F56> /usr/lib/libcrypto.0.9.7.dylib
    0x103359000 -   
    0x103407fec  com.apple.MobileMe 9 (1.01) <F322542E-D3BB-7861-602A-3F405F2BD61B> /Applications/Logic Pro.app/Contents/Frameworks/MobileMe.framework/Versions/A/MobileMe
    0x104700000 -   
    0x10473dff7  com.apple.prokit.SnowLeopardPanels 7.0.1 (1331.1) <3585FB91-33B6-1BF3-A716-85D069944820> /System/Library/PrivateFrameworks/ProKit.framework/Versions/A/Resources/SnowLeo pardPanels.bundle/Contents/MacOS/SnowLeopardPanels
    0x11a7a1000 -   
    0x11a7affff  com.apple.iokit.IOHIDLib 1.6.6 (1.6.6) <E92BCF13-7E55-68CD-22BD-EF427D6EC310> /System/Library/Extensions/IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin/Co ntents/MacOS/IOHIDLib
    0x11a7d4000 -   
    0x11a7d8fff  com.apple.audio.AudioIPCPlugIn 1.1.6 (1.1.6) <917E3DC8-E34D-B130-F61F-50808466E674> /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugI n.bundle/Contents/MacOS/AudioIPCPlugIn
    0x11a7dd000 -   
    0x11a7e3ff7  com.apple.audio.AppleHDAHALPlugIn 2.0.8 (2.0.8f3) <2BC73C66-767B-CA96-B313-B95EC153547B> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
    0x11af00000 -   
    0x11af24ff7 +com.akai.mpc.hal ??? (2.1.18) <7CD275B5-FE33-A573-2AFB-C2B3F1C701A4> /Library/Audio/Plug-Ins/HAL/AKAI_MPC.plugin/Contents/MacOS/AKAI_MPC
    0x11af47000 -   
    0x11af49ff7  com.apple.music.apps.anvil.resources 9.1.8 (280.4) <F74756AB-FAB6-3914-5F1C-04FCB54C350A> /Applications/Logic Pro.app/Contents/PlugIns/anvil.res/Contents/MacOS/anvil
    0x11af4e000 -   
    0x11af50ff7  com.apple.music.apps.common.resources 9.1.8 (280.4) <9FC76C8D-3763-4E4A-DB35-391B07A6FFA8> /Applications/Logic Pro.app/Contents/PlugIns/common.res/Contents/MacOS/common
    0x11af55000 -   
    0x11af57ff7  com.apple.music.apps.ebp.resources 9.1.8 (280.4) <2DEA037D-ABCE-771A-618B-091741F6CA7B> /Applications/Logic Pro.app/Contents/PlugIns/ebp.res/Contents/MacOS/ebp
    0x11af5c000 -   
    0x11af5eff7  com.apple.music.apps.efx.resources 9.1.8 (280.4) <EB5DB45A-C432-2C90-C708-27D5F5EC236A> /Applications/Logic Pro.app/Contents/PlugIns/efx.res/Contents/MacOS/efx
    0x11af63000 -   
    0x11af65ff7  com.apple.music.apps.egt.resources 9.1.8 (280.4) <FAB354A9-88A1-619A-1ECA-A351EADB5A2E> /Applications/Logic Pro.app/Contents/PlugIns/egt.res/Contents/MacOS/egt
    0x11af6a000 -   
    0x11af6cff7  com.apple.music.apps.emx.resources 9.1.8 (280.4) <19FD59CE-314B-6B4B-CEE8-C7BF9DF7F4EB> /Applications/Logic Pro.app/Contents/PlugIns/emx.res/Contents/MacOS/emx
    0x11af71000 -   
    0x11af73ff7  com.apple.music.apps.es1.resources 9.1.8 (280.4) <4BD052E1-1BD4-3C73-93D6-D63493167CB6> /Applications/Logic Pro.app/Contents/PlugIns/es1.res/Contents/MacOS/es1
    0x11af78000 -   
    0x11af7aff7  com.apple.music.apps.es2.resources 9.1.8 (280.4) <31CBF3C9-AD64-1A86-1F99-D362B594F840> /Applications/Logic Pro.app/Contents/PlugIns/es2.res/Contents/MacOS/es2
    0x11af7f000 -   
    0x11af81ff7  com.apple.music.apps.esp.resources 9.1.8 (280.4) <0EA44B59-2772-F013-CF49-B66EE4C77EEB> /Applications/Logic Pro.app/Contents/PlugIns/esp.res/Contents/MacOS/esp
    0x11af86000 -   
    0x11af88ff7  com.apple.music.apps.evb3.resources 9.1.8 (280.4) <F0F73B5A-E44A-FF5C-4C54-0F5B677BFB18> /Applications/Logic Pro.app/Contents/PlugIns/evb3.res/Contents/MacOS/evb3
    0x11af8d000 -   
    0x11af8fff7  com.apple.music.apps.evd6.resources 9.1.8 (280.4) <45B1F3EB-45CB-418F-A408-C42F7F93802A> /Applications/Logic Pro.app/Contents/PlugIns/evd6.res/Contents/MacOS/evd6
    0x11af94000 -   
    0x11af96ff7  com.apple.music.apps.evoc.resources 9.1.8 (280.4) <91478393-E7C9-5292-FCA9-83559B588E6E> /Applications/Logic Pro.app/Contents/PlugIns/evoc.res/Contents/MacOS/evoc
    0x11af9b000 -   
    0x11af9dff7  com.apple.music.apps.evp88.resources 9.1.8 (280.4) <9FAC293E-E8B9-C2D9-F102-D5BFC0AA1DC5> /Applications/Logic Pro.app/Contents/PlugIns/evp88.res/Contents/MacOS/evp88
    0x11afa2000 -   
    0x11afa4ff7  com.apple.music.apps.exs24.resources 9.1.8 (280.4) <E79F0236-D02B-D3E7-B929-701CEDE000F6> /Applications/Logic Pro.app/Contents/PlugIns/exs24.res/Contents/MacOS/exs24
    0x11afa9000 -   
    0x11afabff7  com.apple.music.apps.guitaramp.resources 9.1.8 (280.4) <73AC87D5-215E-2FAC-05A2-28A7E9574F5C> /Applications/Logic Pro.app/Contents/PlugIns/guitaramp.res/Contents/MacOS/guitaramp
    0x11afb5000 -   
    0x11afbdff7  com.apple.proapps.mrcheckpro 1.4 (397) <9B320059-8D28-D7DA-8CD4-B42796969065> /Applications/Logic Pro.app/Contents/Resources/MRCheckPro.bundle/Contents/MacOS/MRCheckPro
    0x11afe9000 -   
    0x11afebff7  com.apple.music.apps.guitarcontrols.resources 9.1.8 (280.4) <B005E199-DCEE-5935-8E34-48FA59352663> /Applications/Logic Pro.app/Contents/PlugIns/guitarcontrols.res/Contents/MacOS/guitarcontrols
    0x11aff0000 -   
    0x11aff2ff7  com.apple.music.apps.mutapdel.resources 9.1.8 (280.4) <392017D1-219B-4AA4-71CF-BAAC4D574FE1> /Applications/Logic Pro.app/Contents/PlugIns/mutapdel.res/Contents/MacOS/mutapdel
    0x11aff7000 -   
    0x11aff9ff7  com.apple.music.apps.pedalboard.resources 9.1.8 (280.4) <F95D6A0D-0179-F17B-59A5-B3B0007E426D> /Applications/Logic Pro.app/Contents/PlugIns/pedalboard.res/Contents/MacOS/pedalboard
    0x11ca02000 -   
    0x11ca28fff  GLRendererFloat ??? (???) <38621D22-8F49-F937-851B-E21BD49A8A88> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GL RendererFloat
    0x11caa6000 -   
    0x11caa8fef  com.apple.textencoding.unicode 2.3 (2.3) <D95D796E-4D14-665C-F439-4652C0CD453F> /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
    0x11cab3000 -   
    0x11cab5fe7  com.apple.music.apps.midi.device.plugin.CS-32 9.1.8 (198.73) <4427150E-7710-4983-8CD5-CE6C4F2AE97C> /Applications/Logic Pro.app/Contents/MIDI Device Plug-ins/CS-32.bundle/Contents/MacOS/CS-32
    0x11cabd000 -   
    0x11cac0ff7  com.apple.music.apps.midi.device.plugin.FW-1884 9.1.8 (198.73) <89696612-EE45-1A1D-CB75-3FEBEE46EF1A> /Applications/Logic Pro.app/Contents/MIDI Device Plug-ins/FW-1884.bundle/Contents/MacOS/FW-1884
    0x11cacc000 -   
    0x11caceff7  com.apple.music.apps.revolver.resources 9.1.8 (280.4) <77102719-1007-5153-B8B3-9EC9FAC4C0BD> /Applications/Logic Pro.app/Contents/PlugIns/revolver.res/Contents/MacOS/revolver
    0x11cad3000 -   
    0x11cad5ff7  com.apple.music.apps.sphere.resources 9.1.8 (280.4) <3579177A-

    here's another one if that helps:
    Process:    
    Logic Pro [914]
    Path:       
    /Applications/Logic Pro.app/Contents/MacOS/Logic Pro
    Identifier: 
    com.apple.logic.pro
    Version:    
    9.1.8 (1700.67)
    Build Info: 
    Logic-17006700~1
    Code Type:  
    X86-64 (Native)
    Parent Process:  launchd [107]
    Date/Time:  
    2014-05-25 15:23:56.045 +0100
    OS Version: 
    Mac OS X 10.6.8 (10K549)
    Report Version:  6
    Interval Since Last Report:     
    207288 sec
    Crashes Since Last Report:      
    19
    Per-App Interval Since Last Report:  95652 sec
    Per-App Crashes Since Last Report:   18
    Anonymous UUID:                 
    7A6C67A1-B014-4C31-988F-AFA17F3616E5
    Exception Type:  EXC_CRASH (SIGABRT)
    Exception Codes: 0x0000000000000000, 0x0000000000000000
    Crashed Thread:  16
    Application Specific Information:
    abort() called
    Thread 0:  Dispatch queue: com.apple.main-thread
    0   libSystem.B.dylib        
    0x00007fff803c3d7a mach_msg_trap + 10
    1   libSystem.B.dylib        
    0x00007fff803c43ed mach_msg + 59
    2   com.apple.CoreGraphics   
    0x00007fff89d17230 _CGSSynchronizeWindowBackingStore + 97
    3   com.apple.CoreGraphics   
    0x00007fff89cfcda9 _CGSLockWindow + 4515
    4   com.apple.CoreGraphics   
    0x00007fff89d0393f CGSDeviceLock + 535
    5   libRIP.A.dylib           
    0x00007fff81362e7b ripd_Lock + 46
    6   libRIP.A.dylib           
    0x00007fff813691f9 ripl_BltImage + 294
    7   libRIP.A.dylib           
    0x00007fff81368e61 ripc_RenderImage + 323
    8   libRIP.A.dylib           
    0x00007fff81366f96 ripc_DrawImage + 2411
    9   com.apple.CoreGraphics   
    0x00007fff89d39c0a CGContextDrawImage + 446
    10  com.apple.logic.pro      
    0x00000001006fe71f CSeqEvHdr_Templ<CEvMarker, (TSeqEvHdrType)3, CEv, CEv, std::allocator<CEvMarker> >::EvValidAt(TSignedPureClock) + 38191
    11  com.apple.logic.pro      
    0x000000010051431d std::vector<unsigned int, std::allocator<unsigned int> >::reserve(unsigned long) + 193149
    12  com.apple.logic.pro      
    0x0000000100516632 std::vector<unsigned int, std::allocator<unsigned int> >::reserve(unsigned long) + 202130
    13  com.apple.logic.pro      
    0x000000010039ad89 std::vector<POINT, std::allocator<POINT> >::erase(__gnu_cxx::__normal_iterator<POINT*, std::vector<POINT, std::allocator<POINT> > >, __gnu_cxx::__normal_iterator<POINT*, std::vector<POINT, std::allocator<POINT> > >) + 19433
    14  com.apple.logic.pro      
    0x000000010050e691 std::vector<unsigned int, std::allocator<unsigned int> >::reserve(unsigned long) + 169457
    15  com.apple.logic.pro      
    0x000000010050ea5f std::vector<unsigned int, std::allocator<unsigned int> >::reserve(unsigned long) + 170431
    16  com.apple.logic.pro      
    0x00000001005238ee std::vector<unsigned int, std::allocator<unsigned int> >::reserve(unsigned long) + 256078
    17  com.apple.logic.pro      
    0x00000001001aebf8 std::vector<TTempoWarpMerge, std::allocator<TTempoWarpMerge> >::reserve(unsigned long) + 162440
    18  com.apple.logic.pro      
    0x00000001005de46f std::_Rb_tree<std::string, std::pair<std::string const, TOSCMessageData>, std::_Select1st<std::pair<std::string const, TOSCMessageData> >, std::less<std::string>, std::allocator<std::pair<std::string const, TOSCMessageData> > >::insert_unique(std::_Rb_tree_iterator<std::pair<std::string const, TOSCMessageData> >, std::pair<std::string const, TOSCMessageData> const&) + 418447
    19  com.apple.logic.pro      
    0x00000001005d0a4a std::_Rb_tree<std::string, std::pair<std::string const, TOSCMessageData>, std::_Select1st<std::pair<std::string const, TOSCMessageData> >, std::less<std::string>, std::allocator<std::pair<std::string const, TOSCMessageData> > >::insert_unique(std::_Rb_tree_iterator<std::pair<std::string const, TOSCMessageData> >, std::pair<std::string const, TOSCMessageData> const&) + 362602
    20  com.apple.logic.pro      
    0x00000001006ca645 std::_Rb_tree<TPureClock, std::pair<TPureClock const, EuControlSwitch*>, std::_Select1st<std::pair<TPureClock const, EuControlSwitch*> >, std::less<TPureClock>, std::allocator<std::pair<TPureClock const, EuControlSwitch*> > >::insert_unique(std::pair<TPureClock const, EuControlSwitch*> const&) + 269701
    21  com.apple.AppKit         
    0x00007fff81cbcd75 -[NSView _drawRect:clip:] + 3566
    22  com.apple.AppKit         
    0x00007fff81cba54b -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 2112
    23  com.apple.AppKit         
    0x00007fff81cbaed6 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 4555
    24  com.apple.AppKit         
    0x00007fff81cbaed6 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 4555
    25  com.apple.AppKit         
    0x00007fff81cbaed6 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 4555
    26  com.apple.AppKit         
    0x00007fff81cbaed6 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 4555
    27  com.apple.AppKit         
    0x00007fff81cb9b2c -[NSThemeFrame _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 254
    28  com.apple.prokit         
    0x000000010123662d -[NSProWindowFrame _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 85
    29  com.apple.AppKit         
    0x00007fff81cb63de -[NSView _displayRectIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:] + 2683
    30  com.apple.AppKit         
    0x00007fff81c2fc0e -[NSView displayIfNeeded] + 969
    31  com.apple.AppKit         
    0x00007fff81c2aaba _handleWindowNeedsDisplay + 678
    32  com.apple.CoreFoundation 
    0x00007fff83a27b07 __CFRunLoopDoObservers + 519
    33  com.apple.CoreFoundation 
    0x00007fff83a03434 __CFRunLoopRun + 468
    34  com.apple.CoreFoundation 
    0x00007fff83a02d8f CFRunLoopRunSpecific + 575
    35  com.apple.HIToolbox      
    0x00007fff8849d74e RunCurrentEventLoopInMode + 333
    36  com.apple.HIToolbox      
    0x00007fff8849d553 ReceiveNextEventCommon + 310
    37  com.apple.HIToolbox      
    0x00007fff8849d40c BlockUntilNextEventMatchingListInMode + 59
    38  com.apple.AppKit         
    0x00007fff81bffeb2 _DPSNextEvent + 708
    39  com.apple.AppKit         
    0x00007fff81bff801 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 155
    40  com.apple.AppKit         
    0x00007fff81bc568f -[NSApplication run] + 395
    41  com.apple.prokit         
    0x000000010120d04b NSProApplicationMain + 267
    42  com.apple.logic.pro      
    0x000000010002aa58 DummyConnection::DummyConnection() + 86
    Thread 1:  Dispatch queue: com.apple.libdispatch-manager
    0   libSystem.B.dylib        
    0x00007fff803dcc0a kevent + 10
    1   libSystem.B.dylib        
    0x00007fff803deadd _dispatch_mgr_invoke + 154
    2   libSystem.B.dylib        
    0x00007fff803de7b4 _dispatch_queue_invoke + 185
    3   libSystem.B.dylib        
    0x00007fff803de2de _dispatch_worker_thread2 + 252
    4   libSystem.B.dylib        
    0x00007fff803ddc08 _pthread_wqthread + 353
    5   libSystem.B.dylib        
    0x00007fff803ddaa5 start_wqthread + 13
    Thread 2:
    0   libSystem.B.dylib        
    0x00007fff803c3d7a mach_msg_trap + 10
    1   libSystem.B.dylib        
    0x00007fff803c43ed mach_msg + 59
    2   com.apple.CoreFoundation 
    0x00007fff83a03902 __CFRunLoopRun + 1698
    3   com.apple.CoreFoundation 
    0x00007fff83a02d8f CFRunLoopRunSpecific + 575
    4   com.apple.Foundation     
    0x00007fff806fb14f +[NSURLConnection(NSURLConnectionReallyInternal) _resourceLoadLoop:] + 297
    5   com.apple.Foundation     
    0x00007fff8067c114 __NSThread__main__ + 1429
    6   libSystem.B.dylib        
    0x00007fff803fcfd6 _pthread_start + 331
    7   libSystem.B.dylib        
    0x00007fff803fce89 thread_start + 13
    Thread 3:  com.apple.CFSocket.private
    0   libSystem.B.dylib        
    0x00007fff80407932 select$DARWIN_EXTSN + 10
    1   com.apple.CoreFoundation 
    0x00007fff83a25468 __CFSocketManager + 824
    2   libSystem.B.dylib        
    0x00007fff803fcfd6 _pthread_start + 331
    3   libSystem.B.dylib        
    0x00007fff803fce89 thread_start + 13
    Thread 4:
    0   libSystem.B.dylib        
    0x00007fff803fea6a __semwait_signal + 10
    1   libSystem.B.dylib        
    0x00007fff80402881 _pthread_cond_wait + 1286
    2   com.apple.music.apps.MAFiles 
    0x00000001030384d4 ExtendedAudioFileScheduler::WorkerThreadProc() + 100
    3   com.apple.music.apps.MAFiles 
    0x0000000103038589 ExtendedAudioFileScheduler::WorkerThreadProc(void*) + 9
    4   libSystem.B.dylib        
    0x00007fff803fcfd6 _pthread_start + 331
    5   libSystem.B.dylib        
    0x00007fff803fce89 thread_start + 13
    Thread 5:
    0   libSystem.B.dylib        
    0x00007fff803fea6a __semwait_signal + 10
    1   libSystem.B.dylib        
    0x00007fff80402881 _pthread_cond_wait + 1286
    2   com.apple.music.apps.MAFiles 
    0x00000001030384d4 ExtendedAudioFileScheduler::WorkerThreadProc() + 100
    3   com.apple.music.apps.MAFiles 
    0x0000000103038589 ExtendedAudioFileScheduler::WorkerThreadProc(void*) + 9
    4   libSystem.B.dylib        
    0x00007fff803fcfd6 _pthread_start + 331
    5   libSystem.B.dylib        
    0x00007fff803fce89 thread_start + 13
    Thread 6:
    0   libSystem.B.dylib        
    0x00007fff803c3dda semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib        
    0x00007fff80402772 _pthread_cond_wait + 1015
    2   com.apple.audio.CoreAudio
    0x00007fff83b6768c CAGuard::WaitFor(unsigned long long) + 168
    3   com.apple.audio.CoreAudio
    0x00007fff83b69c1b CAGuard::WaitUntil(unsigned long long) + 185
    4   com.apple.audio.CoreAudio
    0x00007fff83b67d85 HP_IOThread::WorkLoop() + 1369
    5   com.apple.audio.CoreAudio
    0x00007fff83b67827 HP_IOThread::ThreadEntry(HP_IOThread*) + 9
    6   com.apple.audio.CoreAudio
    0x00007fff83b67755 CAPThread::Entry(CAPThread*) + 125
    7   libSystem.B.dylib        
    0x00007fff803fcfd6 _pthread_start + 331
    8   libSystem.B.dylib        
    0x00007fff803fce89 thread_start + 13
    Thread 7:
    0   libSystem.B.dylib        
    0x00007fff803c3e82 mach_wait_until + 10
    1   ...ple.CoreServices.CarbonCore
    0x00007fff826b4df5 MPDelayUntil + 28
    2   ...ple.CoreServices.CarbonCore
    0x00007fff826c3361 Delay + 93
    3   ...opellerheads.rewire.library
    0x000000012645a27b RWIsReWireMixerAppRunningImp + 31035
    4   ...opellerheads.rewire.library
    0x0000000126467c59 RWIsReWireMixerAppRunningImp + 86809
    5   libSystem.B.dylib        
    0x00007fff803fcfd6 _pthread_start + 331
    6   libSystem.B.dylib        
    0x00007fff803fce89 thread_start + 13
    Thread 8:
    0   libSystem.B.dylib        
    0x00007fff803c3d7a mach_msg_trap + 10
    1   libSystem.B.dylib        
    0x00007fff803c43ed mach_msg + 59
    2   ...ropellerheads.reason.engine
    0x00000001274ff408 RWDEFLaunchPanelApp + 3224984
    3   libSystem.B.dylib        
    0x00007fff803fcfd6 _pthread_start + 331
    4   libSystem.B.dylib        
    0x00007fff803fce89 thread_start + 13
    Thread 9:
    0   libSystem.B.dylib        
    0x00007fff803fea6a __semwait_signal + 10
    1   libSystem.B.dylib        
    0x00007fff80402881 _pthread_cond_wait + 1286
    2   ...le.music.apps.MAAudioEngine
    0x0000000103117f2b MD::CallProcessThread1(void*) + 299
    3   libSystem.B.dylib        
    0x00007fff803fcfd6 _pthread_start + 331
    4   libSystem.B.dylib        
    0x00007fff803fce89 thread_start + 13
    Thread 10:
    0   libSystem.B.dylib        
    0x00007fff803fea6a __semwait_signal + 10
    1   libSystem.B.dylib        
    0x00007fff80402881 _pthread_cond_wait + 1286
    2   ...le.music.apps.MAAudioEngine
    0x0000000103117d0e MD::CallProcessThread2(void*) + 302
    3   libSystem.B.dylib        
    0x00007fff803fcfd6 _pthread_start + 331
    4   libSystem.B.dylib        
    0x00007fff803fce89 thread_start + 13
    Thread 11:
    0   libSystem.B.dylib        
    0x00007fff803fea6a __semwait_signal + 10
    1   libSystem.B.dylib        
    0x00007fff80402881 _pthread_cond_wait + 1286
    2   ...le.music.apps.MAAudioEngine
    0x0000000103117a35 MD::CallProcessThread3(void*) + 85
    3   libSystem.B.dylib        
    0x00007fff803fcfd6 _pthread_start + 331
    4   libSystem.B.dylib        
    0x00007fff803fce89 thread_start + 13
    Thread 12:
    0   libSystem.B.dylib        
    0x00007fff803fea6a __semwait_signal + 10
    1   libSystem.B.dylib        
    0x00007fff80402881 _pthread_cond_wait + 1286
    2   ...le.music.apps.MAAudioEngine
    0x00000001031161ee MD::CallProcessThread15(void*) + 302
    3   libSystem.B.dylib        
    0x00007fff803fcfd6 _pthread_start + 331
    4   libSystem.B.dylib        
    0x00007fff803fce89 thread_start + 13
    Thread 13:
    0   libSystem.B.dylib        
    0x00007fff803fea6a __semwait_signal + 10
    1   libSystem.B.dylib        
    0x00007fff803fe8f9 nanosleep + 148
    2   libSystem.B.dylib        
    0x00007fff8044b9ac sleep + 61
    3   ...sic.apps.MAAudioUnitSupport
    0x00000001010ce98a CAudioUnitClient::WatchDog(void*) + 26
    4   libSystem.B.dylib        
    0x00007fff803fcfd6 _pthread_start + 331
    5   libSystem.B.dylib        
    0x00007fff803fce89 thread_start + 13
    Thread 14:
    0   libSystem.B.dylib        
    0x00007fff803fea6a __semwait_signal + 10
    1   libSystem.B.dylib        
    0x00007fff80402881 _pthread_cond_wait + 1286
    2   ...le.music.apps.MAAudioEngine
    0x0000000103132cd0 CAudioFileBlockManager::GetBlock(MDFile const*, long, int) + 2064
    3   libSystem.B.dylib        
    0x00007fff803fcfd6 _pthread_start + 331
    4   libSystem.B.dylib        
    0x00007fff803fce89 thread_start + 13
    Thread 15:
    0   libSystem.B.dylib        
    0x00007fff803c3d7a mach_msg_trap + 10
    1   libSystem.B.dylib        
    0x00007fff803c43ed mach_msg + 59
    2   com.apple.audio.midi.CoreMIDI
    0x00000001016eb9c1 XServerMachPort::ReceiveMessage(int&, void*, int&) + 155
    3   com.apple.audio.midi.CoreMIDI
    0x000000010170873d MIDIProcess::RunMIDIInThread() + 147
    4   com.apple.audio.midi.CoreMIDI
    0x00000001016ecace XThread::RunHelper(void*) + 10
    5   com.apple.audio.midi.CoreMIDI
    0x00000001016ec509 CAPThread::Entry(CAPThread*) + 67
    6   libSystem.B.dylib        
    0x00007fff803fcfd6 _pthread_start + 331
    7   libSystem.B.dylib        
    0x00007fff803fce89 thread_start + 13
    Thread 16 Crashed:
    0   libSystem.B.dylib        
    0x00007fff804369ce __semwait_signal_nocancel + 10
    1   libSystem.B.dylib        
    0x00007fff804368d0 nanosleep$NOCANCEL + 129
    2   libSystem.B.dylib        
    0x00007fff804933ce usleep$NOCANCEL + 57
    3   libSystem.B.dylib        
    0x00007fff804b29a1 __abort + 113
    4   libSystem.B.dylib        
    0x00007fff804b2a05 abort_report_np + 0
    5   com.apple.logic.pro      
    0x00000001003b3226 std::_Rb_tree<short, std::pair<short const, CGRect>, std::_Select1st<std::pair<short const, CGRect> >, std::less<short>, std::allocator<std::pair<short const, CGRect> > >::_M_erase(std::_Rb_tree_node<std::pair<short const, CGRect> >*) + 98486
    6   libSystem.B.dylib        
    0x00007fff804241ba _sigtramp + 26
    7   ???                      
    0x000000012ca1f910 0 + 5043779856
    8   com.apple.logic.pro      
    0x000000010035a146 void std::__introsort_loop<__gnu_cxx::__normal_iterator<TMixerStrip*, std::vector<TMixerStrip, std::allocator<TMixerStrip> > >, long>(__gnu_cxx::__normal_iterator<TMixerStrip*, std::vector<TMixerStrip, std::allocator<TMixerStrip> > >, __gnu_cxx::__normal_iterator<TMixerStrip*, std::vector<TMixerStrip, std::allocator<TMixerStrip> > >, long) + 58566
    9   com.apple.logic.pro      
    0x0000000100353c8f void std::__introsort_loop<__gnu_cxx::__normal_iterator<TMixerStrip*, std::vector<TMixerStrip, std::allocator<TMixerStrip> > >, long>(__gnu_cxx::__normal_iterator<TMixerStrip*, std::vector<TMixerStrip, std::allocator<TMixerStrip> > >, __gnu_cxx::__normal_iterator<TMixerStrip*, std::vector<TMixerStrip, std::allocator<TMixerStrip> > >, long) + 32783
    10  com.apple.logic.pro      
    0x00000001003514a6 void std::__introsort_loop<__gnu_cxx::__normal_iterator<TMixerStrip*, std::vector<TMixerStrip, std::allocator<TMixerStrip> > >, long>(__gnu_cxx::__normal_iterator<TMixerStrip*, std::vector<TMixerStrip, std::allocator<TMixerStrip> > >, __gnu_cxx::__normal_iterator<TMixerStrip*, std::vector<TMixerStrip, std::allocator<TMixerStrip> > >, long) + 22566
    11  com.apple.logic.pro      
    0x0000000100356e02 void std::__introsort_loop<__gnu_cxx::__normal_iterator<TMixerStrip*, std::vector<TMixerStrip, std::allocator<TMixerStrip> > >, long>(__gnu_cxx::__normal_iterator<TMixerStrip*, std::vector<TMixerStrip, std::allocator<TMixerStrip> > >, __gnu_cxx::__normal_iterator<TMixerStrip*, std::vector<TMixerStrip, std::allocator<TMixerStrip> > >, long) + 45442
    12  com.apple.logic.pro      
    0x000000010034f52a void std::__introsort_loop<__gnu_cxx::__normal_iterator<TMixerStrip*, std::vector<TMixerStrip, std::allocator<TMixerStrip> > >, long>(__gnu_cxx::__normal_iterator<TMixerStrip*, std::vector<TMixerStrip, std::allocator<TMixerStrip> > >, __gnu_cxx::__normal_iterator<TMixerStrip*, std::vector<TMixerStrip, std::allocator<TMixerStrip> > >, long) + 14506
    13  ...ple.CoreServices.CarbonCore
    0x00007fff826c369f TimerThread + 294
    14  libSystem.B.dylib        
    0x00007fff803fcfd6 _pthread_start + 331
    15  libSystem.B.dylib        
    0x00007fff803fce89 thread_start + 13
    Thread 17:
    0   libSystem.B.dylib        
    0x00007fff80407932 select$DARWIN_EXTSN + 10
    1   com.apple.logic.pro      
    0x00000001009101f2 std::vector<std::pair<double, AttachedTimerListener>, std::allocator<std::pair<double, AttachedTimerListener> > >::_M_insert_aux(__gnu_cxx::__normal_iterator<std::pair<double, AttachedTimerListener>*, std::vector<std::pair<double, AttachedTimerListener>, std::allocator<std::pair<double, AttachedTimerListener> > > >, std::pair<double, AttachedTimerListener> const&) + 1554
    2   com.apple.logic.pro      
    0x000000010055859d std::vector<TOSCService, std::allocator<TOSCService> >::erase(__gnu_cxx::__normal_iterator<TOSCService*, std::vector<TOSCService, std::allocator<TOSCService> > >, __gnu_cxx::__normal_iterator<TOSCService*, std::vector<TOSCService, std::allocator<TOSCService> > >) + 40333
    3   libSystem.B.dylib        
    0x00007fff803fcfd6 _pthread_start + 331
    4   libSystem.B.dylib        
    0x00007fff803fce89 thread_start + 13
    Thread 18:
    0   libSystem.B.dylib        
    0x00007fff803c3dce semaphore_timedwait_trap + 10
    1   com.eastwest.Play        
    0x000000012f85f73c ousia::Streams::OSXVoiceFeeder::run(int) + 252
    2   libSystem.B.dylib        
    0x00007fff803fcfd6 _pthread_start + 331
    3   libSystem.B.dylib        
    0x00007fff803fce89 thread_start + 13
    Thread 19:
    0   libSystem.B.dylib        
    0x00007fff803c3dce semaphore_timedwait_trap + 10
    1   com.eastwest.Play        
    0x000000012f85f73c ousia::Streams::OSXVoiceFeeder::run(int) + 252
    2   libSystem.B.dylib        
    0x00007fff803fcfd6 _pthread_start + 331
    3   libSystem.B.dylib        
    0x00007fff803fce89 thread_start + 13
    Thread 20:
    0   libSystem.B.dylib        
    0x00007fff803c3dce semaphore_timedwait_trap + 10
    1   com.eastwest.Play        
    0x000000012f85f73c ousia::Streams::OSXVoiceFeeder::run(int) + 252
    2   libSystem.B.dylib        
    0x00007fff803fcfd6 _pthread_start + 331
    3   libSystem.B.dylib        
    0x00007fff803fce89 thread_start + 13
    Thread 21:
    0   libSystem.B.dylib        
    0x00007fff803c3dce semaphore_timedwait_trap + 10
    1   com.eastwest.Play        
    0x000000012f85f73c ousia::Streams::OSXVoiceFeeder::run(int) + 252
    2   libSystem.B.dylib        
    0x00007fff803fcfd6 _pthread_start + 331
    3   libSystem.B.dylib        
    0x00007fff803fce89 thread_start + 13
    Thread 22:
    0   libSystem.B.dylib        
    0x00007fff803fea6a __semwait_signal + 10
    1   libSystem.B.dylib        
    0x00007fff80402881 _pthread_cond_wait + 1286
    2   ...st.midi.wordbuildervstplayj
    0x000000013757b29f juce::WaitableEventImpl::wait(int) + 57
    3   ...st.midi.wordbuildervstplayj
    0x000000013756d3c4 juce::WaitableEvent::wait(int) const + 12
    4   ...st.midi.wordbuildervstplayj
    0x000000013758d105 juce::Thread::wait(int) const + 13
    5   ...st.midi.wordbuildervstplayj
    0x0000000137453c8d MyTimerThread::run() + 69
    6   ...st.midi.wordbuildervstplayj
    0x000000013758d53e juce::Thread::threadEntryPoint() + 86
    7   ...st.midi.wordbuildervstplayj
    0x00000001375747dd juce::threadEntryProc(void*) + 29
    8   libSystem.B.dylib        
    0x00007fff803fcfd6 _pthread_start + 331
    9   libSystem.B.dylib        
    0x00007fff803fce89 thread_start + 13
    Thread 23:
    0   libSystem.B.dylib        
    0x00007fff803c3d7a mach_msg_trap + 10
    1   libSystem.B.dylib        
    0x00007fff803c43ed mach_msg + 59
    2   com.apple.CoreFoundation 
    0x00007fff83a03902 __CFRunLoopRun + 1698
    3   com.apple.CoreFoundation 
    0x00007fff83a02d8f CFRunLoopRunSpecific + 575
    4   com.apple.CoreFoundation 
    0x00007fff83a02b16 CFRunLoopRun + 70
    5   com.eastwest.Play        
    0x000000012fa5896d CUSBDeviceNotifyThread::M192D295BF6D8B650() + 325
    6   com.eastwest.Play        
    0x000000012fa59324 CPThread::thread_routine(void*) + 112
    7   libSystem.B.dylib        
    0x00007fff803fcfd6 _pthread_start + 331
    8   libSystem.B.dylib        
    0x00007fff803fce89 thread_start + 13
    Thread 24:
    0   libSystem.B.dylib        
    0x00007fff803fea6a __semwait_signal + 10
    1   libSystem.B.dylib        
    0x00007fff803fe8f9 nanosleep + 148
    2   libSystem.B.dylib        
    0x00007fff803fe863 usleep + 57
    3   com.eastwest.Play        
    0x000000012fa5952f CPTTimer::M192D295BF6D8B650() + 103
    4   com.eastwest.Play        
    0x000000012fa59324 CPThread::thread_routine(void*) + 112
    5   libSystem.B.dylib        
    0x00007fff803fcfd6 _pthread_start + 331
    6   libSystem.B.dylib        
    0x00007fff803fce89 thread_start + 13
    Thread 25:
    0   libSystem.B.dylib        
    0x00007fff803fea6a __semwait_signal + 10
    1   libSystem.B.dylib        
    0x00007fff803fe8f9 nanosleep + 148
    2   libSystem.B.dylib        
    0x00007fff803fe863 usleep + 57
    3   ...nth 5.MusicDevice.component
    0x000000013c3ddebe ProgramChangeThread::run() + 30
    4   ...nth 5.MusicDevice.component
    0x000000013c87e949 NI::GP::Thread::execute(void*) + 73
    5   libSystem.B.dylib        
    0x00007fff803fcfd6 _pthread_start + 331
    6   libSystem.B.dylib        
    0x00007fff803fce89 thread_start + 13
    Thread 26:
    0   libSystem.B.dylib        
    0x00007fff803fea6a __semwait_signal + 10
    1   libSystem.B.dylib        
    0x00007fff80402881 _pthread_cond_wait + 1286
    2   com.eastwest.Play        
    0x000000012f6af86b juce::WaitableEventImpl::wait(int) + 57
    3   com.eastwest.Play        
    0x000000012f6a4ef2 juce::WaitableEvent::wait(int) const + 12
    4   com.eastwest.Play        
    0x000000012f7ce365 ousia::PartConvolution::Process::run() + 53
    5   com.eastwest.Play        
    0x000000012f6bf25b juce::Thread::threadEntryPoint() + 91
    6   com.eastwest.Play        
    0x000000012f6ab1b0 juce::threadEntryProc(void*) + 29
    7   libSystem.B.dylib        
    0x00007fff803fcfd6 _pthread_start + 331
    8   libSystem.B.dylib        
    0x00007fff803fce89 thread_start + 13
    Thread 27:
    0   libSystem.B.dylib        
    0x00007fff803fea6a __semwait_signal + 10
    1   libSystem.B.dylib        
    0x00007fff803fe8f9 nanosleep + 148
    2   libSystem.B.dylib        
    0x00007fff803fe863 usleep + 57
    3   ...nth 5.MusicDevice.component
    0x000000013c3ddebe ProgramChangeThread::run() + 30
    4   ...nth 5.MusicDevice.component
    0x000000013c87e949 NI::GP::Thread::execute(void*) + 73
    5   libSystem.B.dylib        
    0x00007fff803fcfd6 _pthread_start + 331
    6   libSystem.B.dylib        
    0x00007fff803fce89 thread_start + 13
    Thread 28:
    0   libSystem.B.dylib        
    0x00007fff803dda2a __workq_kernreturn + 10
    1   libSystem.B.dylib        
    0x00007fff803dde3c _pthread_wqthread + 917
    2   libSystem.B.dylib        
    0x00007fff803ddaa5 start_wqthread + 13
    Thread 29:
    0   libSystem.B.dylib        
    0x00007fff803fea6a __semwait_signal + 10
    1   libSystem.B.dylib        
    0x00007fff80402881 _pthread_cond_wait + 1286
    2   com.eastwest.Play        
    0x000000012f6af8ec juce::WaitableEventImpl::wait(int) + 186
    3   com.eastwest.Play        
    0x000000012f6a4ef2 juce::WaitableEvent::wait(int) const + 12
    4   com.eastwest.Play        
    0x000000012f6bedeb juce::Thread::wait(int) const + 13
    5   com.eastwest.Play        
    0x000000012f5c96c8 juce::InternalTimerThread::run() + 180
    6   com.eastwest.Play        
    0x000000012f6bf25b juce::Thread::threadEntryPoint() + 91
    7   com.eastwest.Play        
    0x000000012f6ab1b0 juce::threadEntryProc(void*) + 29
    8   libSystem.B.dylib        
    0x00007fff803fcfd6 _pthread_start + 331
    9   libSystem.B.dylib        
    0x00007fff803fce89 thread_start + 13
    Thread 30:
    0   libSystem.B.dylib        
    0x00007fff803fea6a __semwait_signal + 10
    1   libSystem.B.dylib        
    0x00007fff80402881 _pthread_cond_wait + 1286
    2   com.eastwest.Play        
    0x000000012f6af86b juce::WaitableEventImpl::wait(int) + 57
    3   com.eastwest.Play        
    0x000000012f6a4ef2 juce::WaitableEvent::wait(int) const + 12
    4   com.eastwest.Play        
    0x000000012f7ce365 ousia::PartConvolution::Process::run() + 53
    5   com.eastwest.Play        
    0x000000012f6bf25b juce::Thread::threadEntryPoint() + 91
    6   com.eastwest.Play        
    0x000000012f6ab1b0 juce::threadEntryProc(void*) + 29
    7   libSystem.B.dylib        
    0x00007fff803fcfd6 _pthread_start + 331
    8   libSystem.B.dylib        
    0x00007fff803fce89 thread_start + 13
    Thread 31:
    0   libSystem.B.dylib        
    0x00007fff803fea6a __semwait_signal + 10
    1   libSystem.B.dylib        
    0x00007fff80402881 _pthread_cond_wait + 1286
    2   com.eastwest.Play        
    0x000000012f6af86b juce::WaitableEventImpl::wait(int) + 57
    3   com.eastwest.Play        
    0x000000012f6a4ef2 juce::WaitableEvent::wait(int) const + 12
    4   com.eastwest.Play        
    0x000000012f7ce365 ousia::PartConvolution::Process::run() + 53
    5   com.eastwest.Play        
    0x000000012f6bf25b juce::Thread::threadEntryPoint() + 91
    6   com.eastwest.Play        
    0x000000012f6ab1b0 juce::threadEntryProc(void*) + 29
    7   libSystem.B.dylib        
    0x00007fff803fcfd6 _pthread_start + 331
    8   libSystem.B.dylib        
    0x00007fff803fce89 thread_start + 13
    Thread 32:
    0   libSystem.B.dylib        
    0x00007fff803fea6a __semwait_signal + 10
    1   libSystem.B.dylib        
    0x00007fff80402881 _pthread_cond_wait + 1286
    2   com.eastwest.Play        
    0x000000012f6af86b juce::WaitableEventImpl::wait(int) + 57
    3   com.eastwest.Play        
    0x000000012f6a4ef2 juce::WaitableEvent::wait(int) const + 12
    4   com.eastwest.Play        
    0x000000012f7ce365 ousia::PartConvolution::Process::run() + 53
    5   com.eastwest.Play        
    0x000000012f6bf25b juce::Thread::threadEntryPoint() + 91
    6   com.eastwest.Play        
    0x000000012f6ab1b0 juce::threadEntryProc(void*) + 29
    7   libSystem.B.dylib        
    0x00007fff803fcfd6 _pthread_start + 331
    8   libSystem.B.dylib        
    0x00007fff803fce89 thread_start + 13
    Thread 33:
    0   libSystem.B.dylib        
    0x00007fff803fea6a __semwait_signal + 10
    1   libSystem.B.dylib        
    0x00007fff80402881 _pthread_cond_wait + 1286
    2   com.eastwest.Play        
    0x000000012f6af86b juce::WaitableEventImpl::wait(int) + 57
    3   com.eastwest.Play        
    0x000000012f6a4ef2 juce::WaitableEvent::wait(int) const + 12
    4   com.eastwest.Play        
    0x000000012f7ce365 ousia::PartConvolution::Process::run() + 53
    5   com.eastwest.Play        
    0x000000012f6bf25b juce::Thread::threadEntryPoint() + 91
    6   com.eastwest.Play        
    0x000000012f6ab1b0 juce::threadEntryProc(void*) + 29
    7   libSystem.B.dylib        
    0x00007fff803fcfd6 _pthread_start + 331
    8   libSystem.B.dylib        
    0x00007fff803fce89 thread_start + 13
    Thread 34:
    0   libSystem.B.dylib        
    0x00007fff803fea6a __semwait_signal + 10
    1   libSystem.B.dylib        
    0x00007fff80402881 _pthread_cond_wait + 1286
    2   com.eastwest.Play        
    0x000000012f6af86b juce::WaitableEventImpl::wait(int) + 57
    3   com.eastwest.Play        
    0x000000012f6a4ef2 juce::WaitableEvent::wait(int) const + 12
    4   com.eastwest.Play        
    0x000000012f7ce365 ousia::PartConvolution::Process::run() + 53
    5   com.eastwest.Play        
    0x000000012f6bf25b juce::Thread::threadEntryPoint() + 91
    6   com.eastwest.Play        
    0x000000012f6ab1b0 juce::threadEntryProc(void*) + 29
    7   libSystem.B.dylib        
    0x00007fff803fcfd6 _pthread_start + 331
    8   libSystem.B.dylib        
    0x00007fff803fce89 thread_start + 13
    Thread 35:
    0   libSystem.B.dylib        
    0x00007fff803fea6a __semwait_signal + 10
    1   libSystem.B.dylib        
    0x00007fff80402881 _pthread_cond_wait + 1286
    2   com.eastwest.Play        
    0x000000012f6af86b juce::WaitableEventImpl::wait(int) + 57
    3   com.eastwest.Play        
    0x000000012f6a4ef2 juce::WaitableEvent::wait(int) const + 12
    4   com.eastwest.Play        
    0x000000012f7ce365 ousia::PartConvolution::Process::run() + 53
    5   com.eastwest.Play        
    0x000000012f6bf25b juce::Thread::threadEntryPoint() + 91
    6   com.eastwest.Play        
    0x000000012f6ab1b0 juce::threadEntryProc(void*) + 29
    7   libSystem.B.dylib        
    0x00007fff803fcfd6 _pthread_start + 331
    8   libSystem.B.dylib        
    0x00007fff803fce89 thread_start + 13
    Thread 36:
    0   libSystem.B.dylib        
    0x00007fff803fea6a __semwait_signal + 10
    1   libSystem.B.dylib        
    0x00007fff80402881 _pthread_cond_wait + 1286
    2   com.eastwest.Play        
    0x000000012f6af86b juce::WaitableEventImpl::wait(int) + 57
    3   com.eastwest.Play        
    0x000000012f6a4ef2 juce::WaitableEvent::wait(int) const + 12
    4   com.eastwest.Play        
    0x000000012f7ce365 ousia::PartConvolution::Process::run() + 53
    5   com.eastwest.Play        
    0x000000012f6bf25b juce::Thread::threadEntryPoint() + 91
    6   com.eastwest.Play        
    0x000000012f6ab1b0 juce::threadEntryProc(void*) + 29
    7   libSystem.B.dylib        
    0x00007fff803fcfd6 _pthread_start + 331
    8   libSystem.B.dylib        
    0x00007fff803fce89 thread_start + 13
    Thread 16 crashed with X86 Thread State (64-bit):
      rax: 0x000000000000003c  rbx: 0x000000012ca1f240  rcx: 0x000000012ca1f1f8  rdx: 0x0000000000000001
      rdi: 0x0000000000000c03  rsi: 0x0000000000000000  rbp: 0x000000012ca1f230  rsp: 0x000000012ca1f1f8
       r8: 0x0000000000000000   r9: 0x0000000000989680  r10: 0x0000000000000001  r11: 0xffffff80002e4730
      r12: 0x0000000000000000  r13: 0x0000000147715b1a  r14: 0x0000000147683000  r15: 0x0000000000000000
      rip: 0x00007fff804369ce  rfl: 0x0000000000000247  cr2: 0x0000000151964834
    Binary Images:
    0x100000000 -   
    0x100c18fef  com.apple.logic.pro 9.1.8 (1700.67) <5CBBDF7C-6505-0A14-61F1-483839F57524> /Applications/Logic Pro.app/Contents/MacOS/Logic Pro
    0x101086000 -   
    0x1010a4fef  com.apple.XSKey 1.0.0 (52) <800DD908-E341-2BCD-11D9-DEAC7E8197E9> /Library/Frameworks/XSKey.framework/Versions/A/XSKey
    0x1010b6000 -   
    0x1010f0ff7  com.apple.music.apps.MAAudioUnitSupport 9.1.8 (233.53) <B5939861-E5F9-3218-0989-4ED074B1323D> /Applications/Logic Pro.app/Contents/Frameworks/MAAudioUnitSupport.framework/Versions/A/MAAudioUnit Support
    0x101113000 -   
    0x101141ff7  com.apple.musicaudiodataservices 1.1 (251.4) <93B2F8C3-E091-C1CA-8932-91840CC968BC> /Applications/Logic Pro.app/Contents/Frameworks/MAAssetSharing.framework/Versions/A/MAAssetSharing
    0x101153000 -   
    0x1011b6ff7  com.apple.music.apps.MALoopManagement 9.1.8 (219.66) <FE447B07-89A4-E025-DFB8-4C71A0EFEBF0> /Applications/Logic Pro.app/Contents/Frameworks/MALoopManagement.framework/Versions/A/MALoopManagem ent
    0x1011ed000 -   
    0x10147bff7  com.apple.prokit 7.0.1 (1331.1) <0C6C56BB-83E2-7090-90D0-C9005C955F8A> /System/Library/PrivateFrameworks/ProKit.framework/Versions/A/ProKit
    0x1015fd000 -   
    0x101693fe7  com.apple.music.apps.MACore 9.1.8 (477.58) <3E8020EA-9B42-63A5-613D-FD2D7675546F> /Applications/Logic Pro.app/Contents/Frameworks/MACore.framework/Versions/A/MACore
    0x1016dd000 -   
    0x10172dff7  com.apple.audio.midi.CoreMIDI 1.7.1 (42) <872D18F1-18CB-DDC1-FBC8-B144604A39B1> /System/Library/Frameworks/CoreMIDI.framework/Versions/A/CoreMIDI
    0x101755000 -   
    0x1017b3fef  com.apple.music.apps.MAHarmony 9.1.8 (199.72) <EE991E63-1236-765D-3C95-4AE3494B295C> /Applications/Logic Pro.app/Contents/Frameworks/MAHarmony.framework/Versions/A/MAHarmony
    0x1017db000 -   
    0x101c1cfff  com.apple.music.apps.MAPlugInGUI 9.1.8 (424.79) <6FEA2031-69A3-9209-54EF-36BA3DAD1883> /Applications/Logic Pro.app/Contents/Frameworks/MAPlugInGUI.framework/Versions/A/MAPlugInGUI
    0x101ee0000 -   
    0x101fbcfff  com.apple.music.apps.OMF 9.1.8 (109.7) <F72235D0-517D-CCCB-3B91-78396786EB34> /Applications/Logic Pro.app/Contents/Frameworks/OMF.framework/Versions/A/OMF
    0x101fdb000 -   
    0x10260bfef  com.apple.music.apps.MADSP 9.1.8 (588.98) <D794D156-112C-29E3-EB9D-62604A9807DE> /Applications/Logic Pro.app/Contents/Frameworks/MADSP.framework/Versions/A/MADSP
    0x102e69000 -   
    0x102e8eff7  com.apple.music.apps.LogicFileBrowser 9.1.8 (1700.67) <8E130979-83FB-56BD-DE18-A723A94B7530> /Applications/Logic Pro.app/Contents/Frameworks/LogicFileBrowser.framework/Versions/A/LogicFileBrow ser
    0x102ea1000 -   
    0x102f1ffff  com.apple.music.apps.LogicLoopBrowser 9.1.8 (1700.67) <47AF47CE-F6A1-E025-96FA-5C30EAFA13BC> /Applications/Logic Pro.app/Contents/Frameworks/LogicLoopBrowser.framework/Versions/A/LogicLoopBrow ser
    0x102f4e000 -   
    0x102f72ff7  com.apple.music.apps.MAApogeeSupport 9.1.8 (313.26) <6384895C-60D4-CE0B-0E86-673A20A34D36> /Applications/Logic Pro.app/Contents/Frameworks/MAApogeeSupport.framework/Versions/A/MAApogeeSuppor t
    0x102f80000 -   
    0x102f85fff  com.apple.music.apps.MAResources 9.1.8 (212.66) <0E66AB42-6F37-9AE7-8766-264DAE455688> /Applications/Logic Pro.app/Contents/Frameworks/MAResources.framework/Versions/A/MAResources
    0x102f88000 -   
    0x102fb4fff  com.apple.audio.CoreAudioKit 1.6.1 (1.6.1) <45C04031-42F8-D096-1CC3-0CA266FDAC61> /System/Library/Frameworks/CoreAudioKit.framework/Versions/A/CoreAudioKit
    0x102fcd000 -   
    0x102fe0ff7  com.apple.AERegistration 1.2 (401) <A424BA9F-0DD7-BE25-2738-4BCD22F0BB2A> /Applications/Logic Pro.app/Contents/Frameworks/AERegistration.framework/Versions/A/AERegistration
    0x102ff9000 -   
    0x103006fff  com.apple.music.apps.MAUnitTest 9.1.8 (97.27) <8AF973F8-CBB2-931B-6BFC-D4BCB8A434F6> /Applications/Logic Pro.app/Contents/Frameworks/MAUnitTest.framework/Versions/A/MAUnitTest
    0x10300f000 -   
    0x1030cafe7  com.apple.music.apps.MAFiles 9.1.8 (144.87) <F9F3C7E2-46F5-0EC3-7297-096AEB83BFD6> /Applications/Logic Pro.app/Contents/Frameworks/MAFiles.framework/Versions/A/MAFiles
    0x103103000 -   
    0x10317ffe7  com.apple.music.apps.MAAudioEngine 9.1.8 (158.42) <6944C1FC-7ACD-53A2-5095-E017C39D8CBA> /Applications/Logic Pro.app/Contents/Frameworks/MAAudioEngine.framework/Versions/A/MAAudioEngine
    0x1031f3000 -   
    0x1031fefff  com.apple.music.apps.MAToolKit 9.1.8 (359.28) <B9729EDA-E5DB-C831-E473-EED9C906AAA0> /Applications/Logic Pro.app/Contents/Frameworks/MAToolKit.framework/Versions/A/MAToolKit
    0x103205000 -   
    0x103213ff7  com.apple.music.apps.MAVideo 9.1.8 (12.70) <19D30553-8BFE-4F8C-D13E-0D3139AAC22B> /Applications/Logic Pro.app/Contents/Frameworks/MAVideo.framework/Versions/A/MAVideo
    0x10321b000 -   
    0x103301fe7  libcrypto.0.9.7.dylib 0.9.7 (compatibility 0.9.7) <64B3566E-5F3A-A466-ED3F-B91F4B3E5F56> /usr/lib/libcrypto.0.9.7.dylib
    0x103359000 -   
    0x103407fec  com.apple.MobileMe 9 (1.01) <F322542E-D3BB-7861-602A-3F405F2BD61B> /Applications/Logic Pro.app/Contents/Frameworks/MobileMe.framework/Versions/A/MobileMe
    0x10372b000 -   
    0x10372dfe7  com.apple.music.apps.midi.device.plugin.CS-32 9.1.8 (198.73) <4427150E-7710-4983-8CD5-CE6C4F2AE97C> /Applications/Logic Pro.app/Contents/MIDI Device Plug-ins/CS-32.bundle/Contents/MacOS/CS-32
    0x103735000 -   
    0x103738ff7  com.apple.music.apps.midi.device.plugin.FW-1884 9.1.8 (198.73) <89696612-EE45-1A1D-CB75-3FEBEE46EF1A> /Applications/Logic Pro.app/Contents/MIDI Device Plug-ins/FW-1884.bundle/Contents/MacOS/FW-1884

  • What does this alarm mean ....... hwStringMatch - HP Insight Management Agents Trap Alarm: Logical Drive Status Change: Slot 1, Drive: 2 ......... Status is now Predictive Failure

    Hi,
    I have received this trap from the Call Manager PUB server running version 7.1.5.31900-3
    hwStringMatch - cmaidad[5579]: Physical Drive Status Change: Slot 1 Port 2l Box 1 Bay 1. Status is now Predictive Failure
    I have checked the drive status via CLI and all drives show OK, both physical & logical
    Is there anywhere you can check what is causing this event and is it merely advising of a potential drive failure

    Hi
    Modern drives have embedded monitoring. Whilst the disk hasn't failed, something internally is telling the embedded monitoring that it may soon fail - it's running a little hot, having excessive write errors, latency is drifting up... something subtle is going wrong.
    It could be caused by a firmware error... but I'd take it at face value.
    It might have failed by the time you read this, or it might work fine for another 20 years.
    Either way - when I was a server admin I would get any disk with a predictive failure swapped out immediately. No point waiting for it to fail - even on a RAID system when a disk fails although you don't lose data you have your trousers down as a coincidental second failure would ruin your day!
    Regards
    Aaron

  • Help Needed in Date Logic

    Hi I am working in sqlserver 2008 R2 and below is my sample research query
    i am trying to get previous 6 months data.
    WITH CutomMonths
    AS (
    SELECT UPPER(convert(VARCHAR(3), datename(month, DATEADD(MM, DATEDIFF(MM, 0, GETDATE()) - N, 0)))) Month
    ,DATEADD(MM, DATEDIFF(MM, 0, GETDATE()) - N, 0) startdate
    ,DATEADD(MM, DATEDIFF(MM, 0, GETDATE()) - N + 1, 0) enddate
    FROM (
    VALUES (1)
    ,(2)
    ,(3)
    ,(4)
    ,(5)
    ,(6)
    ) x(N)
    WHERE N <= 6
    SELECT month
    ,SUM(isnull(perks.amount,0)) AS PerkAmount
    FROM CutomMonths
    LEFT JOIN (
    select 10.00 as amount,'2014-04-03' as StartDate,'2015-04-03' as EndDate union all
    select 10.00 as amount,'2014-04-03' as StartDate,'2015-04-03' as EndDate
    ) perks ON
    CutomMonths.startdate >= perks.StartDate
    AND CutomMonths.startdate < perks.EndDate
    GROUP BY CutomMonths.Month
    ,CutomMonths.startdate
    ORDER BY CutomMonths.startdate ASC
    current output what i am getting:
    Expected Output:
    I found why the April month i din't get the $20 because the startdate of my perks CTE '2014-04-03'. If it is '2014-04-01' then i will get the expected output.
    But i should not change the the date on perks. How to neglect this date issue and consider the month instead to get the expected output. please help me on this as i am struggling on my logic 
    loving dotnet

    I'm just going to focus on the JOIN criteria in this reply since my answer above and your 2nd response are essentially the same except for the JOIN.
    What your are describing and what you are doing in code is conflicting. 
    You are saying this:
    "I just need to check whether the perks start date falls in between month start date and month end date"
    ..., which translated directly to code would be this:
     ON perks.StartDate >= CustomMonths.StartDate
    AND perks.StartDate <= CustomMonths.EndDate
    What I believe you are getting after is this:
    "I just need to check whether the dates within the perks start and end date range fall in between month start date and month end date"
    ..., which translated directly to code would be this, which is also my answer proposed above:
    ON CustomMonths.StartDate >= DATEADD(DAY, -(DAY(perks.StartDate) - 1), perks.StartDate)
    AND CustomMonths.StartDate <= perks.EndDate
    However, if you really want to use the code solution you proposed, then you would actually be saying this:
    "I just need to check whether the dates within the perks start and end date range fall in between month start date and month end date, but if perk end date happens to be the first day of the month, then ignore it and use the previous day."
    ..., in which case then your code, as follows, would be the solution:
     ON CutomMonths.startdate >= DATEADD(mm, DATEDIFF(mm, 0, perks.StartDate), 0)AND CutomMonths.startdate < DATE
    ADD(mm, DATEDIFF(mm, 0, perks.EndDate), 0)
    NOTE: The alternate JOIN I had commented out in my proposed answer above will do the exact same thing as your latest proposed solution
     ON CustomMonths.StartDate >= DATEADD(DAY, -(DAY(perks.StartDate) - 1), perks.StartDate)
    AND CustomMonths.StartDate < perks.EndDate
    BTW, I see how you are getting to the first day of the month by subtracting all the months from the given date to 01/01/1901, and then turning around and adding them all back to 01/01/1901.  While that is one way to get to the first day of the month, it
    seems excessive from a calculation stand point, although I haven't performed any performance tests to know for certain.
    SELECT DATEADD(mm, DATEDIFF(mm, 0, '2014-04-03'), 0)
    I prefer simply subtracting one less than the current day number from the given date to get to the same first day of the month value.
    SELECT DATEADD(DAY, -(DAY('2014-04-03') - 1), '2014-04-03')

  • Shall i put a 7200rpm hard drive into my black macbook for logic pro?

    hi, i bought high spec black macbook refurbished which came with a 5400rpm drive inside it.
    Im using logic pro, and its been running fine with small projects, but when i have a medium sized project using several vst instruments and exs24s using many audio samples, all of which are running off the internal.... i get error messages, system overload messages...and i am unable to bounce to audio file (in logic pro)
    im thinking its the slow hard drive which is causing the main problems.
    I have 2gb ram. It also takes sometimes over 5 mins to open this logic file. And then some!
    Or is this poor performance par for the course, if using just ONE internal drive, for both system files and audio storage....... ?
    Are there possible probs which may arise from taking out the 5400 drive and fitting a faster 7200 drive in to my macbook? I hear it will heat up more....so could this mess with other macbook componets?? the excess heat...... or are macbooks bulit to handle 7200rpm drives too??? dont remember is 7200 was an optional upgrade with my model or not......
    2.4ghz intelcore2duo.
    Anybody fitted a 7200 drive into their macbooks???? all running ok??
    Would i simply put the new hard drive in..... and then boot up from boot dvds and my time machine backup....to have a full up to date system, all apps and file intact as they are now???? Im worried it will get messy and problems...... my current drive is packed to rafters with apps and files and work i have done......i dont want to lose a thing.....would it be a simple easy fool proof transition to faster hard drive????
    And could i still use the current hard drive? With an enclosure??
    Ive heard people have ripped out the opticla dvd drive and fitted ANOTHER hard drive into their macbooks, so the laptop housing two hard drives..... that sounds good...but crazy..... maybe later ill do that....as i hardly use the cd/dvd drive...... and you can always hook it up with wire if need be......
    any tips or advice....would be most kind and helpful.
    thankyou.

    I used Carbon Copy Cloner- do not use Time Machine for this- to make a bootable clone of the drive inside my Macbook Pro, and then installed the new, faster drive. I then booted from the cloned drive, and cloned that back into the fresh internal drive. That being said:
    1) I only did this since I bought the laptop used, and didn't get the install OS discs. I would have started fresh and installed everything myself, but then again, it wasn't my laptop, and I didn't care about what was on it. You might.
    2) You need to clone to an external Firewire drive if you want to make a bootable clone. Do not use USB. Do not use Time Machine, as its backups are not able to be booted from.
    3) The whole replace the internal DVD drive with another sounds pretty iffy to me. Just use the Firewire drive you'll now be having at you disposal for a variety of things, including possibly recording to. I can advise once I know what your interface is, if any, and if you've got a Macbook or a Macbook Pro- I forgot to look.
    You will get much better results with a 7200 RPM drive, by the way. You can certainly use the old drive in some sort of enclosure, although it's still a slow drive and all, so I wouldn't really invest much into it. Maybe put it in a USB enclosure and use it for backups, or for transporting material, or for cracking walnuts, maybe, if you have a walnut tree.
    Even in this fancy computer age, there is still nothing better than a freshly roasted walnut or pecan. Good luck, L

Maybe you are looking for

  • App store error when i click icon what do i do?

    Process:     App Store [28603] Path:        /Applications/Apple Apps/App Store.app/Contents/MacOS/App Store Identifier:  com.apple.appstore Version:     1.0.2 (63.1) Build Info:  Firenze-630100~1 Code Type:   X86-64 (Native) Parent Process:  launchd

  • Philips LCD TV with Ethernet does it work with TC

    Philips have on some of their top models an Ethernet point in the back of the TV for connection to the network but has anyone got it set up with an airport unit? and if so can you please tell me how to make it work. thank you in advance

  • PICO Projector

    I am trying to connect a PICO PK104 digital projector to my Macbook Pro, and I am not sure what adapter to use...any ideas?

  • Time option in a Drop down box

    hi, How to assign a time option to a drop down box? Ganesh

  • Activating Business Content

    Expeerts, I am about to start development in BI 7.0. 1. What should I activate first in Business Content? Should I activate all info objects first ? Or the identified cubes(data targets) and while doing so then collect the relevant info objects as we