Crash in evaopn2 with functional indexes

Hi,
I have a problem with 3rd party application running on oracle 10.2.0.3. When a particular statement is executed, it triggers error in evaopn2.
As far as I know, there was a bug using functional indexes, but it was supposed to be fixed in 10.2.0.3, right?
Oracle is running on ubuntu server 7.10. This is the only problem we have so far.
What should I do?
Regards
Jernej
Trace dump:
Exception signal: 11 (SIGSEGV), code: 1 (Address not mapped to object), addr: 0x0, PC: [0x9616d1a, evaopn2()+104]
Registers:
%eax: 0x0000013c %ebx: 0x00000000 %ecx: 0xb6db8f6c
%edx: 0x3afe7144 %edi: 0x00000000 %esi: 0x80000002
%esp: 0xbffd23f0 %ebp: 0xbffd25b0 %eip: 0x09616d1a
%efl: 0x00200246
evaopn2()+86 (0x9616d08) test $0x20800400,%esi
evaopn2()+92 (0x9616d0e) jnz 0x9616f21
evaopn2()+98 (0x9616d14) mov %ebx,0xfffffffc(%ebp)
evaopn2()+101 (0x9616d17) mov 0x28(%edx),%ebx
evaopn2()+104 (0x9616d1a) mov (%ebx),%esievaopn2()+106 (0x9616d1c) movzw 0x4(%ebx),%edi
evaopn2()+110 (0x9616d20) mov (%esi,%ecx),%ebx
evaopn2()+113 (0x9616d23) mov %edi,0xffffffe8(%ebp)
evaopn2()+116 (0x9616d26) mov %ebx,0xfffffff0(%ebp)
*** 2008-05-31 01:52:24.592

What should I do?Contact 3rd party product vendor. An OS exception is thrown in the application, that may be a 3rd party problem, may be an Oracle problem, may be a combination of both. Only the code developers can analyze this.
Werner

Similar Messages

  • Issue with using N'...' values in a where clause against a function index

    We have a table that is defined with non Unicode columns with a UPPER(..) function index on the index column (to allow searching in any alphabetic case)
    e.g.
    create table my_table
    index_column varchar2(20),
    desc_column varchar2(40)
    create index my_table_idx as on my_table(UPPER(index_column));
    there is approx. > 10 million rows in this table
    The issue we have is that when we do the following select
    select index_column, desc_column from my_table
    where upper(index_column) = 'SOME VALUE'; this statement runs in approx 0.03 seconds which is great
    But we also have some statements that run as
    select index_column, desc_column from my_table
    where upper(index_column) = N'SOME VALUE'; notice the N'...' string (unicode) value used. This ends up doing a full table scan (> 5 seconds)
    So... the question is how can i make this select statement passing in a Unicode string value hit this function based UPPER index? Is there anyway?
    I have tried these extra indexes - to no avail
    create index my_table_idx as on my_table(UPPER(CAST(index_column as nvarchar2(20)));
    and
    create index my_table_idx as on my_table(UPPER(COMPOSE(index_column)));
    I assumed Oracle should have done and implicit conversion back to a non unicode string value and then passed that value into the UPPER(...) function index, but it appears as though Oracle isn't recognizing that the column is a different type (varchar2 vs nvarchar2)
    Any help greatly appreciated?

    Horrible amount of irrelevant tags, and the only thing relevant , the four digit version, is of course not mentioned.
    Also the characterset of the database is relevant.
    As far as I know in 11g and higher one no longer needs the N'<string construct>'
    As to implicit conversion
    assume <number_column> = '9'
    Oracle always converts this into
    to_char(<number_column>='9'
    Same applies to your case.
    Try leaving out the N, check whether it works and whether your function based index is used.
    Sybrand Bakker
    Senior Oracle DBA

  • Seqment shrink with function based indexes - 10.2.0.3

    I see 10g Rel 2 limiation with function based index while doing segment shrink. Is their a workaround? I tried to drop the function based index before shrink, still shrink is taking several hrs to complete.
    Any help is appreciated.
    Thanks,
    Siva

    Hi,
    Analogy: suppose you have 1 million barrels filled with water near 85% maybe less, now you spilled ...say 40% the total water, maybe you have 400,000 empty barrels or the equivalent (here comes the overhead) you are going to concentrate the water in 600,000 barrels and return the empty ones to the "Oracle Server" store, just to reclaim them gradually until you have the starting 1 million barrel.
    Our advise: keep the objects as they are, both table and index. Oracle will use released space as efficiently as he can, which is (at that level) better than us.
    You're worried about the index space? much better leave it now, that's the structure which may cause the major part of overhead.
    Regards
    Ignacio
    http://oracledisect.blogspot.com

  • Why Segment shrink is not supported for tables with function-based indexes

    As we all know , Segment shrink is not supported for tables with function-based indexes.
    But i'm very confused .
    Why Segment shrink is not supported for tables with function-based indexes ?? what's its essential?

    Creating a function based index creates a hidden virtual column (you'll see it if you query user_tab_cols) and once you index a virtual column you can no longer shrink the table:orcl> create table t1(c1 number,c2 as (c1 * 2)) segment creation immediate;
    Table created.
    orcl> alter table t1 enable row movement;
    Table altered.
    orcl>
    orcl> alter table t1 shrink space;
    Table altered.
    orcl> create index i2 on t1(c2);
    Index created.
    orcl> alter table t1 shrink space;
    alter table t1 shrink space
    ERROR at line 1:
    ORA-10631: SHRINK clause should not be specified for this object
    orcl>so the issue is not with function based indexes per se, it is a level beneath that. Perhaps because the virtual column has no physical existance, when the row is moved there is no reason for Oracle to realize that an index needs updating? I haven't attempted to reverse engineer this, I would be interested to know if anyone else has.

  • Function Index with Upper

    I am trying to use a function index and am having trouble. I built the index successfully using the syntax:
    CREATE INDEX COUNTRY_INDX1 ON COUNTRY(Upper(country_name));
    Then, I submitted a query such as:
    SELECT * FROM COUNTRY WHERE country_name = 'USA';
    I computed EXPLAIN PLAN and it still does a FULL access of the table. If I do something like Upper(country_name) in the where clause, it still doesn't find the correct index.
    Do I need to form my query differently to use the Function Index I created?
    Thanks so much in advance!!!

    SQL> desc emp
    Name                                      Null?    Type
    EMPNO                                              NUMBER(4)
    ENAME                                              VARCHAR2(10)
    JOB                                                VARCHAR2(9)
    MGR                                                NUMBER(4)
    HIREDATE                                           DATE
    SAL                                                NUMBER(7,2)
    COMM                                               NUMBER(7,2)
    DEPTNO                                             NUMBER(2)
    SQL> create index idx_emp_ename on emp(upper(ename)) ;
    Index created.
    SQL> analyze table emp compute statistics for table for all indexed columns ;
    Table analyzed.
    SQL> exec dbms_stats.set_table_stats(user, 'EMP', numblks => 100000) ;
    PL/SQL procedure successfully completed.
    SQL> set autotrace traceonly
    SQL> select * from emp where upper(ename) = 'A%' ;
    Execution Plan
       0      SELECT STATEMENT Optimizer=CHOOSE (Cost=60 Card=1 Bytes=40)
       1    0   TABLE ACCESS (BY INDEX ROWID) OF 'EMP' (Cost=60 Card=1 Byt
              es=40)
       2    1     INDEX (RANGE SCAN) OF 'IDX_EMP_ENAME' (NON-UNIQUE) (Cost
              =2 Card=1)
    SQL>

  • Help optimizing query with function

    Hello experts,
    I need your help optmizing this query which has a condition that matches on results of non-deterministic function. The non-deterministic functino is fedtaxpk.fedtaxpk_pkg.GETFIELDDATAGROUPSEQKEY. Values that it returns depends on contents of a table, so I can't really create a function index.
    Any input will be appreciated. Thanks in advance!
    Sorry I couln't format the query plan properly. Can somebody advise how? Thanks again!
    Giovanni
    explain plan for
    WITH tg AS
    (SELECT taxgroup_code FROM taxgroup
    WHERE taxgroup_code = 'TAXGROUP2' --?
    AND taxgroup_delete_ind = 'N' AND taxgroup_active_ind = 'A'),
    le_hb AS
    (SELECT tgi.taxgroup_code, tgi.legalentity_id, tgi.hyperionbase_id, ou.orgunit_code, ou.hyperionbase_code
    FROM tg, taxgroupitem tgi, orgunit_vw ou
    WHERE tg.taxgroup_code = tgi.taxgroup_code
    AND tgi.legalentity_id = ou.legalentity_id AND tgi.hyperionbase_id = ou.hyperionbase_id
    UNION
    SELECT tgi.taxgroup_code, tgi.legalentity_id, ou.hyperionbase_id, ou.orgunit_code, ou.hyperionbase_code
    FROM tg, taxgroupitem tgi, orgunit_vw ou
    WHERE tg.taxgroup_code = tgi.taxgroup_code
    AND tgi.legalentity_id = ou.legalentity_id AND tgi.hyperionbase_id IS NULL),
    au AS
    (SELECT appusage_code FROM appusage WHERE appusage_code = 'CONSOLIDATION'),
    prs AS
    (SELECT prs_key,
    (CASE WHEN instr(prs_key, ':') = 0 THEN prs_key
    ELSE SUBSTR(prs_key, 1, (instr(prs_key, ':')-1) ) END) first_val
    FROM
    (SELECT fedtaxpk.fedtaxpk_pkg.GETFIELDDATAGROUPSEQKEY(164415 --?
    ) prs_key
    FROM dual
    grs AS
    (SELECT prs.*, fd.fielddata_group_sequence fd_grpseq
    FROM prs, fielddata fd, le_hb
    WHERE prs.first_val = fd.fielddata_value
    AND le_hb.legalentity_id = fd.legalentity_id
    AND le_hb.hyperionbase_id = fd.hyperionbase_id),
    fdk AS
    (SELECT
    cd.celldef_id, fedtaxpk.fedtaxpk_pkg.GETFIELDDATAGROUPSEQKEY(fd.fielddata_group_sequence) fd_key,
    fd.fielddata_value fd_val, fd.fielddata_group_sequence fd_grpseq,
    ROW_NUMBER() OVER (PARTITION BY cd.celldef_id, fedtaxpk.fedtaxpk_pkg.GETFIELDDATAGROUPSEQKEY(fd.fielddata_group_sequence)
    ORDER BY fd.fielddata_group_sequence) rn,
    grs.prs_key
    FROM le_hb, grs, fielddata fd, tablecell tc, celldef cd, tabledef td, appusage au
    WHERE le_hb.legalentity_id = fd.legalentity_id AND le_hb.hyperionbase_id = fd.hyperionbase_id
    AND fd.fielddata_id = tc.fielddata_id AND tc.celldef_id = cd.celldef_id
    AND cd.tabledef_id = td.tabledef_id
    AND grs.fd_grpseq = fd.fielddata_parent_row_sequence
    and grs.prs_key = fedtaxpk.fedtaxpk_pkg.GETFIELDDATAGROUPSEQKEY(fd.fielddata_parent_row_sequence)
    AND cd.celldef_key_ind = 'Y'
    AND fd.fielddata_delete_ind = 'N'
    AND td.tabledef_id = 2265
    fda AS
    (SELECT
    cd.celldef_id, fedtaxpk.fedtaxpk_pkg.GETFIELDDATAGROUPSEQKEY(fd.fielddata_group_sequence) fd_key,
    TO_CHAR(TO_NUMBER(SUM(fd.fielddata_value))) fd_val,
    MIN(fd.fielddata_group_sequence) fd_grpseq,
    grs.prs_key
    FROM le_hb, grs, fielddata fd, tablecell tc, celldef cd, tabledef td
    WHERE le_hb.legalentity_id = fd.legalentity_id AND le_hb.hyperionbase_id = fd.hyperionbase_id
    AND fd.fielddata_id = tc.fielddata_id AND tc.celldef_id = cd.celldef_id
    AND cd.tabledef_id = td.tabledef_id
    AND grs.fd_grpseq = fd.fielddata_parent_row_sequence
    and grs.prs_key = fedtaxpk.fedtaxpk_pkg.GETFIELDDATAGROUPSEQKEY(fd.fielddata_parent_row_sequence)
    AND cd.celldef_adjustable_ind = 'Y'
    AND fd.fielddata_delete_ind = 'N'
    AND td.tabledef_id = 2265
    GROUP BY cd.celldef_id, fedtaxpk.fedtaxpk_pkg.GETFIELDDATAGROUPSEQKEY(fd.fielddata_group_sequence),
    grs.prs_key
    SELECT NULL LEGALENTITY_ID, NULL hyperionbase_id, fdk.celldef_id, TO_CHAR(NULL) role_code, NULL userinfo_id, cd.celldef_adjustable_ind,
    'N' celldef_editable_ind, cd.celldef_filter_code, cd.celldef_validate_rule, cd.celldef_list_code,
    cd.celldef_longstring_ind, aua.appusageaccess_visible_ind celldef_viewable_ind,
    cd.celldef_column_sequence, cd.celldef_column_label,
    cd.celldef_column_sort_order, NULL tablecell_id, fdk.fd_grpseq tablecell_row_sequence, NULL tablecell_row_label,
    'N' tablecell_delete_ind, NULL tablecell_create_by, TO_DATE(NULL) tablecell_create_dt, TO_CHAR(NULL) tablecell_update_by,
    TO_DATE(NULL) tablecell_update_dt, NULL fielddata_id, TO_CHAR(NULL) datatype_code, NULL fielddata_adjref_id,
    fdk.fd_grpseq fielddata_group_sequence, NULL fielddata_parent_row_sequence, NULL lookup_id,
    fdk.fd_val fielddata_value, 'N' fielddata_delete_ind, TO_CHAR(NULL) fielddata_create_by,
    TO_DATE(NULL) fielddata_create_dt, TO_CHAR(NULL) fielddata_update_by, TO_DATE(NULL) fielddata_update_dt,
    fdk.fd_key
    FROM fdk, celldef cd, appusageaccess aua, au
    WHERE fdk.celldef_id = cd.celldef_id
    AND cd.celldef_id = aua.celldef_id
    AND aua.appusage_code = au.appusage_code
    AND fdk.rn = 1
    UNION ALL
    SELECT NULL LEGALENTITY_ID, NULL hyperionbase_id, fda.celldef_id, TO_CHAR(NULL) role_code, NULL userinfo_id, cd.celldef_adjustable_ind,
    'N' celldef_editable_ind, cd.celldef_filter_code, cd.celldef_validate_rule, cd.celldef_list_code,
    cd.celldef_longstring_ind, aua.appusageaccess_visible_ind celldef_viewable_ind,
    cd.celldef_column_sequence, cd.celldef_column_label,
    cd.celldef_column_sort_order, NULL tablecell_id, fda.fd_grpseq tablecell_row_sequence, NULL tablecell_row_label,
    'N' tablecell_delete_ind, NULL tablecell_create_by, TO_DATE(NULL) tablecell_create_dt, TO_CHAR(NULL) tablecell_update_by,
    TO_DATE(NULL) tablecell_update_dt, NULL fielddata_id, TO_CHAR(NULL) datatype_code, NULL fielddata_adjref_id,
    fda.fd_grpseq fielddata_group_sequence, NULL fielddata_parent_row_sequence, NULL lookup_id,
    fda.fd_val fielddata_value, 'N' fielddata_delete_ind, TO_CHAR(NULL) fielddata_create_by,
    TO_DATE(NULL) fielddata_create_dt, TO_CHAR(NULL) fielddata_update_by, TO_DATE(NULL) fielddata_update_dt,
    fda.fd_key
    FROM fda, celldef cd, appusageaccess aua, au
    WHERE fda.celldef_id = cd.celldef_id
    AND cd.celldef_id = aua.celldef_id
    AND aua.appusage_code = au.appusage_code
    ORDER BY fielddata_group_sequence, celldef_column_sequence
    Query Plan:
    Plan hash value: 522363234
    | Id | Operation | Name | Rows | Bytes | Cost (%CPU)| Time |
    | 0 | SELECT STATEMENT | | 2 | 6227 | 249 (2)| 00:00:03 |
    | 1 | TEMP TABLE TRANSFORMATION | | | | | |
    | 2 | LOAD AS SELECT | | | | | |
    |* 3 | TABLE ACCESS BY INDEX ROWID | TAXGROUP | 1 | 14 | 1 (0)| 00:00:01 |
    |* 4 | INDEX UNIQUE SCAN | PK_TAXGROUP | 1 | | 0 (0)| 00:00:01 |
    | 5 | LOAD AS SELECT | | | | | |
    | 6 | SORT UNIQUE | | 4 | 224 | 12 (59)| 00:00:01 |
    | 7 | UNION-ALL | | | | | |
    | 8 | TABLE ACCESS BY INDEX ROWID | ORGUNIT | 1 | 29 | 2 (0)| 00:00:01 |
    | 9 | NESTED LOOPS | | 1 | 56 | 5 (0)| 00:00:01 |
    | 10 | NESTED LOOPS | | 1 | 27 | 3 (0)| 00:00:01 |
    | 11 | VIEW | | 1 | 10 | 2 (0)| 00:00:01 |
    | 12 | TABLE ACCESS FULL | SYS_TEMP_0FD9D9B51_2EBE182 | 1 | 10 | 2 (0)| 00:00:01 |
    |* 13 | TABLE ACCESS BY INDEX ROWID | TAXGROUPITEM | 1 | 17 | 1 (0)| 00:00:01 |
    |* 14 | INDEX RANGE SCAN | XF1_TAXGROUPITEM_TAXGROUP | 1 | | 0 (0)| 00:00:01 |
    |* 15 | INDEX RANGE SCAN | XF1_ORGUNIT_ID | 1 | | 1 (0)| 00:00:01 |
    | 16 | TABLE ACCESS BY INDEX ROWID | ORGUNIT | 3 | 87 | 2 (0)| 00:00:01 |
    | 17 | NESTED LOOPS | | 3 | 168 | 5 (0)| 00:00:01 |
    | 18 | NESTED LOOPS | | 1 | 27 | 3 (0)| 00:00:01 |
    | 19 | VIEW | | 1 | 10 | 2 (0)| 00:00:01 |
    | 20 | TABLE ACCESS FULL | SYS_TEMP_0FD9D9B51_2EBE182 | 1 | 10 | 2 (0)| 00:00:01 |
    |* 21 | TABLE ACCESS BY INDEX ROWID | TAXGROUPITEM | 1 | 17 | 1 (0)| 00:00:01 |
    |* 22 | INDEX RANGE SCAN | XF1_TAXGROUPITEM_TAXGROUP | 1 | | 0 (0)| 00:00:01 |
    |* 23 | INDEX RANGE SCAN | XF1_ORGUNIT_ID | 3 | | 1 (0)| 00:00:01 |
    | 24 | LOAD AS SELECT | | | | | |
    |* 25 | INDEX UNIQUE SCAN | PK_APPUSAGE | 1 | 10 | 0 (0)| 00:00:01 |
    | 26 | LOAD AS SELECT | | | | | |
    |* 27 | TABLE ACCESS BY INDEX ROWID | FIELDDATA | 7 | 147 | 28 (0)| 00:00:01 |
    | 28 | NESTED LOOPS | | 27 | 1269 | 117 (1)| 00:00:02 |
    | 29 | NESTED LOOPS | | 4 | 104 | 4 (0)| 00:00:01 |
    | 30 | FAST DUAL | | 1 | | 2 (0)| 00:00:01 |
    | 31 | VIEW | | 4 | 104 | 2 (0)| 00:00:01 |
    | 32 | TABLE ACCESS FULL | SYS_TEMP_0FD9D9B52_2EBE182 | 4 | 388 | 2 (0)| 00:00:01 |
    |* 33 | INDEX RANGE SCAN | XF11_DATA_LE_HB | 117 | | 12 (0)| 00:00:01 |
    | 34 | SORT ORDER BY | | 2 | 6227 | 248 (51)| 00:00:03 |
    | 35 | UNION-ALL | | | | | |
    | 36 | NESTED LOOPS | | 1 | 4110 | 125 (2)| 00:00:02 |
    | 37 | MERGE JOIN CARTESIAN | | 1 | 4093 | 124 (2)| 00:00:02 |
    | 38 | NESTED LOOPS | | 1 | 4076 | 122 (2)| 00:00:02 |
    |* 39 | VIEW | | 1 | 4043 | 121 (2)| 00:00:02 |
    |* 40 | WINDOW SORT PUSHED RANK | | 1 | 2099 | 121 (2)| 00:00:02 |
    | 41 | MERGE JOIN CARTESIAN | | 1 | 2099 | 120 (1)| 00:00:02 |
    | 42 | NESTED LOOPS | | 1 | 2099 | 119 (1)| 00:00:02 |
    | 43 | NESTED LOOPS | | 1 | 2088 | 118 (1)| 00:00:02 |
    |* 44 | HASH JOIN | | 1 | 2077 | 117 (1)| 00:00:02 |
    |* 45 | TABLE ACCESS BY INDEX ROWID| FIELDDATA | 117 | 3744 | 28 (0)| 00:00:01 |
    | 46 | NESTED LOOPS | | 466 | 28892 | 114 (0)| 00:00:02 |
    | 47 | NESTED LOOPS | | 4 | 120 | 2 (0)| 00:00:01 |
    |* 48 | INDEX UNIQUE SCAN | PK_TABLEDEF | 1 | 4 | 0 (0)| 00:00:01 |
    | 49 | VIEW | | 4 | 104 | 2 (0)| 00:00:01 |
    | 50 | TABLE ACCESS FULL | SYS_TEMP_0FD9D9B52_2EBE182 | 4 | 388 | 2 (0)| 00:00:01 |
    |* 51 | INDEX RANGE SCAN | XF11_DATA_LE_HB | 117 | | 12 (0)| 00:00:01 |
    | 52 | VIEW | | 27 | 54405 | 2 (0)| 00:00:01 |
    | 53 | TABLE ACCESS FULL | SYS_TEMP_0FD9D9B54_2EBE182 | 27 | 1269 | 2 (0)| 00:00:01 |
    | 54 | TABLE ACCESS BY INDEX ROWID | TABLECELL | 1 | 11 | 1 (0)| 00:00:01 |
    |* 55 | INDEX UNIQUE SCAN | XF1_TBLCEL_DATA | 1 | | 0 (0)| 00:00:01 |
    |* 56 | TABLE ACCESS BY INDEX ROWID | CELLDEF | 1 | 11 | 1 (0)| 00:00:01 |
    |* 57 | INDEX UNIQUE SCAN | PK_CELLDEF | 1 | | 0 (0)| 00:00:01 |
    | 58 | BUFFER SORT | | 5 | | 120 (2)| 00:00:02 |
    | 59 | INDEX FULL SCAN | PK_APPUSAGE | 5 | | 1 (0)| 00:00:01 |
    | 60 | TABLE ACCESS BY INDEX ROWID | CELLDEF | 1 | 33 | 1 (0)| 00:00:01 |
    |* 61 | INDEX UNIQUE SCAN | PK_CELLDEF | 1 | | 0 (0)| 00:00:01 |
    | 62 | BUFFER SORT | | 1 | 17 | 123 (2)| 00:00:02 |
    | 63 | VIEW | | 1 | 17 | 2 (0)| 00:00:01 |
    | 64 | TABLE ACCESS FULL | SYS_TEMP_0FD9D9B53_2EBE182 | 1 | 10 | 2 (0)| 00:00:01 |
    | 65 | TABLE ACCESS BY INDEX ROWID | APPUSAGEACCESS | 1 | 17 | 1 (0)| 00:00:01 |
    |* 66 | INDEX UNIQUE SCAN | AK_APPUSAGEACCESS | 1 | | 0 (0)| 00:00:01 |
    | 67 | NESTED LOOPS | | 1 | 2117 | 124 (2)| 00:00:02 |
    | 68 | MERGE JOIN CARTESIAN | | 1 | 2100 | 123 (2)| 00:00:02 |
    | 69 | NESTED LOOPS | | 1 | 2083 | 121 (2)| 00:00:02 |
    | 70 | VIEW | | 1 | 2050 | 120 (2)| 00:00:02 |
    | 71 | HASH GROUP BY | | 1 | 2091 | 120 (2)| 00:00:02 |
    | 72 | NESTED LOOPS | | 1 | 2091 | 119 (1)| 00:00:02 |
    | 73 | NESTED LOOPS | | 1 | 2080 | 118 (1)| 00:00:02 |
    |* 74 | HASH JOIN | | 1 | 2069 | 117 (1)| 00:00:02 |
    |* 75 | TABLE ACCESS BY INDEX ROWID | FIELDDATA | 117 | 3744 | 28 (0)| 00:00:01 |
    | 76 | NESTED LOOPS | | 466 | 28892 | 114 (0)| 00:00:02 |
    | 77 | NESTED LOOPS | | 4 | 120 | 2 (0)| 00:00:01 |
    |* 78 | INDEX UNIQUE SCAN | PK_TABLEDEF | 1 | 4 | 0 (0)| 00:00:01 |
    | 79 | VIEW | | 4 | 104 | 2 (0)| 00:00:01 |
    | 80 | TABLE ACCESS FULL | SYS_TEMP_0FD9D9B52_2EBE182 | 4 | 388 | 2 (0)| 00:00:01 |
    |* 81 | INDEX RANGE SCAN | XF11_DATA_LE_HB | 117 | | 12 (0)| 00:00:01 |
    | 82 | VIEW | | 27 | 54189 | 2 (0)| 00:00:01 |
    | 83 | TABLE ACCESS FULL | SYS_TEMP_0FD9D9B54_2EBE182 | 27 | 1269 | 2 (0)| 00:00:01 |
    | 84 | TABLE ACCESS BY INDEX ROWID | TABLECELL | 1 | 11 | 1 (0)| 00:00:01 |
    |* 85 | INDEX UNIQUE SCAN | XF1_TBLCEL_DATA | 1 | | 0 (0)| 00:00:01 |
    |* 86 | TABLE ACCESS BY INDEX ROWID | CELLDEF | 1 | 11 | 1 (0)| 00:00:01 |
    |* 87 | INDEX UNIQUE SCAN | PK_CELLDEF | 1 | | 0 (0)| 00:00:01 |
    | 88 | TABLE ACCESS BY INDEX ROWID | CELLDEF | 1 | 33 | 1 (0)| 00:00:01 |
    |* 89 | INDEX UNIQUE SCAN | PK_CELLDEF | 1 | | 0 (0)| 00:00:01 |
    | 90 | BUFFER SORT | | 1 | 17 | 122 (2)| 00:00:02 |
    | 91 | VIEW | | 1 | 17 | 2 (0)| 00:00:01 |
    | 92 | TABLE ACCESS FULL | SYS_TEMP_0FD9D9B53_2EBE182 | 1 | 10 | 2 (0)| 00:00:01 |
    | 93 | TABLE ACCESS BY INDEX ROWID | APPUSAGEACCESS | 1 | 17 | 1 (0)| 00:00:01 |
    |* 94 | INDEX UNIQUE SCAN | AK_APPUSAGEACCESS | 1 | | 0 (0)| 00:00:01 |
    Predicate Information (identified by operation id):
    3 - filter("TAXGROUP_DELETE_IND"='N' AND "TAXGROUP_ACTIVE_IND"='A')
    4 - access("TAXGROUP_CODE"='TAXGROUP2')
    13 - filter("TGI"."HYPERIONBASE_ID" IS NOT NULL)
    14 - access("TG"."TAXGROUP_CODE"="TGI"."TAXGROUP_CODE")
    15 - access("TGI"."LEGALENTITY_ID"="OU"."ORGUNIT_ID" AND "TGI"."HYPERIONBASE_ID"="OU"."HYPERIONBASE_ID")
    21 - filter("TGI"."HYPERIONBASE_ID" IS NULL)
    22 - access("TG"."TAXGROUP_CODE"="TGI"."TAXGROUP_CODE")
    23 - access("TGI"."LEGALENTITY_ID"="OU"."ORGUNIT_ID")
    25 - access("APPUSAGE_CODE"='CONSOLIDATION')
    27 - filter("FD"."FIELDDATA_VALUE"=CASE INSTR("FEDTAXPK_PKG"."GETFIELDDATAGROUPSEQKEY"(164415),':') WHEN 0
    THEN "FEDTAXPK_PKG"."GETFIELDDATAGROUPSEQKEY"(164415) ELSE
    SUBSTR("FEDTAXPK_PKG"."GETFIELDDATAGROUPSEQKEY"(164415),1,INSTR("FEDTAXPK_PKG"."GETFIELDDATAGROUPSEQKEY"(16441
    5),':')-1) END )
    33 - access("LE_HB"."LEGALENTITY_ID"="FD"."LEGALENTITY_ID" AND
    "LE_HB"."HYPERIONBASE_ID"="FD"."HYPERIONBASE_ID")
    39 - filter("FDK"."RN"=1)
    40 - filter(ROW_NUMBER() OVER ( PARTITION BY "CD"."CELLDEF_ID","FEDTAXPK_PKG"."GETFIELDDATAGROUPSEQKEY"("FD"
    ."FIELDDATA_GROUP_SEQUENCE") ORDER BY "FD"."FIELDDATA_GROUP_SEQUENCE")<=1)
    44 - access("GRS"."FD_GRPSEQ"="FD"."FIELDDATA_PARENT_ROW_SEQUENCE" AND
    "GRS"."PRS_KEY"="FEDTAXPK_PKG"."GETFIELDDATAGROUPSEQKEY"("FD"."FIELDDATA_PARENT_ROW_SEQUENCE"))
    45 - filter("FD"."FIELDDATA_DELETE_IND"='N')
    48 - access("TD"."TABLEDEF_ID"=2265)
    51 - access("LE_HB"."LEGALENTITY_ID"="FD"."LEGALENTITY_ID" AND
    "LE_HB"."HYPERIONBASE_ID"="FD"."HYPERIONBASE_ID")
    55 - access("FD"."FIELDDATA_ID"="TC"."FIELDDATA_ID")
    56 - filter("CD"."TABLEDEF_ID"=2265 AND "CD"."CELLDEF_KEY_IND"='Y')
    57 - access("TC"."CELLDEF_ID"="CD"."CELLDEF_ID")
    61 - access("FDK"."CELLDEF_ID"="CD"."CELLDEF_ID")
    66 - access("AUA"."APPUSAGE_CODE"="AU"."APPUSAGE_CODE" AND "CD"."CELLDEF_ID"="AUA"."CELLDEF_ID")
    74 - access("GRS"."FD_GRPSEQ"="FD"."FIELDDATA_PARENT_ROW_SEQUENCE" AND
    "GRS"."PRS_KEY"="FEDTAXPK_PKG"."GETFIELDDATAGROUPSEQKEY"("FD"."FIELDDATA_PARENT_ROW_SEQUENCE"))
    75 - filter("FD"."FIELDDATA_DELETE_IND"='N')
    78 - access("TD"."TABLEDEF_ID"=2265)
    81 - access("LE_HB"."LEGALENTITY_ID"="FD"."LEGALENTITY_ID" AND
    "LE_HB"."HYPERIONBASE_ID"="FD"."HYPERIONBASE_ID")
    85 - access("FD"."FIELDDATA_ID"="TC"."FIELDDATA_ID")
    86 - filter("CD"."TABLEDEF_ID"=2265 AND "CD"."CELLDEF_ADJUSTABLE_IND"='Y')
    87 - access("TC"."CELLDEF_ID"="CD"."CELLDEF_ID")
    89 - access("FDA"."CELLDEF_ID"="CD"."CELLDEF_ID")
    94 - access("AUA"."APPUSAGE_CODE"="AU"."APPUSAGE_CODE" AND "CD"."CELLDEF_ID"="AUA"."CELLDEF_ID")

    Thanks cd.
    Here's the query plan:
    Query Plan:
    Plan hash value: 522363234
    | Id  | Operation                               | Name                       | Rows  | Bytes | Cost (%CPU)| Time     |
    |   0 | SELECT STATEMENT                        |                            |     2 |  6227 |   249   (2)| 00:00:03 |
    |   1 |  TEMP TABLE TRANSFORMATION              |                            |       |       |            |          |
    |   2 |   LOAD AS SELECT                        |                            |       |       |            |          |
    |*  3 |    TABLE ACCESS BY INDEX ROWID          | TAXGROUP                   |     1 |    14 |     1   (0)| 00:00:01 |
    |*  4 |     INDEX UNIQUE SCAN                   | PK_TAXGROUP                |     1 |       |     0   (0)| 00:00:01 |
    |   5 |   LOAD AS SELECT                        |                            |       |       |            |          |
    |   6 |    SORT UNIQUE                          |                            |     4 |   224 |    12  (59)| 00:00:01 |
    |   7 |     UNION-ALL                           |                            |       |       |            |          |
    |   8 |      TABLE ACCESS BY INDEX ROWID        | ORGUNIT                    |     1 |    29 |     2   (0)| 00:00:01 |
    |   9 |       NESTED LOOPS                      |                            |     1 |    56 |     5   (0)| 00:00:01 |
    |  10 |        NESTED LOOPS                     |                            |     1 |    27 |     3   (0)| 00:00:01 |
    |  11 |         VIEW                            |                            |     1 |    10 |     2   (0)| 00:00:01 |
    |  12 |          TABLE ACCESS FULL              | SYS_TEMP_0FD9D9B51_2EBE182 |     1 |    10 |     2   (0)| 00:00:01 |
    |* 13 |         TABLE ACCESS BY INDEX ROWID     | TAXGROUPITEM               |     1 |    17 |     1   (0)| 00:00:01 |
    |* 14 |          INDEX RANGE SCAN               | XF1_TAXGROUPITEM_TAXGROUP  |     1 |       |     0   (0)| 00:00:01 |
    |* 15 |        INDEX RANGE SCAN                 | XF1_ORGUNIT_ID             |     1 |       |     1   (0)| 00:00:01 |
    |  16 |      TABLE ACCESS BY INDEX ROWID        | ORGUNIT                    |     3 |    87 |     2   (0)| 00:00:01 |
    |  17 |       NESTED LOOPS                      |                            |     3 |   168 |     5   (0)| 00:00:01 |
    |  18 |        NESTED LOOPS                     |                            |     1 |    27 |     3   (0)| 00:00:01 |
    |  19 |         VIEW                            |                            |     1 |    10 |     2   (0)| 00:00:01 |
    |  20 |          TABLE ACCESS FULL              | SYS_TEMP_0FD9D9B51_2EBE182 |     1 |    10 |     2   (0)| 00:00:01 |
    |* 21 |         TABLE ACCESS BY INDEX ROWID     | TAXGROUPITEM               |     1 |    17 |     1   (0)| 00:00:01 |
    |* 22 |          INDEX RANGE SCAN               | XF1_TAXGROUPITEM_TAXGROUP  |     1 |       |     0   (0)| 00:00:01 |
    |* 23 |        INDEX RANGE SCAN                 | XF1_ORGUNIT_ID             |     3 |       |     1   (0)| 00:00:01 |
    |  24 |   LOAD AS SELECT                        |                            |       |       |            |          |
    |* 25 |    INDEX UNIQUE SCAN                    | PK_APPUSAGE                |     1 |    10 |     0   (0)| 00:00:01 |
    |  26 |   LOAD AS SELECT                        |                            |       |       |            |          |
    |* 27 |    TABLE ACCESS BY INDEX ROWID          | FIELDDATA                  |     7 |   147 |    28   (0)| 00:00:01 |
    |  28 |     NESTED LOOPS                        |                            |    27 |  1269 |   117   (1)| 00:00:02 |
    |  29 |      NESTED LOOPS                       |                            |     4 |   104 |     4   (0)| 00:00:01 |
    |  30 |       FAST DUAL                         |                            |     1 |       |     2   (0)| 00:00:01 |
    |  31 |       VIEW                              |                            |     4 |   104 |     2   (0)| 00:00:01 |
    |  32 |        TABLE ACCESS FULL                | SYS_TEMP_0FD9D9B52_2EBE182 |     4 |   388 |     2   (0)| 00:00:01 |
    |* 33 |      INDEX RANGE SCAN                   | XF11_DATA_LE_HB            |   117 |       |    12   (0)| 00:00:01 |
    |  34 |   SORT ORDER BY                         |                            |     2 |  6227 |   248  (51)| 00:00:03 |
    |  35 |    UNION-ALL                            |                            |       |       |            |          |
    |  36 |     NESTED LOOPS                        |                            |     1 |  4110 |   125   (2)| 00:00:02 |
    |  37 |      MERGE JOIN CARTESIAN               |                            |     1 |  4093 |   124   (2)| 00:00:02 |
    |  38 |       NESTED LOOPS                      |                            |     1 |  4076 |   122   (2)| 00:00:02 |
    |* 39 |        VIEW                             |                            |     1 |  4043 |   121   (2)| 00:00:02 |
    |* 40 |         WINDOW SORT PUSHED RANK         |                            |     1 |  2099 |   121   (2)| 00:00:02 |
    |  41 |          MERGE JOIN CARTESIAN           |                            |     1 |  2099 |   120   (1)| 00:00:02 |
    |  42 |           NESTED LOOPS                  |                            |     1 |  2099 |   119   (1)| 00:00:02 |
    |  43 |            NESTED LOOPS                 |                            |     1 |  2088 |   118   (1)| 00:00:02 |
    |* 44 |             HASH JOIN                   |                            |     1 |  2077 |   117   (1)| 00:00:02 |
    |* 45 |              TABLE ACCESS BY INDEX ROWID| FIELDDATA                  |   117 |  3744 |    28   (0)| 00:00:01 |
    |  46 |               NESTED LOOPS              |                            |   466 | 28892 |   114   (0)| 00:00:02 |
    |  47 |                NESTED LOOPS             |                            |     4 |   120 |     2   (0)| 00:00:01 |
    |* 48 |                 INDEX UNIQUE SCAN       | PK_TABLEDEF                |     1 |     4 |     0   (0)| 00:00:01 |
    |  49 |                 VIEW                    |                            |     4 |   104 |     2   (0)| 00:00:01 |
    |  50 |                  TABLE ACCESS FULL      | SYS_TEMP_0FD9D9B52_2EBE182 |     4 |   388 |     2   (0)| 00:00:01 |
    |* 51 |                INDEX RANGE SCAN         | XF11_DATA_LE_HB            |   117 |       |    12   (0)| 00:00:01 |
    |  52 |              VIEW                       |                            |    27 | 54405 |     2   (0)| 00:00:01 |
    |  53 |               TABLE ACCESS FULL         | SYS_TEMP_0FD9D9B54_2EBE182 |    27 |  1269 |     2   (0)| 00:00:01 |
    |  54 |             TABLE ACCESS BY INDEX ROWID | TABLECELL                  |     1 |    11 |     1   (0)| 00:00:01 |
    |* 55 |              INDEX UNIQUE SCAN          | XF1_TBLCEL_DATA            |     1 |       |     0   (0)| 00:00:01 |
    |* 56 |            TABLE ACCESS BY INDEX ROWID  | CELLDEF                    |     1 |    11 |     1   (0)| 00:00:01 |
    |* 57 |             INDEX UNIQUE SCAN           | PK_CELLDEF                 |     1 |       |     0   (0)| 00:00:01 |
    |  58 |           BUFFER SORT                   |                            |     5 |       |   120   (2)| 00:00:02 |
    |  59 |            INDEX FULL SCAN              | PK_APPUSAGE                |     5 |       |     1   (0)| 00:00:01 |
    |  60 |        TABLE ACCESS BY INDEX ROWID      | CELLDEF                    |     1 |    33 |     1   (0)| 00:00:01 |
    |* 61 |         INDEX UNIQUE SCAN               | PK_CELLDEF                 |     1 |       |     0   (0)| 00:00:01 |
    |  62 |       BUFFER SORT                       |                            |     1 |    17 |   123   (2)| 00:00:02 |
    |  63 |        VIEW                             |                            |     1 |    17 |     2   (0)| 00:00:01 |
    |  64 |         TABLE ACCESS FULL               | SYS_TEMP_0FD9D9B53_2EBE182 |     1 |    10 |     2   (0)| 00:00:01 |
    |  65 |      TABLE ACCESS BY INDEX ROWID        | APPUSAGEACCESS             |     1 |    17 |     1   (0)| 00:00:01 |
    |* 66 |       INDEX UNIQUE SCAN                 | AK_APPUSAGEACCESS          |     1 |       |     0   (0)| 00:00:01 |
    |  67 |     NESTED LOOPS                        |                            |     1 |  2117 |   124   (2)| 00:00:02 |
    |  68 |      MERGE JOIN CARTESIAN               |                            |     1 |  2100 |   123   (2)| 00:00:02 |
    |  69 |       NESTED LOOPS                      |                            |     1 |  2083 |   121   (2)| 00:00:02 |
    |  70 |        VIEW                             |                            |     1 |  2050 |   120   (2)| 00:00:02 |
    |  71 |         HASH GROUP BY                   |                            |     1 |  2091 |   120   (2)| 00:00:02 |
    |  72 |          NESTED LOOPS                   |                            |     1 |  2091 |   119   (1)| 00:00:02 |
    |  73 |           NESTED LOOPS                  |                            |     1 |  2080 |   118   (1)| 00:00:02 |
    |* 74 |            HASH JOIN                    |                            |     1 |  2069 |   117   (1)| 00:00:02 |
    |* 75 |             TABLE ACCESS BY INDEX ROWID | FIELDDATA                  |   117 |  3744 |    28   (0)| 00:00:01 |
    |  76 |              NESTED LOOPS               |                            |   466 | 28892 |   114   (0)| 00:00:02 |
    |  77 |               NESTED LOOPS              |                            |     4 |   120 |     2   (0)| 00:00:01 |
    |* 78 |                INDEX UNIQUE SCAN        | PK_TABLEDEF                |     1 |     4 |     0   (0)| 00:00:01 |
    |  79 |                VIEW                     |                            |     4 |   104 |     2   (0)| 00:00:01 |
    |  80 |                 TABLE ACCESS FULL       | SYS_TEMP_0FD9D9B52_2EBE182 |     4 |   388 |     2   (0)| 00:00:01 |
    |* 81 |               INDEX RANGE SCAN          | XF11_DATA_LE_HB            |   117 |       |    12   (0)| 00:00:01 |
    |  82 |             VIEW                        |                            |    27 | 54189 |     2   (0)| 00:00:01 |
    |  83 |              TABLE ACCESS FULL          | SYS_TEMP_0FD9D9B54_2EBE182 |    27 |  1269 |     2   (0)| 00:00:01 |
    |  84 |            TABLE ACCESS BY INDEX ROWID  | TABLECELL                  |     1 |    11 |     1   (0)| 00:00:01 |
    |* 85 |             INDEX UNIQUE SCAN           | XF1_TBLCEL_DATA            |     1 |       |     0   (0)| 00:00:01 |
    |* 86 |           TABLE ACCESS BY INDEX ROWID   | CELLDEF                    |     1 |    11 |     1   (0)| 00:00:01 |
    |* 87 |            INDEX UNIQUE SCAN            | PK_CELLDEF                 |     1 |       |     0   (0)| 00:00:01 |
    |  88 |        TABLE ACCESS BY INDEX ROWID      | CELLDEF                    |     1 |    33 |     1   (0)| 00:00:01 |
    |* 89 |         INDEX UNIQUE SCAN               | PK_CELLDEF                 |     1 |       |     0   (0)| 00:00:01 |
    |  90 |       BUFFER SORT                       |                            |     1 |    17 |   122   (2)| 00:00:02 |
    |  91 |        VIEW                             |                            |     1 |    17 |     2   (0)| 00:00:01 |
    |  92 |         TABLE ACCESS FULL               | SYS_TEMP_0FD9D9B53_2EBE182 |     1 |    10 |     2   (0)| 00:00:01 |
    |  93 |      TABLE ACCESS BY INDEX ROWID        | APPUSAGEACCESS             |     1 |    17 |     1   (0)| 00:00:01 |
    |* 94 |       INDEX UNIQUE SCAN                 | AK_APPUSAGEACCESS          |     1 |       |     0   (0)| 00:00:01 |
    ---------------------------------------------------------------------------------------------------------------------- Predicate Information (identified by operation id):
       3 - filter("TAXGROUP_DELETE_IND"='N' AND "TAXGROUP_ACTIVE_IND"='A')
       4 - access("TAXGROUP_CODE"='TAXGROUP2')
      13 - filter("TGI"."HYPERIONBASE_ID" IS NOT NULL)
      14 - access("TG"."TAXGROUP_CODE"="TGI"."TAXGROUP_CODE")
      15 - access("TGI"."LEGALENTITY_ID"="OU"."ORGUNIT_ID" AND "TGI"."HYPERIONBASE_ID"="OU"."HYPERIONBASE_ID")
      21 - filter("TGI"."HYPERIONBASE_ID" IS NULL)
      22 - access("TG"."TAXGROUP_CODE"="TGI"."TAXGROUP_CODE")
      23 - access("TGI"."LEGALENTITY_ID"="OU"."ORGUNIT_ID")
      25 - access("APPUSAGE_CODE"='CONSOLIDATION')
      27 - filter("FD"."FIELDDATA_VALUE"=CASE INSTR("FEDTAXPK_PKG"."GETFIELDDATAGROUPSEQKEY"(164415),':') WHEN 0
                  THEN "FEDTAXPK_PKG"."GETFIELDDATAGROUPSEQKEY"(164415) ELSE
                  SUBSTR("FEDTAXPK_PKG"."GETFIELDDATAGROUPSEQKEY"(164415),1,INSTR("FEDTAXPK_PKG"."GETFIELDDATAGROUPSEQKEY"(16441
                  5),':')-1) END )
      33 - access("LE_HB"."LEGALENTITY_ID"="FD"."LEGALENTITY_ID" AND
                  "LE_HB"."HYPERIONBASE_ID"="FD"."HYPERIONBASE_ID")
      39 - filter("FDK"."RN"=1)
      40 - filter(ROW_NUMBER() OVER ( PARTITION BY "CD"."CELLDEF_ID","FEDTAXPK_PKG"."GETFIELDDATAGROUPSEQKEY"("FD"
                  ."FIELDDATA_GROUP_SEQUENCE") ORDER BY "FD"."FIELDDATA_GROUP_SEQUENCE")<=1)
      44 - access("GRS"."FD_GRPSEQ"="FD"."FIELDDATA_PARENT_ROW_SEQUENCE" AND
                  "GRS"."PRS_KEY"="FEDTAXPK_PKG"."GETFIELDDATAGROUPSEQKEY"("FD"."FIELDDATA_PARENT_ROW_SEQUENCE"))
      45 - filter("FD"."FIELDDATA_DELETE_IND"='N')
      48 - access("TD"."TABLEDEF_ID"=2265)
      51 - access("LE_HB"."LEGALENTITY_ID"="FD"."LEGALENTITY_ID" AND
                  "LE_HB"."HYPERIONBASE_ID"="FD"."HYPERIONBASE_ID")
      55 - access("FD"."FIELDDATA_ID"="TC"."FIELDDATA_ID")
      56 - filter("CD"."TABLEDEF_ID"=2265 AND "CD"."CELLDEF_KEY_IND"='Y')
      57 - access("TC"."CELLDEF_ID"="CD"."CELLDEF_ID")
      61 - access("FDK"."CELLDEF_ID"="CD"."CELLDEF_ID")
      66 - access("AUA"."APPUSAGE_CODE"="AU"."APPUSAGE_CODE" AND "CD"."CELLDEF_ID"="AUA"."CELLDEF_ID")
      74 - access("GRS"."FD_GRPSEQ"="FD"."FIELDDATA_PARENT_ROW_SEQUENCE" AND
                  "GRS"."PRS_KEY"="FEDTAXPK_PKG"."GETFIELDDATAGROUPSEQKEY"("FD"."FIELDDATA_PARENT_ROW_SEQUENCE"))
      75 - filter("FD"."FIELDDATA_DELETE_IND"='N')
      78 - access("TD"."TABLEDEF_ID"=2265)
      81 - access("LE_HB"."LEGALENTITY_ID"="FD"."LEGALENTITY_ID" AND
                  "LE_HB"."HYPERIONBASE_ID"="FD"."HYPERIONBASE_ID")
      85 - access("FD"."FIELDDATA_ID"="TC"."FIELDDATA_ID")
      86 - filter("CD"."TABLEDEF_ID"=2265 AND "CD"."CELLDEF_ADJUSTABLE_IND"='Y')
      87 - access("TC"."CELLDEF_ID"="CD"."CELLDEF_ID")
      89 - access("FDA"."CELLDEF_ID"="CD"."CELLDEF_ID")
      94 - access("AUA"."APPUSAGE_CODE"="AU"."APPUSAGE_CODE" AND "CD"."CELLDEF_ID"="AUA"."CELLDEF_ID")

  • Audition CC crashes on launch with 'unexpected error'

    Trying to get to the bottom of a problem I just noticed today, recently installed CC programs; After Effects, Audition, Premiere Pro, Speedgrade and Encoder. All work fine except Audition which crashes on launch with an 'unexpected error'.
    On initial install a few days ago, I believe I remember it opening the first time. Since then there has been an update I have downloaded - perhaps bringing with it this issue.
    Have searched the forums to find the Debug Database.txt solution - tried it, failed. Have talked to support who could only send me here for more help.
    I am only a trial user at this point in time, with intentions of upgrading - but obviously this is one of the reasons for a 'trial period'.
    Help is appreciated. Pasted below is a log of the crash report. Thank you!
    Process:         Adobe Audition CC [627]
    Path:            /Applications/Adobe Audition CC/Adobe Audition CC.app/Contents/MacOS/Adobe Audition CC
    Identifier:      com.adobe.Audition.6.0
    Version:         6.0x732 (6.0)
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [156]
    User ID:         501
    Date/Time:       2013-08-20 21:07:27.720 +1000
    OS Version:      Mac OS X 10.8.4 (12E55)
    Report Version:  10
    Interval Since Last Report:          1453235 sec
    Crashes Since Last Report:           27
    Per-App Interval Since Last Report:  228 sec
    Per-App Crashes Since Last Report:   14
    Anonymous UUID:                      CDBC8830-A383-C719-FD47-7152F6447094
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_CRASH (SIGABRT)
    Exception Codes: 0x0000000000000000, 0x0000000000000000
    Application Specific Information:
    terminate called throwing an exception
    abort() called
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   libsystem_kernel.dylib                  0x00007fff8b9e0212 __pthread_kill + 10
    1   libsystem_c.dylib                       0x00007fff8db91b54 pthread_kill + 90
    2   libsystem_c.dylib                       0x00007fff8dbd5dce abort + 143
    3   libc++abi.dylib                         0x00007fff9067b9eb abort_message + 257
    4   libc++abi.dylib                         0x00007fff9067939a default_terminate() + 28
    5   libobjc.A.dylib                         0x00007fff8a257887 _objc_terminate() + 111
    6   libc++abi.dylib                         0x00007fff906793c9 safe_handler_caller(void (*)()) + 8
    7   libc++abi.dylib                         0x00007fff90679424 std::terminate() + 16
    8   libc++abi.dylib                         0x00007fff9067a58b __cxa_throw + 111
    9   com.adobe.auui.framework                0x00000001050a4c98 aui::ErrorManager::ThrowError(dvacore::config::ErrorLevel, char const*, unsigned int, int, bool, dvacore::config::ReplacementValue const&, dvacore::config::ReplacementValue const&, dvacore::config::ReplacementValue const&, dvacore::config::ReplacementValue const&) const + 120
    10  com.adobe.dvacore.framework             0x00000001000b8b12 dvacore::config::ThrowError(dvacore::config::ErrorLevel, char const*, unsigned int, int, bool, dvacore::config::ReplacementValue const&, dvacore::config::ReplacementValue const&, dvacore::config::ReplacementValue const&, dvacore::config::ReplacementValue const&) + 226
    11  com.adobe.auui.framework                0x00000001058c0269 dvaui::drawbot::AGMFontData::ThrowFontError() const + 121
    12  com.adobe.auui.framework                0x00000001058bf363 dvaui::drawbot::AGMFontData::LoadFont(BIB_T_MT::CCTFontSet const&, std::basic_string<unsigned short, std::char_traits<unsigned short>, dvacore::utility::SmallBlockAllocator::STLAllocator<unsigned short> > const&, std::basic_string<unsigned short, std::char_traits<unsigned short>, dvacore::utility::SmallBlockAllocator::STLAllocator<unsigned short> > const&, bool, bool) + 611
    13  com.adobe.auui.framework                0x00000001058bf02f dvaui::drawbot::AGMFontData::AGMFontData(BIB_T_MT::CCTFontSet const&, std::basic_string<unsigned short, std::char_traits<unsigned short>, dvacore::utility::SmallBlockAllocator::STLAllocator<unsigned short> > const&, std::basic_string<unsigned short, std::char_traits<unsigned short>, dvacore::utility::SmallBlockAllocator::STLAllocator<unsigned short> > const&, bool, bool) + 159
    14  com.adobe.auui.framework                0x00000001058af437 dvaui::drawbot::AGMFontInterface::AGMFontInterface(dvaui::drawbot::AGMSupplier const*, unsigned short const*, unsigned short const*, float) + 1303
    15  com.adobe.auui.framework                0x00000001058a44e0 dvaui::drawbot::AGMSupplier::NewFont(unsigned short const*, unsigned short const*, float) const + 64
    16  com.adobe.dvaui.framework               0x000000010051ea77 dvaui::drawbot::FontP::FontP(dvaui::drawbot::SupplierInterface const*, unsigned short const*, unsigned short const*, float) + 55
    17  com.adobe.dvaui.framework               0x000000010066452f dvaui::controls::UI_StaticText::GetRecommendedSize_Helper(dvaui::drawbot::Drawbot*, boost::intrusive_ptr<dvaui::ui::Theme>, bool) const + 175
    18  com.adobe.dvaui.framework               0x0000000100664825 dvaui::controls::UI_StaticText::UI_GetRecommendedSize(dvaui::drawbot::Drawbot*) const + 53
    19  com.adobe.dvaui.framework               0x00000001007c7f98 dvaui::ui::(anonymous namespace)::LayoutNode::operator()(boost::intrusive_ptr<dvaui::ui::UI_Node>) + 536
    20  com.adobe.dvaui.framework               0x00000001007c781a dvaui::ui::AutoLayoutSubView(boost::intrusive_ptr<dvaui::ui::UI_SubView>, dvaui::drawbot::Drawbot*) + 1386
    21  com.adobe.dvaui.framework               0x0000000100798f05 dvaui::ui::UI_SubViewAdapter::AutoLayout(dvaui::drawbot::Drawbot*, boost::intrusive_ptr<dvaui::ui::UI_Node>, boost::intrusive_ptr<dvaui::ui::UI_Node>) const + 37
    22  com.adobe.dvaui.framework               0x00000001007cf788 dvaui::ui::UI_NodeArchive::CreateNode(boost::intrusive_ptr<dvaui::ui::UI_Node>, dvacore::proplist::PropList const&, boost::function<boost::intrusive_ptr<dvaui::ui::UI_Node> (std::basic_string<unsigned short, std::char_traits<unsigned short>, dvacore::utility::SmallBlockAllocator::STLAllocator<unsigned short> > const&)>) + 2456
    23  com.adobe.dvaui.framework               0x00000001007d00a9 dvaui::ui::UI_NodeArchive::BuildFromPropList(dvacore::proplist::PropList const&, std::map<std::basic_string<unsigned char, std::char_traits<unsigned char>, dvacore::utility::SmallBlockAllocator::STLAllocator<unsigned char> > const, dvaui::ui::UI_Node*, std::less<std::basic_string<unsigned char, std::char_traits<unsigned char>, dvacore::utility::SmallBlockAllocator::STLAllocator<unsigned char> > const>, std::allocator<std::pair<std::basic_string<unsigned char, std::char_traits<unsigned char>, dvacore::utility::SmallBlockAllocator::STLAllocator<unsigned char> > const, dvaui::ui::UI_Node*> > >&, boost::function<boost::intrusive_ptr<dvaui::ui::UI_Node> (std::basic_string<unsigned short, std::char_traits<unsigned short>, dvacore::utility::SmallBlockAllocator::STLAllocator<unsigned short> > const&)>) + 297
    24  com.adobe.dvaui.framework               0x00000001007d062d dvaui::ui::UI_NodeBuilder::Build(dvaui::drawbot::SupplierInterface const*, std::map<std::basic_string<unsigned char, std::char_traits<unsigned char>, dvacore::utility::SmallBlockAllocator::STLAllocator<unsigned char> > const, dvaui::ui::UI_Node*, std::less<std::basic_string<unsigned char, std::char_traits<unsigned char>, dvacore::utility::SmallBlockAllocator::STLAllocator<unsigned char> > const>, std::allocator<std::pair<std::basic_string<unsigned char, std::char_traits<unsigned char>, dvacore::utility::SmallBlockAllocator::STLAllocator<unsigned char> > const, dvaui::ui::UI_Node*> > >&, boost::function<boost::intrusive_ptr<dvaui::ui::UI_Node> (std::basic_string<unsigned short, std::char_traits<unsigned short>, dvacore::utility::SmallBlockAllocator::STLAllocator<unsigned short> > const&)>) const + 173
    25  com.adobe.dvaui.framework               0x0000000100751033 dvaui::sharedui::DVAAboutDlog::ConstructCommon(dvaui::utility::ResourceManager const*, std::basic_string<unsigned short, std::char_traits<unsigned short>, dvacore::utility::SmallBlockAllocator::STLAllocator<unsigned short> > const&, dvacore::geom::PointT<float>, std::basic_string<unsigned short, std::char_traits<unsigned short>, dvacore::utility::SmallBlockAllocator::STLAllocator<unsigned short> > const&, dvaui::drawbot::SupplierInterface const*, boost::function<boost::intrusive_ptr<dvaui::ui::UI_Node> (std::basic_string<unsigned short, std::char_traits<unsigned short>, dvacore::utility::SmallBlockAllocator::STLAllocator<unsigned short> > const&)>, bool) + 1187
    26  com.adobe.dvaui.framework               0x0000000100750a42 dvaui::sharedui::DVAAboutDlog::DVAAboutDlog(dvaui::utility::ResourceManager const*, std::basic_string<unsigned short, std::char_traits<unsigned short>, dvacore::utility::SmallBlockAllocator::STLAllocator<unsigned short> > const&, dvacore::geom::PointT<float>, std::basic_string<unsigned short, std::char_traits<unsigned short>, dvacore::utility::SmallBlockAllocator::STLAllocator<unsigned short> > const&, dvaui::drawbot::SupplierInterface const*, dvaui::ui::UI_Node*, boost::function<boost::intrusive_ptr<dvaui::ui::UI_Node> (std::basic_string<unsigned short, std::char_traits<unsigned short>, dvacore::utility::SmallBlockAllocator::STLAllocator<unsigned short> > const&)>, bool) + 578
    27  com.adobe.auui.framework                0x00000001050a7943 aui::SplashScreen::SplashScreen(dvaworkspace::workspace::Workspace*, dvaui::utility::ResourceManager*) + 179
    28  com.adobe.auui.framework                0x000000010508fe8f aui::Application::GetNewSplashScreen() + 63
    29  com.adobe.exo.framework                 0x0000000102131c2a exo::app::AppBase::Initialize(exo::app::AppInitArgs&) + 986
    30  com.adobe.auui.framework                0x00000001050806bc aui::Application::Initialize(exo::app::AppInitArgs&, std::basic_string<unsigned short, std::char_traits<unsigned short>, dvacore::utility::SmallBlockAllocator::STLAllocator<unsigned short> > const&) + 140
    31  com.adobe.auui.framework                0x00000001050a8c84 AudMacMain(int, char**) + 484
    32  com.adobe.Audition.6.0                  0x0000000100002dd7 main + 119
    33  com.adobe.Audition.6.0                  0x0000000100002c14 start + 52
    Thread 1:
    0   libsystem_kernel.dylib                  0x00007fff8b9e06d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff8db92f4c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff8db92d13 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff8db7d1d1 start_wqthread + 13
    Thread 2:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x00007fff8b9e0d16 kevent + 10
    1   libdispatch.dylib                       0x00007fff9042bdea _dispatch_mgr_invoke + 883
    2   libdispatch.dylib                       0x00007fff9042b9ee _dispatch_mgr_thread + 54
    Thread 3:
    0   libsystem_kernel.dylib                  0x00007fff8b9e06d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff8db92f4c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff8db92d13 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff8db7d1d1 start_wqthread + 13
    Thread 4:
    0   libsystem_kernel.dylib                  0x00007fff8b9e06d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff8db92f4c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff8db92d13 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff8db7d1d1 start_wqthread + 13
    Thread 5:
    0   libsystem_kernel.dylib                  0x00007fff8b9e00fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8db94fe9 _pthread_cond_wait + 869
    2   com.apple.CoreServices.CarbonCore          0x00007fff8bb18210 TSWaitOnCondition + 108
    3   com.apple.CoreServices.CarbonCore          0x00007fff8bb183e7 TSWaitOnConditionTimedRelative + 132
    4   com.apple.CoreServices.CarbonCore          0x00007fff8ba7aa98 MPWaitOnQueue + 252
    5   com.adobe.ACE                           0x0000000109cf82c9 0x109cbf000 + 234185
    6   com.adobe.ACE                           0x0000000109cf75da 0x109cbf000 + 230874
    7   com.apple.CoreServices.CarbonCore          0x00007fff8baef7e0 PrivateMPEntryPoint + 58
    8   libsystem_c.dylib                       0x00007fff8db907a2 _pthread_start + 327
    9   libsystem_c.dylib                       0x00007fff8db7d1e1 thread_start + 13
    Thread 6:
    0   libsystem_kernel.dylib                  0x00007fff8b9e06d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff8db92f4c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff8db92d13 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff8db7d1d1 start_wqthread + 13
    Thread 7:
    0   libsystem_kernel.dylib                  0x00007fff8b9e06d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff8db92f4c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff8db92d13 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff8db7d1d1 start_wqthread + 13
    Thread 8:
    0   libsystem_kernel.dylib                  0x00007fff8b9e06d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff8db92f4c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff8db92d13 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff8db7d1d1 start_wqthread + 13
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0x0000000000000000  rbx: 0x0000000000000006  rcx: 0x00007fff5fbfe278  rdx: 0x0000000000000000
      rdi: 0x0000000000000c07  rsi: 0x0000000000000006  rbp: 0x00007fff5fbfe2a0  rsp: 0x00007fff5fbfe278
       r8: 0x00007fff78aeb278   r9: 0x0000000000000017  r10: 0x0000000020000000  r11: 0x0000000000000206
      r12: 0x00007fff5fbfe400  r13: 0x00007fff5fbfea00  r14: 0x00007fff78aec180  r15: 0x00007fff5fbfe2e0
      rip: 0x00007fff8b9e0212  rfl: 0x0000000000000206  cr2: 0x00007fff78ae4ff0
    Logical CPU: 0
    Binary Images:
           0x100000000 -        0x100003fff +com.adobe.Audition.6.0 (6.0x732 - 6.0) <40486847-5631-382C-A256-77825014BBEE> /Applications/Adobe Audition CC/Adobe Audition CC.app/Contents/MacOS/Adobe Audition CC
           0x10000a000 -        0x10000cfff +com.adobe.AdobeCrashReporter (7.0 - 7.0.1) <B68D0D42-8DEB-3F22-BD17-981AC060E9D7> /Applications/Adobe Audition CC/Adobe Audition CC.app/Contents/Frameworks/AdobeCrashReporter.framework/Versions/A/AdobeCrashReporter
           0x100012000 -        0x100018ff7 +com.adobe.boost_date_time.framework (7.0.0 - 7.0.0.0) <66FDA84E-732D-3909-A849-9C1A856DE34A> /Applications/Adobe Audition CC/Adobe Audition CC.app/Contents/Frameworks/boost_date_time.framework/Versions/A/boost_date_time
           0x10002f000 -        0x10003dfff +com.adobe.boost_threads.framework (7.0.0 - 7.0.0.0) <9842E8D5-33B2-3498-AAE7-134255C35491> /Applications/Adobe Audition CC/Adobe Audition CC.app/Contents/Frameworks/boost_threads.framework/Versions/A/boost_threads
           0x100061000 -        0x10006cfff +com.adobe.boost_signals.framework (7.0.0 - 7.0.0.0) <D576FB62-3D08-30A0-B0DB-708F025E9EB4> /Applications/Adobe Audition CC/Adobe Audition CC.app/Contents/Frameworks/boost_signals.framework/Versions/A/boost_signals
           0x100084000 -        0x100088fff +com.adobe.boost_system.framework (7.0.0 - 7.0.0.0) <61605E0F-D1EA-3573-84B5-7657F8B5F39F> /Applications/Adobe Audition CC/Adobe Audition CC.app/Contents/Frameworks/boost_system.framework/Versions/A/boost_system
           0x100091000 -        0x1002dbff7 +com.adobe.dvacore.framework (7.0.0 - 7.0.0.0) <B74BE24B-4DCA-3042-88F7-B281771F2554> /Applications/Adobe Audition CC/Adobe Audition CC.app/Contents/Frameworks/dvacore.framework/Versions/A/dvacore
           0x100511000 -        0x100989ff7 +com.adobe.dvaui.framework (7.0.0 - 7.0.0.0) <775B0CDF-544B-389E-9E9D-B80A5E4AB75B> /Applications/Adobe Audition CC/Adobe Audition CC.app/Contents/Frameworks/dvaui.framework/Versions/A/dvaui
           0x100f75000 -        0x101293ff7 +com.adobe.dvaadameve.framework (7.0.0 - 7.0.0.0) <D78C3499-B0D1-3687-A89E-A4FDB9FF2480> /Applications/Adobe Audition CC/Adobe Audition CC.app/Contents/Frameworks/dvaadameve.framework/Versions/A/dvaadameve
           0x101932000 -        0x1019e0ff7 +com.adobe.dvaworkspace.framework (7.0.0 - 7.0.0.0) <2C264C1E-C0E4-3355-BD83-5509F9E311DF> /Applications/Adobe Audition CC/Adobe Audition CC.app/Contents/Frameworks/dvaworkspace.framework/Versions/A/dvaworkspace
           0x101aea000 -        0x101b1ffff +com.adobe.dvamediatypes.framework (7.0.0 - 7.0.0.0) <4CE7B693-1F18-386D-AFD7-A9A5F824BEC3> /Applications/Adobe Audition CC/Adobe Audition CC.app/Contents/Frameworks/dvamediatypes.framework/Versions/A/dvamediatypes
           0x101b56000 -        0x101bc3fff +com.adobe.AdobeXMPCore (Adobe XMP Core 5.5 -c 14 - 79.151805) <13002997-BD96-3A65-BFEC-09C9EB786A35> /Applications/Adobe Audition CC/Adobe Audition CC.app/Contents/Frameworks/AdobeXMP.framework/Versions/A/AdobeXMP
           0x101bf6000 -        0x101d02fff +com.adobe.AdobeXMPFiles (Adobe XMP Files 5.6 -f 51 - 79.151805) <596FEA1A-3627-30B3-8AC4-BE1885788307> /Applications/Adobe Audition CC/Adobe Audition CC.app/Contents/Frameworks/AdobeXMPFiles.framework/Versions/A/AdobeXMPFiles
           0x101db0000 -        0x101e25fff +com.adobe.dvametadata.framework (7.0.0 - 7.0.0.0) <2A7F6417-8339-3C16-953F-DBBD6304F1EF> /Applications/Adobe Audition CC/Adobe Audition CC.app/Contents/Frameworks/dvametadata.framework/Versions/A/dvametadata
           0x101ede000 -        0x101f97fff +com.adobe.dvametadataUI.framework (7.0.0 - 7.0.0.0) <34CA33DC-0085-304B-9D62-F1784E83EA69> /Applications/Adobe Audition CC/Adobe Audition CC.app/Contents/Frameworks/dvametadataui.framework/Versions/A/dvametadataUI
           0x10209f000 -        0x1020f6ff7 +com.adobe.dvatemporalxmp.framework (7.0.0 - 7.0.0.0) <3DFE5FFA-3FDD-3668-9EE1-A25330E6B5D5> /Applications/Adobe Audition CC/Adobe Audition CC.app/Contents/Frameworks/dvatemporalxmp.framework/Versions/A/dvatemporalxmp
           0x10212f000 -        0x1021f1fff +com.adobe.exo.framework (7.0.0 - 7.0.0.0) <17C7D996-EB00-3812-AF0F-5D43BD42F537> /Applications/Adobe Audition CC/Adobe Audition CC.app/Contents/Frameworks/exo.framework/Versions/A/exo
           0x102349000 -        0x102369ff7 +com.adobe.dvaunittesting.framework (7.0.0 - 7.0.0.0) <5ECF260B-8A40-3B3B-B78E-0BBB038B8BB1> /Applications/Adobe Audition CC/Adobe Audition CC.app/Contents/Frameworks/dvaunittesting.framework/Versions/A/dvaunittesting
           0x1023a9000 -        0x1023b7fff +com.adobe.aucore.framework (1.0 - 1.0) <BF1F1454-170B-34A5-AE54-D35BE60089D9> /Applications/Adobe Audition CC/Adobe Audition CC.app/Contents/Frameworks/AuCore.framework/Versions/A/AuCore
           0x1023d1000 -        0x1027dafe7 +com.adobe.audsp.framework (1.0 - 1.0) <3ED61DC5-0AE5-3BBA-A527-7F3C0D304455> /Applications/Adobe Audition CC/Adobe Audition CC.app/Contents/Frameworks/AuDSP.framework/Versions/A/AuDSP
           0x10289a000 -        0x102953fff +com.adobe.dvaaudiofilterhost.framework (7.0.0 - 7.0.0.0) <CC6545E3-2B6F-328B-AE50-49D041F1A559> /Applications/Adobe Audition CC/Adobe Audition CC.app/Contents/Frameworks/dvaaudiofilterhost.framework/Versions/A/dvaaudiofilterhost
           0x102a3f000 -        0x102b87fcf +com.adobe.auaudiocomponents.framework (1.0 - 1.0) <035B11E8-0E4E-3EC8-A8D6-47761C29A2DB> /Applications/Adobe Audition CC/Adobe Audition CC.app/Contents/Frameworks/AuAudioComponents.framework/Versions/A/AuAudioComponents
           0x102c66000 -        0x102cedfff +com.adobe.dvaaudiodevice.framework (7.0.0 - 7.0.0.0) <B3275462-0CC8-38C3-AE07-0632642F0328> /Applications/Adobe Audition CC/Adobe Audition CC.app/Contents/Frameworks/dvaaudiodevice.framework/Versions/A/dvaaudiodevice
           0x102db0000 -        0x102e11ff7 +com.adobe.dvatransport.framework (7.0.0 - 7.0.0.0) <9FD4CDC5-9A30-30AE-BAD0-86A6B5E99225> /Applications/Adobe Audition CC/Adobe Audition CC.app/Contents/Frameworks/dvatransport.framework/Versions/A/dvatransport
           0x102eab000 -        0x102ed3ff7 +com.adobe.dvamarshal.framework (7.0.0 - 7.0.0.0) <296F3041-E477-3A73-8C36-07E928169F3D> /Applications/Adobe Audition CC/Adobe Audition CC.app/Contents/Frameworks/dvamarshal.framework/Versions/A/dvamarshal
           0x102f1c000 -        0x10310dfff +com.adobe.dynamiclink.framework (7.0.0 - 7.0.0.0) <3BA890E9-D572-3B39-A5F6-CD187C8558CC> /Applications/Adobe Audition CC/Adobe Audition CC.app/Contents/Frameworks/dynamiclink.framework/Versions/A/dynamiclink
           0x10336e000 -        0x10341ffff +com.adobe.dvaplayer.framework (7.0.0 - 7.0.0.0) <76698BB3-3388-3E76-82DC-358FAD3E120C> /Applications/Adobe Audition CC/Adobe Audition CC.app/Contents/Frameworks/dvaplayer.framework/Versions/A/dvaplayer
           0x103590000 -        0x1038faff7 +com.adobe.aubackend.framework (1.0 - 1.0) <CF4E0765-B628-336F-87EF-7DF6B944F766> /Applications/Adobe Audition CC/Adobe Audition CC.app/Contents/Frameworks/AuBackEnd.framework/Versions/A/AuBackEnd
           0x103cd5000 -        0x103cddfff +com.adobe.dvaundo.framework (7.0.0 - 7.0.0.0) <BB78A431-4A24-3BBA-AE28-B2385D5823B4> /Applications/Adobe Audition CC/Adobe Audition CC.app/Contents/Frameworks/dvaundo.framework/Versions/A/dvaundo
           0x103cee000 -        0x10418bfff +com.adobe.auapplication.framework (1.0 - 1.0) <864D8A7A-3A0C-3FAC-A7CC-60B8BAA9D364> /Applications/Adobe Audition CC/Adobe Audition CC.app/Contents/Frameworks/AuApplication.framework/Versions/A/AuApplication
           0x1045d3000 -        0x1046a4fff +com.adobe.auuitoolkit.framework (1.0 - 1.0) <A88D00FE-241E-3392-BC61-40EA6DF6AECD> /Applications/Adobe Audition CC/Adobe Audition CC.app/Contents/Frameworks/AuUIToolkit.framework/Versions/A/AuUIToolkit
           0x104838000 -        0x1048f6ff7 +com.adobe.AdobeExtendScript (ExtendScript 4.5.5 - 4.5.5.24321) <C111ECAF-33B8-31E9-A0CD-5E5DBFC15652> /Applications/Adobe Audition CC/Adobe Audition CC.app/Contents/Frameworks/AdobeExtendScript.framework/Versions/A/AdobeExtendScript
           0x104946000 -        0x1049f0fff +com.adobe.AdobeScCore (ScCore 4.5.5 - 4.5.5.24321) <520981E9-7761-34EA-964F-3FFB2B23FFE5> /Applications/Adobe Audition CC/Adobe Audition CC.app/Contents/Frameworks/AdobeScCore.framework/Versions/A/AdobeScCore
           0x104a35000 -        0x104b63fff +com.adobe.auscripting.framework (1.0 - 1.0) <4DDAC542-AB1B-32AD-9D7C-EBC08AEE151F> /Applications/Adobe Audition CC/Adobe Audition CC.app/Contents/Frameworks/AuScripting.framework/Versions/A/AuScripting
           0x104d04000 -        0x104d51fff +com.adobe.dvaaudiofilterhostui.framework (7.0.0 - 7.0.0.0) <4EA50155-806F-3CC5-A503-0E48DB002DEA> /Applications/Adobe Audition CC/Adobe Audition CC.app/Contents/Frameworks/dvaaudiofilterhostui.framework/Versions/A/dvaaudiofilterhostui
           0x104deb000 -        0x104ed2ff7 +com.adobe.auaudiocomponentsui.framework (1.0 - 1.0) <182F9923-883A-3A81-8C0C-4E3C013935EF> /Applications/Adobe Audition CC/Adobe Audition CC.app/Contents/Frameworks/AuAudioComponentsUI.framework/Versions/A/AuAudioComponentsUI
           0x10500e000 -        0x105bd2ff7 +com.adobe.auui.framework (1.0 - 1.0) <0759E710-66A6-3485-9FB4-C7DADC9D6287> /Applications/Adobe Audition CC/Adobe Audition CC.app/Contents/Frameworks/AuUI.framework/Versions/A/AuUI
           0x106673000 -        0x106685fff +com.adobe.boost_filesystem.framework (7.0.0 - 7.0.0.0) <D5D52955-0EA0-386C-B6ED-0DF04E7B7662> /Applications/Adobe Audition CC/Adobe Audition CC.app/Contents/Frameworks/boost_filesystem.framework/Versions/A/boost_filesystem
           0x1066a3000 -        0x10673eff7 +com.adobe.boost_regex.framework (7.0.0 - 7.0.0.0) <448D2B65-29DC-39F5-B7E1-84310909DB51> /Applications/Adobe Audition CC/Adobe Audition CC.app/Contents/Frameworks/boost_regex.framework/Versions/A/boost_regex
           0x1067d5000 -        0x106891ff7 +com.adobe.dvaeve.framework (7.0.0 - 7.0.0.0) <884864A7-71EF-33C5-94E3-3D58637107C8> /Applications/Adobe Audition CC/Adobe Audition CC.app/Contents/Frameworks/dvaeve.framework/Versions/A/dvaeve
           0x106a01000 -        0x10717bff7 +libmkl_intel_lp64.dylib (0) <7B0FDA28-FA31-3BAB-AE51-D59247FC50F2> /Applications/Adobe Audition CC/Adobe Audition CC.app/Contents/Frameworks/libmkl_intel_lp64.dylib
           0x10723c000 -        0x1079e5ff7 +libmkl_sequential.dylib (0) <F802B979-DB19-3CA5-B2E3-81CD2580E3E0> /Applications/Adobe Audition CC/Adobe Audition CC.app/Contents/Frameworks/libmkl_sequential.dylib
           0x107ae7000 -        0x108a87fef +libmkl_core.dylib (0) <29274263-3EC2-36C8-8BB5-651B73600719> /Applications/Adobe Audition CC/Adobe Audition CC.app/Contents/Frameworks/libmkl_core.dylib
           0x108c55000 -        0x108c83fff  com.apple.audio.CoreAudioKit (1.6.5 - 1.6.5) <DF069200-1DBF-3137-9440-1758B47334C1> /System/Library/Frameworks/CoreAudioKit.framework/Versions/A/CoreAudioKit
           0x108c9e000 -        0x108d48fff +iZotope_Radius (1) <A3438380-77F2-3391-BCB6-0310E054984D> /Applications/Adobe Audition CC/Adobe Audition CC.app/Contents/Frameworks/iZotope_Radius.framework/Versions/A/iZotope_Radius
           0x108d84000 -        0x108dbafff +iZotopeOmegaStreaming (1) <8C3C07FF-22B8-EFEA-62BF-DC71DAB3F836> /Applications/Adobe Audition CC/Adobe Audition CC.app/Contents/Frameworks/iZotopeOmegaStreaming.framework/Versions/A/iZotopeOmegaStreami ng
           0x108dcf000 -        0x109436fef +com.sonic.AS_Storage (5.4.17) <68FF6C5F-1703-7508-C200-3E05BADA8C57> /Applications/Adobe Audition CC/Adobe Audition CC.app/Contents/Frameworks/as_storage.framework/Versions/A/AS_Storage
           0x1097e8000 -        0x109837fff +com.adobe.headlights.LogSessionFramework (2.1.2.1756) <BD518257-970F-344A-92B8-B8BE1A8EB4D8> /Applications/Adobe Audition CC/Adobe Audition CC.app/Contents/Frameworks/LogSession.framework/Versions/A/LogSession
           0x10986d000 -        0x109b45fe6 +libxerces-c-3.0.dylib (0) <46020284-EEA8-7D7B-388C-BF23A318C997> /Applications/Adobe Audition CC/Adobe Audition CC.app/Contents/Frameworks/libxerces-c-3.0.dylib
           0x109cbf000 -        0x109e38fff +com.adobe.ACE (AdobeACE 2.19.18.19243 - 2.19.18.19243) <7F28B188-1D1B-20C9-BBB9-B74FCC12ECAD> /Applications/Adobe Audition CC/Adobe Audition CC.app/Contents/Frameworks/AdobeACE.framework/Versions/A/AdobeACE
           0x109e4c000 -        0x10a576fff +com.adobe.AGM (AdobeAGM 4.26.17.19243 - 4.26.17.19243) <62F60F9B-53EF-B531-472E-CEC0947BC869> /Applications/Adobe Audition CC/Adobe Audition CC.app/Contents/Frameworks/AdobeAGM.framework/Versions/A/AdobeAGM
           0x10a624000 -        0x10a643fff +com.adobe.BIB (AdobeBIB 1.2.02.19243 - 1.2.02.19243) <B7D7EE28-D604-2989-B099-62AEF4885C21> /Applications/Adobe Audition CC/Adobe Audition CC.app/Contents/Frameworks/AdobeBIB.framework/Versions/A/AdobeBIB
           0x10a64b000 -        0x10a673ff7 +com.adobe.BIBUtils (AdobeBIBUtils 1.1.01 - 1.1.01) <9BDD08A8-2DD8-A570-7A7B-EDAA7097D61B> /Applications/Adobe Audition CC/Adobe Audition CC.app/Contents/Frameworks/AdobeBIBUtils.framework/Versions/A/AdobeBIBUtils
           0x10a67b000 -        0x10a9dcfef +com.adobe.CoolType (AdobeCoolType 5.10.31.19243 - 5.10.31.19243) <8BFF14FB-AA14-1CBF-C2A3-715363B5A841> /Applications/Adobe Audition CC/Adobe Audition CC.app/Contents/Frameworks/AdobeCoolType.framework/Versions/A/AdobeCoolType
           0x10aa2a000 -        0x10aa2ffff  com.apple.agl (3.2.1 - AGL-3.2.1) <49C58BA7-3BF8-35CC-AFB3-2B0432766389> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
           0x10aa36000 -        0x10ab25fff +com.adobe.amtlib (7.0.0.169 - 7.0.0.169) <A9A9F814-FF1F-3182-992C-395E5BC52481> /Applications/Adobe Audition CC/Adobe Audition CC.app/Contents/Frameworks/amtlib.framework/Versions/A/amtlib
           0x10ab38000 -        0x10ab52ff7 +com.adobe.ahclientframework (1.7.0.56 - 1.7.0.56) <C1C5DE5C-39AB-0871-49A6-FA3449D39B8A> /Applications/Adobe Audition CC/Adobe Audition CC.app/Contents/Frameworks/ahclient.framework/Versions/A/ahclient
           0x10ab5c000 -        0x10ab90ff7 +com.adobe.dvacontrolsurfacehost.framework (7.0.0 - 7.0.0.0) <762DFDD7-B1BE-3C0B-9C3D-54B738CBFAB7> /Applications/Adobe Audition CC/Adobe Audition CC.app/Contents/Frameworks/dvacontrolsurfacehost.framework/Versions/A/dvacontrolsurfaceho st
           0x10ac07000 -        0x10ac09fff +com.adobe.PRM.framework (7.0.0 - 7.0.0.0) <380A370E-706F-3935-928B-4529A8889F36> /Applications/Adobe Audition CC/Adobe Audition CC.app/Contents/Frameworks/PRM.framework/Versions/A/PRM
           0x10ac11000 -        0x10ac5dff7 +com.adobe.ASLFoundation.framework (7.0.0 - 7.0.0.0) <EEEC998D-16E9-3343-A95A-B2017549CF83> /Applications/Adobe Audition CC/Adobe Audition CC.app/Contents/Frameworks/ASLFoundation.framework/Versions/A/ASLFoundation
           0x10ad46000 -        0x10ad56ff7 +com.adobe.ASLMessaging.framework (7.0.0 - 7.0.0.0) <B55BF3A8-D44D-312E-A38E-E89C063636A9> /Applications/Adobe Audition CC/Adobe Audition CC.app/Contents/Frameworks/ASLMessaging.framework/Versions/A/ASLMessaging
           0x10ad73000 -        0x10ad82fff +com.adobe.ASLUnitTesting.framework (7.0.0 - 7.0.0.0) <33948DE5-0648-3E01-ABAF-D8EC6B88F047> /Applications/Adobe Audition CC/Adobe Audition CC.app/Contents/Frameworks/ASLUnitTesting.framework/Versions/A/ASLUnitTesting
           0x10ada1000 -        0x10ae10ff7 +com.adobe.MediaFoundation.framework (7.0.0 - 7.0.0.0) <FC9BEAE0-2BCF-3E81-A50A-E13B33C64D04> /Applications/Adobe Audition CC/Adobe Audition CC.app/Contents/Frameworks/MediaFoundation.framework/Versions/A/MediaFoundation
           0x10aeb6000 -        0x10aeeafff +com.adobe.DisplaySurface.framework (7.0.0 - 7.0.0.0) <646FA18F-CD8D-3A1C-8C03-BEE24886B466> /Applications/Adobe Audition CC/Adobe Audition CC.app/Contents/Frameworks/DisplaySurface.framework/Versions/A/DisplaySurface
           0x10af39000 -        0x10b14efef +com.adobe.ImageRenderer.framework (7.0.0 - 7.0.0.0) <4F90B751-ECC1-3371-B334-ACB7FDCCDA83> /Applications/Adobe Audition CC/Adobe Audition CC.app/Contents/Frameworks/ImageRenderer.framework/Versions/A/ImageRenderer
           0x10b263000 -        0x10b265fff +com.adobe.Memory.framework (7.0.0 - 7.0.0.0) <B249E85D-67B5-324D-83BD-836E0DD13123> /Applications/Adobe Audition CC/Adobe Audition CC.app/Contents/Frameworks/Memory.framework/Versions/A/Memory
           0x10b26e000 -        0x10b2e6ff7 +com.adobe.VideoFrame.framework (7.0.0 - 7.0.0.0) <93FCA476-D286-3E60-A7FF-D7B43DC84072> /Applications/Adobe Audition CC/Adobe Audition CC.app/Contents/Frameworks/VideoFrame.framework/Versions/A/VideoFrame
           0x10b366000 -        0x10b38afe7 +com.mainconcept.mc.enc.dv (9.6 - 9.6.8.3415) <DDF1DA2E-1FF1-D353-0C4D-D05D7A6E28D4> /Applications/Adobe Audition CC/Adobe Audition CC.app/Contents/Frameworks/mc_enc_dv.framework/Versions/9/mc_enc_dv
           0x10d19f000 -        0x10d1a1ff7  com.apple.textencoding.unicode (2.5 - 2.5) <0518078E-C652-3CFC-A3FB-903C600CE831> /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
           0x112375000 -        0x112396fff  libKoreanConverter.dylib (61) <7A601BB8-19DF-3DDC-9C50-3A798290F377> /System/Library/CoreServices/Encodings/libKoreanConverter.dylib
           0x112895000 -        0x11289aff7  libFontRegistryUI.dylib (100) <9F172961-DB6F-3A82-9F90-28F9A233F755> /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framework/Resourc es/libFontRegistryUI.dylib
           0x112990000 -        0x112991ff7  ATSHI.dylib (341.1) <6860AB9D-27E6-3516-91BF-05E4B9E8A8F0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/ATSHI.dylib
           0x112ab9000 -        0x112acbff7  libTraditionalChineseConverter.dylib (61) <DDAFF75C-0714-34F4-818F-8B439AC7BBCA> /System/Library/CoreServices/Encodings/libTraditionalChineseConverter.dylib
           0x112d2f000 -        0x112d3eff7  libSimplifiedChineseConverter.dylib (61) <A2B475FF-667F-3B7B-A6E9-8768347F2BD6> /System/Library/CoreServices/Encodings/libSimplifiedChineseConverter.dylib
           0x112f6a000 -        0x112f86ff7  libJapaneseConverter.dylib (61) <D0F762C2-5372-3AA2-BBA4-066B8E4B1F8E> /System/Library/CoreServices/Encodings/libJapaneseConverter.dylib
        0x7fff6b1c9000 -     0x7fff6b1fd93f  dyld (210.2.3) <6900F2BA-DB48-3B78-B668-58FC0CF6BCB8> /usr/lib/dyld
        0x7fff87ea8000 -     0x7fff87eabfff  libRadiance.dylib (850) <62E3F7FB-03E3-3937-A857-AF57A75EAF09> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib
        0x7fff87fd7000 -     0x7fff87fddfff  com.apple.DiskArbitration (2.5.2 - 2.5.2) <C713A35A-360E-36CE-AC0A-25C86A3F50CA> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
        0x7fff87fde000 -     0x7fff87febfff  com.apple.AppleFSCompression (49 - 1.0) <5508344A-2A7E-3122-9562-6F363910A80E> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/AppleFSCompress ion
        0x7fff882c6000 -     0x7fff882f7ff7  com.apple.DictionaryServices (1.2 - 184.4) <FB0540FF-5034-3591-A28D-6887FBC220F7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryService s.framework/Versions/A/DictionaryServices
        0x7fff882f8000 -     0x7fff884f8fff  libicucore.A.dylib (491.11.3) <5783D305-04E8-3D17-94F7-1CEAFA975240> /usr/lib/libicucore.A.dylib
        0x7fff884f9000 -     0x7fff88501fff  liblaunch.dylib (442.26.2) <2F71CAF8-6524-329E-AC56-C506658B4C0C> /usr/lib/system/liblaunch.dylib
        0x7fff88502000 -     0x7fff88584ff7  com.apple.Heimdal (3.0 - 2.0) <C94B0C6C-1320-35A1-8143-FE252E7B2A08> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
        0x7fff88585000 -     0x7fff88690fff  libFontParser.dylib (84.6) <96C42E49-79A6-3475-B5E4-6A782599A6DA> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/libFontParser.dylib
        0x7fff88694000 -     0x7fff886beff7  com.apple.CoreVideo (1.8 - 99.4) <E5082966-6D81-3973-A05A-38AA5B85F886> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
        0x7fff886bf000 -     0x7fff886c0ff7  libSystem.B.dylib (169.3) <FF25248A-574C-32DB-952F-B948C389B2A4> /usr/lib/libSystem.B.dylib
        0x7fff886d2000 -     0x7fff88976ff7  com.apple.CoreImage (8.4.0 - 1.0.1) <CC6DD22B-FFC6-310B-BE13-2397A02C79EF> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage.framework /Versions/A/CoreImage
        0x7fff88977000 -     0x7fff889c6ff7  libFontRegistry.dylib (100) <2E03D7DA-9B8F-31BB-8FB5-3D3B6272127F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/libFontRegistry.dylib
        0x7fff88ae2000 -     0x7fff88b45ff7  com.apple.audio.CoreAudio (4.1.1 - 4.1.1) <9ACD3AED-6C04-3BBB-AB2A-FC253B16D093> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
        0x7fff88dfb000 -     0x7fff88e31fff  com.apple.DebugSymbols (98 - 98) <14E788B1-4EB2-3FD7-934B-849534DFC198> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbols
        0x7fff88e32000 -     0x7fff88e37fff  libcache.dylib (57) <65187C6E-3FBF-3EB8-A1AA-389445E2984D> /usr/lib/system/libcache.dylib
        0x7fff895e0000 -     0x7fff895e1ff7  libsystem_sandbox.dylib (220.3) <B739DA63-B675-387A-AD84-412A651143C0> /usr/lib/system/libsystem_sandbox.dylib
        0x7fff895e2000 -     0x7fff895e6fff  libCGXType.A.dylib (332) <17C8DD17-B3CB-3633-B252-C368AE51204C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphi cs.framework/Versions/A/Resources/libCGXType.A.dylib
        0x7fff89645000 -     0x7fff89747fff  libJP2.dylib (850) <2E43216C-3A5A-3693-820C-38B360698FA0> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
        0x7fff898d4000 -     0x7fff898dbfff  com.apple.NetFS (5.0 - 4.0) <82E24B9A-7742-3DA3-9E99-ED267D98C05E> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
        0x7fff898dc000 -     0x7fff89a8afff  com.apple.QuartzCore (1.8 - 304.3) <F450F2DE-2F24-3557-98B6-310E05DAC17F> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
        0x7fff89a8b000 -     0x7fff89cc0ff7  com.apple.CoreData (106.1 - 407.7) <A676E1A4-2144-376B-92B8-B450DD1D78E5> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
        0x7fff89cc1000 -     0x7fff89ce8fff  com.apple.framework.familycontrols (4.1 - 410) <50F5A52C-8FB6-300A-977D-5CFDE4D5796B> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyControls
        0x7fff89ce9000 -     0x7fff89cf7fff  libcommonCrypto.dylib (60027) <BAAFE0C9-BB86-3CA7-88C0-E3CBA98DA06F> /usr/lib/system/libcommonCrypto.dylib
        0x7fff89cf8000 -     0x7fff89cf8fff  libkeymgr.dylib (25) <CC9E3394-BE16-397F-926B-E579B60EE429> /usr/lib/system/libkeymgr.dylib
        0x7fff89cf9000 -     0x7fff89df6ff7  libxml2.2.dylib (22.3) <47B09CB2-C636-3024-8B55-6040F7829B4C> /usr/lib/libxml2.2.dylib
        0x7fff89e80000 -     0x7fff89ebbfff  com.apple.LDAPFramework (2.4.28 - 194.5) <7C71C445-2B52-3AC0-97E5-9F2E692C8F5C> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
        0x7fff89ebc000 -     0x7fff89edcfff  libPng.dylib (850) <203C43BF-FAD3-3CCB-81D5-F2770E36338B> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
        0x7fff8a246000 -     0x7fff8a35e92f  libobjc.A.dylib (532.2) <90D31928-F48D-3E37-874F-220A51FD9E37> /usr/lib/libobjc.A.dylib
        0x7fff8a35f000 -     0x7fff8a368ff7  com.apple.CommerceCore (1.0 - 26.1) <40A129A8-4E5D-3C7A-B299-8CB203C4C65D> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/CommerceCor e.framework/Versions/A/CommerceCore
        0x7fff8a3f6000 -     0x7fff8a3f7fff  libsystem_blocks.dylib (59) <D92DCBC3-541C-37BD-AADE-ACC75A0C59C8> /usr/lib/system/libsystem_blocks.dylib
        0x7fff8a3fb000 -     0x7fff8a429ff7  libsystem_m.dylib (3022.6) <B434BE5C-25AB-3EBD-BAA7-5304B34E3441> /usr/lib/system/libsystem_m.dylib
        0x7fff8a42a000 -     0x7fff8a458fff  com.apple.CoreServicesInternal (154.3 - 154.3) <F4E118E4-E327-3314-83D7-EA20B1717ED0> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/CoreServicesI nternal
        0x7fff8a459000 -     0x7fff8a45cfff  com.apple.help (1.3.2 - 42) <343904FE-3022-3573-97D6-5FE17F8643BA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions /A/Help
        0x7fff8a45d000 -     0x7fff8a49afef  libGLImage.dylib (8.9.2) <C38649ED-E1C9-315E-9953-F33E8C6A3C89> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib
        0x7fff8a811000 -     0x7fff8a815fff  libpam.2.dylib (20) <C8F45864-5B58-3237-87E1-2C258A1D73B8> /usr/lib/libpam.2.dylib
        0x7fff8a866000 -     0x7fff8a986fff  com.apple.desktopservices (1.7.4 - 1.7.4) <ED3DA8C0-160F-3CDC-B537-BF2E766AB7C1> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopService sPriv
        0x7fff8a987000 -     0x7fff8a987fff  com.apple.Accelerate.vecLib (3.8 - vecLib 3.8) <B5A18EE8-DF81-38DD-ACAF-7076B2A26225> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/vecLib
        0x7fff8aa7a000 -     0x7fff8aa8efff  com.apple.speech.synthesis.framework (4.1.12 - 4.1.12) <94EDF2AB-809C-3D15-BED5-7AD45B2A7C16> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynt hesis.framework/Versions/A/SpeechSynthesis
        0x7fff8aa8f000 -     0x7fff8aa8ffff  libOpenScriptingUtil.dylib (148.3) <F8681222-0969-3B10-8BCE-C55A4B9C520C> /usr/lib/libOpenScriptingUtil.dylib
        0x7fff8aa90000 -     0x7fff8aaa3ff7  com.apple.LangAnalysis (1.7.0 - 1.7.0) <2F2694E9-A7BC-33C7-B4CF-8EC907DF0FEB> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalys is.framework/Versions/A/LangAnalysis
        0x7fff8ac03000 -     0x7fff8ac2fff7  libRIP.A.dylib (332) <D26BC320-B415-3C4D-B57F-D525FC361BB2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphi cs.framework/Versions/A/Resources/libRIP.A.dylib
        0x7fff8ac57000 -     0x7fff8ac9ffff  libcurl.4.dylib (69.2) <EBDBF42D-E4A6-3D05-A76B-2817D79D59E2> /usr/lib/libcurl.4.dylib
        0x7fff8aefc000 -     0x7fff8b25bfff  com.apple.Foundation (6.8 - 945.18) <1D7E58E6-FA3A-3CE8-AC85-B9D06B8C0AA0> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
        0x7fff8b25c000 -     0x7fff8b32eff7  com.apple.CoreText (260.0 - 275.16) <5BFC1D67-6A6F-38BC-9D90-9C712684EDAC> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
        0x7fff8b579000 -     0x7fff8b58bff7  libz.1.dylib (43) <2A1551E8-A272-3DE5-B692-955974FE1416> /usr/lib/libz.1.dylib
        0x7fff8b58c000 -     0x7fff8b5d0fff  libcups.2.dylib (327.6) <9C01D012-6F4C-3B69-B614-1B408B0ED4E3> /usr/lib/libcups.2.dylib
        0x7fff8b5d1000 -     0x7fff8b610ff7  com.apple.QD (3.42.1 - 285.1) <77A20C25-EBB5-341C-A05C-5D458B97AD5C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framewo rk/Versions/A/QD
        0x7fff8b6af000 -     0x7fff8b6feff7  libcorecrypto.dylib (106.2) <CE0C29A3-C420-339B-ADAA-52F4683233CC> /usr/lib/system/libcorecrypto.dylib
        0x7fff8b6ff000 -     0x7fff8b6fffff  com.apple.vecLib (3.8 - vecLib 3.8) <794317C7-4E38-338A-A874-5E18001C8503> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
        0x7fff8b700000 -     0x7fff8b72bfff  libxslt.1.dylib (11.3) <441776B8-9130-3893-956F-39C85FFA644F> /usr/lib/libxslt.1.dylib
        0x7fff8b79c000 -     0x7fff8b79efff  com.apple.securityhi (4.0 - 55002) <9B6CBA92-123F-3307-A2D7-D77A8D3BF87E> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Ve rsions/A/SecurityHI
        0x7fff8b79f000 -     0x7fff8b7aeff7  libxar.1.dylib (105) <370ED355-E516-311E-BAFD-D80633A84BE1> /usr/lib/libxar.1.dylib
        0x7fff8b9bf000 -     0x7fff8b9cdff7  libkxld.dylib (2050.24.15) <A619A9AC-09AF-3FF3-95BF-F07CC530EC31> /usr/lib/system/libkxld.dylib
        0x7fff8b9ce000 -     0x7fff8b9e9ff7  libsystem_kernel.dylib (2050.24.15) <A9F97289-7985-31D6-AF89-151830684461> /usr/lib/system/libsystem_kernel.dylib
        0x7fff8b9ee000 -     0x7fff8ba10ff7  com.apple.Kerberos (2.0 - 1) <C49B8820-34ED-39D7-A407-A3E854153556> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
        0x7fff8ba68000 -     0x7fff8ba6aff7  libunc.dylib (25) <92805328-CD36-34FF-9436-571AB0485072> /usr/lib/system/libunc.dylib
        0x7fff8ba6b000 -     0x7fff8bd82ff7  com.apple.CoreServices.CarbonCore (1037.6 - 1037.6) <1E567A52-677F-3168-979F-5FBB0818D52B> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framew ork/Versions/A/CarbonCore
        0x7fff8bd83000 -     0x7fff8bd88fff  libcompiler_rt.dylib (30) <08F8731D-5961-39F1-AD00-4590321D24A9> /usr/lib/system/libcompiler_rt.dylib
        0x7fff8bd89000 -     0x7fff8c180fff  libLAPACK.dylib (1073.4) <D632EC8B-2BA0-3853-800A-20DA00A1091C> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libLAPACK.dylib
        0x7fff8c185000 -     0x7fff8c185fff  com.apple.Carbon (154 - 155) <CC5AA589-242E-3BE1-B776-7D4FFD93D0C1> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
        0x7fff8c186000 -     0x7fff8c288fff  libcrypto.0.9.8.dylib (47.1) <72AA650B-0453-3BB4-BA03-824627BB199C> /usr/lib/libcrypto.0.9.8.dylib
        0x7fff8c331000 -     0x7fff8c37bff7  libGLU.dylib (8.9.2) <1B5511FF-1064-3004-A245-972CE5687D37> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
        0x7fff8c424000 -     0x7fff8c428fff  libCoreVMClient.dylib (32.3) <AD8391D9-56DD-3A78-A294-6A30E6ECE1A2> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib
        0x7fff8c430000 -     0x7fff8cdc04af  com.apple.CoreGraphics (1.600.0 - 332) <5AB32E51-9154-3733-B83B-A9A748652847> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphi cs.framework/Versions/A/CoreGraphics
        0x7fff8cdf5000 -     0x7fff8ce93ff7  com.apple.ink.framework (10.8.2 - 150) <3D8D16A2-7E01-3EA1-B637-83A36D353308> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/ A/Ink
        0x7fff8ce96000 -     0x7fff8ce98fff  libquarantine.dylib (52.1) <143B726E-DF47-37A8-90AA-F059CFD1A2E4> /usr/lib/system/libquarantine.dylib
        0x7fff8ce99000 -     0x7fff8cf3fff7  com.apple.CoreServices.OSServices (557.6 - 557.6) <1BDB5456-0CE9-301C-99C1-8EFD0D2BFCCD> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framew ork/Versions/A/OSServices
        0x7fff8d35f000 -     0x7fff8d35ffff  com.apple.CoreServices (57 - 57) <9DD44CB0-C644-35C3-8F57-0B41B3EC147D> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
        0x7fff8d360000 -     0x7fff8d3e0ff7  com.apple.ApplicationServices.ATS (332 - 341.1) <39B53565-FA31-3F61-B090-C787C983142E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/ATS
        0x7fff8d3f0000 -     0x7fff8d48bfff  com.apple.CoreSymbolication (3.0 - 117) <C304FDB8-2FF7-34BC-858A-2B96C2B039D5> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSymbolicatio n
        0x7fff8d4d4000 -     0x7fff8d4d8fff  libGIF.dylib (850) <D4525F87-759C-338C-B283-BB8DE815D3D5> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
        0x7fff8d4d9000 -     0x7fff8d4ddff7  com.apple.CommonPanels (1.2.5 - 94) <AAC003DE-2D6E-38B7-B66B-1F3DA91E7245> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/ Versions/A/CommonPanels
        0x7fff8d561000 -     0x7fff8d5cfff7  com.apple.framework.IOKit (2.0.1 - 755.24.1) <04BFB138-8AF4-310A-8E8C-045D8A239654> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
        0x7fff8d5ec000 -     0x7fff8da09fff  FaceCoreLight (2.4.1) <DDAFFD7A-D312-3407-A010-5AEF3E17831B> /System/Library/PrivateFrameworks/FaceCoreLight.framework/Versions/A/FaceCoreLight
        0x7fff8db7c000 -     0x7fff8dc48ff7  libsystem_c.dylib (825.26) <4C9EB006-FE1F-3F8F-8074-DFD94CF2CE7B> /usr/lib/system/libsystem_c.dylib
        0x7fff8dc97000 -     0x7fff8de1dfff  libBLAS.dylib (1073.4) <C102C0F6-8CB6-3B49-BA6B-2EB61F0B2784> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libBLAS.dylib
        0x7fff8de28000 -     0x7fff8de32fff  com.apple.speech.recognition.framework (4.1.5 - 4.1.5) <D803919C-3102-3515-A178-61E9C86C46A1> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.frame work/Versions/A/SpeechRecognition
        0x7fff8de33000 -     0x7fff8de3ffff  com.apple.CrashReporterSupport (10.8.3 - 418) <DE6AFE16-D97E-399D-82ED-3522C773C36E> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/CrashReporter Support
        0x7fff8e105000 -     0x7fff8e192ff7  com.apple.SearchKit (1.4.0 - 1.4.0) <C7F43889-F8BF-3CB9-AD66-11AEFCBCEDE7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framewo rk/Versions/A/SearchKit
        0x7fff8e193000 -     0x7fff8e1fbff7  libc++.1.dylib (65.1) <20E31B90-19B9-3C2A-A9EB-474E08F9FE05> /usr/lib/libc++.1.dylib
        0x7fff8e1fc000 -     0x7fff8e23fff7  com.apple.RemoteViewServices (2.0 - 80.6) <5CFA361D-4853-3ACC-9EFC-A2AC1F43BA4B> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/RemoteViewServi ces
        0x7fff8e240000 -     0x7fff8e247fff  libcopyfile.dylib (89) <876573D0-E907-3566-A108-577EAD1B6182> /usr/lib/system/libcopyfile.dylib
        0x7fff8e26a000 -     0x7fff8e2bfff7  libTIFF.dylib (850) <EDAF0D99-70AF-3B3F-9EFA-9463C91D0E3C> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
        0x7fff8e35e000 -     0x7fff8e4f9fef  com.apple.vImage (6.0 - 6.0) <FAE13169-295A-33A5-8E6B-7C2CC1407FA7> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Ve rsions/A/vImage
        0x7fff8e4fa000 -     0x7fff8e562fff  libvDSP.dylib (380.6) <CD4C5EEB-9E63-30C4-8103-7A5EAEA0BE60> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libvDSP.dylib
        0x7fff8e64f000 -     0x7fff8e66eff7  libresolv.9.dylib (51) <0882DC2D-A892-31FF-AD8C-0BB518C48B23> /usr/lib/libresolv.9.dylib
        0x7fff8e85c000 -     0x7fff8e87dff7  libCRFSuite.dylib (33) <736ABE58-8DED-3289-A042-C25AF7AE5B23> /usr/lib/libCRFSuite.dylib
        0x7fff8e890000 -     0x7fff8e891fff  liblangid.dylib (116) <864C409D-D56B-383E-9B44-A435A47F2346> /usr/lib/liblangid.dylib
        0x7fff8e892000 -     0x7fff8e8a1fff  com.apple.opengl (1.8.9 - 1.8.9) <6FD163A7-16CC-3D1F-B4B5-B0FDC4ADBF79> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
        0x7fff8e8af000 -     0x7fff8e8d7fff  libJPEG.dylib (850) <DC750E1E-BD07-339B-A4A6-D86BFE969F68> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
        0x7fff8e8d8000 -     0x7fff8e989fff  com.apple.LaunchServices (539.9 - 539.9) <07FC6766-778E-3479-8F28-D2C9917E1DD1> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.fr amework/Versions/A/LaunchServices
        0x7fff8e98a000 -     0x7fff8eaffff7  com.apple.CFNetwork (596.4.3 - 596.4.3) <A57B3308-2F08-3EC3-B4AC-39A3D9F0B9F7> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
        0x7fff8eb00000 -     0x7fff8eb6dff7  com.apple.datadetectorscore (4.1 - 269.3) <5775F0DB-87D6-310D-8B03-E2AD729EFB28> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDetectorsCor e
        0x7fff8ff6b000 -     0x7fff8ff71fff  libmacho.dylib (829) <BF332AD9-E89F-387E-92A4-6E1AB74BD4D9> /usr/lib/system/libmacho.dylib
        0x7fff90041000 -     0x7fff90060ff7  com.apple.ChunkingLibrary (2.0 - 133.3) <8BEC9AFB-DCAA-37E8-A5AB-24422B234ECF> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/ChunkingLibrary
        0x7fff900f2000 -     0x7fff90109fff  com.apple.GenerationalStorage (1.1 - 132.3) <FD4A84B3-13A8-3C60-A59E-25A361447A17> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/GenerationalSt orage
        0x7fff9010b000 -     0x7fff90118ff7  com.apple.NetAuth (4.0 - 4.0) <F5BC7D7D-AF28-3C83-A674-DADA48FF7810> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
        0x7fff90119000 -     0x7fff9026bfff  com.apple.audio.toolbox.AudioToolbox (1.9 - 1.9) <62770C0F-5600-3EF9-A893-8A234663FFF5> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
        0x7fff9026c000 -     0x7fff90369fff  libsqlite3.dylib (138.1) <ADE9CB98-D77D-300C-A32A-556B7440769F> /usr/lib/libsqlite3.dylib
        0x7fff903ab000 -     0x7fff903e2ff7  libssl.0.9.8.dylib (47.1) <B7C438BB-79FF-37B3-B8FB-253E5135CBB4> /usr/lib/libssl.0.9.8.dylib
        0x7fff90427000 -     0x7fff9043cff7  libdispatch.dylib (228.23) <D26996BF-FC57-39EB-8829-F63585561E09> /usr/lib/system/libdispatch.dylib
        0x7fff9043d000 -     0x7fff9043efff  libDiagnosticMessagesClient.dylib (8) <8548E0DC-0D2F-30B6-B045-FE8A038E76D8> /usr/lib/libDiagnosticMessagesClient.dylib
        0x7fff90599000 -     0x7fff9059dff7  com.apple.TCC (1.0 - 1) <F2F3B753-FC73-3543-8BBE-859FDBB4D6A6> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
        0x7fff905e8000 -     0x7fff90622ff7  com.apple.GSS (3.0 - 2.0) <970CAE00-1437-3F4E-B677-0FDB3714C08C> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
        0x7fff90660000 -     0x7fff90677fff  libGL.dylib (8.9.2) <B8E5948D-BCF2-3727-B74E-D74B8EDC82D6> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
        0x7fff90678000 -     0x7fff9069dff7  libc++abi.dylib (26) <D86169F3-9F31-377A-9AF3-DB17142052E4> /usr/lib/libc++abi.dylib
        0x7fff906a4000 -     0x7fff906a5ff7  libremovefile.dylib (23.2) <6763BC8E-18B8-3AD9-8FFA-B43713A7264F> /usr/lib/system/libremovefile.dylib
        0x7fff9070e000 -     0x7fff9133bfff  com.apple.AppKit (6.8 - 1187.39) <199962F0-B06B-3666-8FD5-5C90374BA16A> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
        0x7fff9133c000 -     0x7fff91393ff7  com.apple.ScalableUserInterface (1.0 - 1) <F1D43DFB-1796-361B-AD4B-39F1EED3BE19> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableUserInterfa ce.framework/Versions/A/ScalableUserInterface
        0x7fff91523000 -     0x7fff91529ff7  libunwind.dylib (35.1) <21703D36-2DAB-3D8B-8442-EAAB23C060D3> /usr/lib/system/libunwind.dylib
        0x7fff9164f000 -     0x7fff91671ff7  libxpc.dylib (140.43) <70BC645B-6952-3264-930C-C835010CCEF9> /usr/lib/system/libxpc.dylib
        0x7fff91672000 -     0x7fff9167dff7  com.apple.bsd.ServiceManagement (2.0 - 2.0) <C12962D5-85FB-349E-AA56-64F4F487F219> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManagement
        0x7fff9167e000 -     0x7fff916d4fff  com.apple.HIServices (1.20 - 417) <839B4EE4-B96F-3371-BE90-3B4EBB86C6EA> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices .framework/Versions/A/HIServices
        0x7fff916e1000 -     0x7fff916feff7  com.apple.openscripting (1.3.6 - 148.3) <C008F56A-1E01-3D4C-A9AF-97799D0FAE69> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework /Versions/A/OpenScripting
        0x7fff916ff000 -     0x7fff91703fff  com.apple.IOSurface (86.0.4 - 86.0.4) <26F01CD4-B76B-37A3-989D-66E8140542B3> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
        0x7fff91704000 -     0x7fff9170bfff  libGFXShared.dylib (8.9.2) <398F8D57-EC82-3E13-AC8E-470BE19237D7> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib
        0x7fff9170c000 -     0x7fff91718fff  libCSync.A.dylib (332) <47466CF6-EB5C-3312-9E24-178F4410A92B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphi cs.framework/Versions/A/Resources/libCSync.A.dylib
        0x7fff91fcf000 -     0x7fff9202bff7  com.apple.Symbolication (1.3 - 93) <D5044687-E424-31CF-B120-667143E6B9C1> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolication
        0x7fff9202c000 -     0x7fff92086ff7  com.apple.opencl (2.2.19 - 2.2.19) <3C7DFB2C-B3F9-3447-A1FC-EAAA42181A6E> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
        0x7fff92323000 -     0x7fff923e8ff7  com.apple.coreui (2.0 - 181.1) <83D2C92D-6842-3C9D-9289-39D5B4554C3A> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
        0x7fff92439000 -     0x7fff924b8ff7  com.apple.securityfoundation (6.0 - 55115.4) <64EDD2F2-4DE2-3DE5-BE57-43D413853CF9> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation
        0x7fff92ce0000 -     0x7fff92d61fff  com.apple.Metadata (10.7.0 - 707.11) <2DD25313-420D-351A-90F1-300E95C970CA> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framewor k/Versions/A/Metadata
        0x7fff92d62000 -     0x7fff92dbcfff  com.apple.print.framework.PrintCore (8.3 - 387.2) <5BA0CBED-4D80-386A-9646-F835C9805B71> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore. framework/Versions/A/PrintCore
        0x7fff92e08000 -     0x7fff92e3efff  libsystem_info.dylib (406.17) <4FFCA242-7F04-365F-87A6-D4EFB89503C1> /usr/lib/system/libsystem_info.dylib
        0x7fff92e3f000 -     0x7fff92e3ffff  com.apple.ApplicationServices (45 - 45) <A3ABF20B-ED3A-32B5-830E-B37831A45A80> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices
        0x7fff92e40000 -     0x7fff92e57fff  com.apple.CFOpenDirectory (10.8 - 151.10) <7AD5F6E7-A745-3FF4-B813-9D064A8146EC> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory. framework/Versions/A/CFOpenDirectory
        0x7fff92e58000 -     0x7fff92e60ff7  libsystem_dnssd.dylib (379.38.1) <BDCB8566-0189-34C0-9634-35ABD3EFE25B> /usr/lib/system/libsystem_dnssd.dylib
        0x7fff92e61000 -     0x7fff92e77fff  com.apple.MultitouchSupport.framework (235.29 - 235.29) <617EC8F1-BCE7-3553-86DD-F857866E1257> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSuppor t
        0x7fff92e78000 -     0x7fff92ebbff7  com.apple.bom (12.0 - 192) <0BF1F2D2-3648-36B7-BE4B-551A0173209B> /System/Library/PrivateFrameworks/

    Hi Michael,
    Based on the crash report, I'm fairly confident that this is related to an
    obscure (or less-so as more reports come in) OS X Font installation
    issue we have been tracking.  While we haven't been able to
    reproduce it in-house, we have seen an uptick in reports with the
    release of Audition CC and have been able to troubleshoot
    on user systems.  We expect to have an update to fix this issue soon.
    In the meantime, you should be able to work around this problem with the
    following steps:
    1. Open Finder and click Go in the menu
    2. Holding down the OPTION key, you should see an entry appear for
    "Library"  Hold OPTION and click on Library.
    3. In Library, open Preferences > Adobe > Audition > 6.0
    4. Download the Debug Database.txt file in the following link and save it to this folder:
    http://helpx.adobe.com/audition/kb/audition-cs6-crashes-launch/_jcr_content/main-pars/down load/file.res/Debug%20Database.txt
    5. Launch Audition
    This file contains a bit of info that instructs Audition to use a
    different graphics acceleration library which avoids this issue.  I
    believe this will resolve the problem and allow Audition to launch
    successfully.

  • Create PDF document from Word with hyperlink index entries

    Hello,
    I'm having a MS Word 2010 document with a content and index directory, both directories were created with the official Word functions and their page numbers are updated automatically. If I convert this document to a PDF file with Acrobat 9 Pro, the entries within the content directory are hyperlinks (if I click on a chapter the corresponding page opens).
    But this doesn't work with the index directory at the end of the document. Where can I activate the hyperlink functionality for index directories?
    Thanks for your help,
    Devid

    Hi,
    thanks for this info.
    On another computer I have Acrobat X Pro installed, but the result is the same. Or did I missed something?

  • Scaleability with Functions in SQL queries

    Hi,
    In one of our applications we have many views that use a packaged function in the where clause to filter data. This function uses a SYS_CONTEXT() to set and get values. There are couple of issues while using this approach:
    1/ The deterministic function doesn't allow any scability with PQ-server.
    2/ Another issue with this function and also the SYS_CONTEXT-function, they manuipulate the estimated CBO-statistics.
      CREATE TABLE TAB_I
      COLUMN1 NUMBER(16, 0) NOT NULL
    , COLUMN2 VARCHAR2(20)
    , CONSTRAINT TAB_I_PK PRIMARY KEY
        COLUMN1
      ENABLE
    CREATE TABLE TAB_V
        I_COL1     NUMBER(16,0) NOT NULL ENABLE,
        VERSION_ID NUMBER(16,0) NOT NULL ENABLE,
        CRE_DATIM TIMESTAMP (6) NOT NULL ENABLE,
        TERM_DATIM TIMESTAMP (6) NOT NULL ENABLE,
        VERSION_VALID_FROM DATE NOT NULL ENABLE,
        VERSION_VALID_TILL DATE NOT NULL ENABLE,
        CONSTRAINT TAB_V_PK PRIMARY KEY (I_COL1, VERSION_ID) USING INDEX NOCOMPRESS LOGGING ENABLE,
        CONSTRAINT COL1_FK FOREIGN KEY (I_COL1) REFERENCES TAB_I (COLUMN1) ENABLE
    CREATE OR REPLACE
    PACKAGE      app_bitemporal_rules IS
    FUNCTION f_knowledge_time RETURN TIMESTAMP DETERMINISTIC;
    END app_bitemporal_rules;
    create or replace
    PACKAGE BODY      app_bitemporal_rules IS
    FUNCTION f_knowledge_time RETURN TIMESTAMP DETERMINISTIC IS
    BEGIN
         RETURN TO_TIMESTAMP(SYS_CONTEXT ('APP_USR_CTX', 'KNOWLEDGE_TIME'),'DD.MM.YYYY HH24.MI.SSXFF');
    END f_knowledge_time;
    END app_bitemporal_rules;
    explain plan for select *
    FROM tab_i
    JOIN tab_v
    ON tab_i.column1 = tab_v.i_col1
    AND           app_bitemporal_rules.f_knowledge_time BETWEEN tab_v.CRE_DATIM AND tab_v.TERM_DATIM
    where tab_i.column1 = 11111;
    select * from table(dbms_xplan.display);
    Plan hash value: 621902595
    | Id  | Operation                    | Name     | Rows  | Bytes | Cost (%CPU)| Time     |
    |   0 | SELECT STATEMENT             |          |     1 |    95 |     5   (0)| 00:00:06 |
    |   1 |  NESTED LOOPS                |          |     1 |    95 |     5   (0)| 00:00:06 |
    |   2 |   TABLE ACCESS BY INDEX ROWID| TAB_I    |     1 |    25 |     1   (0)| 00:00:02 |
    |*  3 |    INDEX UNIQUE SCAN         | TAB_I_PK |     1 |       |     1   (0)| 00:00:02 |
    |*  4 |   TABLE ACCESS FULL          | TAB_V    |     1 |    70 |     4   (0)| 00:00:05 |
    Predicate Information (identified by operation id):
       3 - access("TAB_I"."COLUMN1"=11111)
       4 - filter("TAB_V"."I_COL1"=11111 AND
                  "TAB_V"."CRE_DATIM"<="APP_BITEMPORAL_RULES"."F_KNOWLEDGE_TIME"() AND
                  "TAB_V"."TERM_DATIM">="APP_BITEMPORAL_RULES"."F_KNOWLEDGE_TIME"())
    Note
       - 'PLAN_TABLE' is old version
       - dynamic sampling used for this statement (level=2)
    explain plan for select *
    FROM tab_i
    JOIN tab_v
    ON tab_i.column1 = tab_v.i_col1
    AND           '10-OCT-2011' BETWEEN tab_v.CRE_DATIM AND tab_v.TERM_DATIM
    where tab_i.column1 = 11111;
    select * from table(dbms_xplan.display);  
    Plan hash value: 621902595
    | Id  | Operation                    | Name     | Rows  | Bytes | Cost (%CPU)| Time     |
    |   0 | SELECT STATEMENT             |          |   256 | 24320 |     5   (0)| 00:00:06 |
    |   1 |  NESTED LOOPS                |          |   256 | 24320 |     5   (0)| 00:00:06 |
    |   2 |   TABLE ACCESS BY INDEX ROWID| TAB_I    |     1 |    25 |     1   (0)| 00:00:02 |
    |*  3 |    INDEX UNIQUE SCAN         | TAB_I_PK |     1 |       |     1   (0)| 00:00:02 |
    |*  4 |   TABLE ACCESS FULL          | TAB_V    |   256 | 17920 |     4   (0)| 00:00:05 |
    Predicate Information (identified by operation id):
       3 - access("TAB_I"."COLUMN1"=11111)
       4 - filter("TAB_V"."I_COL1"=11111 AND "TAB_V"."CRE_DATIM"<=TIMESTAMP'
                  2011-10-10 00:00:00.000000000' AND "TAB_V"."TERM_DATIM">=TIMESTAMP' 2011-10-10
                  00:00:00.000000000')
    Note
       - 'PLAN_TABLE' is old version
       - dynamic sampling used for this statement (level=2)   As can be seen in the second plan the cardinality has been guessed correctly, but not in the first case.
    I have also tried with:
    ASSOCIATE STATISTICS WITH packages app_bitemporal_rules DEFAULT COST (1000000/*246919*/,1000,0) DEFAULT SELECTIVITY 50;
    But, this just leads to a increased cost, but no change in cardinality.
    The (1) problem gets solved if I directly use "TO_TIMESTAMP(SYS_CONTEXT ('APP_USR_CTX', 'KNOWLEDGE_TIME'),'DD.MM.YYYY HH24.MI.SSXFF')" in the where clause. But am not able to find a solution for the (2) issue.
    Can you please help.
    Regards,
    Vikram R

    Hi Vikram,
    On the subject of using [url http://download.oracle.com/docs/cd/E11882_01/server.112/e26088/statements_4006.htm#i2115932]ASSOCIATE STATISTICS, having done a little investigation on 11.2.0.2, I'm having trouble adjusting selectivity via "associate statististics ... default selectivity" but no problems with adjusting default cost.
    I've also tried to do the same using an interface type and am running into other issues.
    It's not functionality that I'm overly familiar with as I try to avoid/eliminate using functions in predicates.
    Further analysis/investigation required.
    Including test case of what I've done so far in case anyone else wants to chip in.
    SQL> select * from v$version;
    BANNER
    Oracle Database 11g Enterprise Edition Release 11.2.0.2.0 - 64bit Production
    PL/SQL Release 11.2.0.2.0 - Production
    CORE    11.2.0.2.0      Production
    TNS for Linux: Version 11.2.0.2.0 - Production
    NLSRTL Version 11.2.0.2.0 - Production
    SQL> drop table t1;
    Table dropped.
    SQL>
    SQL> create table t1
      2  as
      3  select rownum col1
      4  from   dual
      5  connect by rownum <= 100000;
    Table created.
    SQL>
    SQL> exec dbms_stats.gather_table_stats(USER,'T1');
    PL/SQL procedure successfully completed.
    SQL>
    SQL> create or replace function f1
      2  return number
      3  as
      4  begin
      5   return 1;
      6  end;
      7  /
    Function created.
    SQL>
    SQL> create or replace function f2 (
      2   i_col1 in number
      3  )
      4  return number
      5  as
      6  begin
      7   return 1;
      8  end;
      9  /
    Function created.
    SQL> Created one table with 100000 rows.
    Two functions - one without arguments, one with (for later).
    With no associations:
    SQL> select * from user_associations;
    no rows selected
    SQL> Run a statement that uses the function:
    SQL> select count(*) from t1 where col1 >= f1;
      COUNT(*)
        100000
    SQL> select * from table(dbms_xplan.display_cursor);
    PLAN_TABLE_OUTPUT
    SQL_ID  gm7ppkbzut114, child number 0
    select count(*) from t1 where col1 >= f1
    Plan hash value: 3724264953
    | Id  | Operation          | Name | Rows  | Bytes | Cost (%CPU)| Time     |
    |   0 | SELECT STATEMENT   |      |       |       |   139 (100)|          |
    |   1 |  SORT AGGREGATE    |      |     1 |     5 |            |          |
    |*  2 |   TABLE ACCESS FULL| T1   |  5000 | 25000 |   139  (62)| 00:00:01 |
    Predicate Information (identified by operation id):
       2 - filter("COL1">="F1"())
    19 rows selected.
    SQL> Shows that default selectivity of 5% for an equality predicate against function.
    Let's try to adjust the selectivity using associate statistics - the argument for selectivity should be a percentage between 0 and 100:
    (turning off cardinality feedback for clarity/simplicity)
    SQL> alter session set "_optimizer_use_feedback" = false;
    Session altered.
    SQL>
    SQL> ASSOCIATE STATISTICS WITH FUNCTIONS f1 default selectivity 100;
    Statistics associated.
    SQL> select count(*) from t1 where col1 >= f1;
      COUNT(*)
        100000
    SQL> select * from table(dbms_xplan.display_cursor);
    PLAN_TABLE_OUTPUT
    SQL_ID  gm7ppkbzut114, child number 1
    select count(*) from t1 where col1 >= f1
    Plan hash value: 3724264953
    | Id  | Operation          | Name | Rows  | Bytes | Cost (%CPU)| Time     |
    |   0 | SELECT STATEMENT   |      |       |       |   139 (100)|          |
    |   1 |  SORT AGGREGATE    |      |     1 |     5 |            |          |
    |*  2 |   TABLE ACCESS FULL| T1   |  5000 | 25000 |   139  (62)| 00:00:01 |
    Predicate Information (identified by operation id):
       2 - filter("COL1">="F1"())
    19 rows selected.
    SQL> Didn't make any difference to selectivity.
    An excerpt from a 10053 trace file had the following:
    ** Performing dynamic sampling initial checks. **
    ** Dynamic sampling initial checks returning FALSE.
      No statistics type defined for function F1
      No default cost defined for function F1So, crucially what's missing here is a clause saying:
    No default selectivity defined for function F1But there's no other information that I could see to indicate why it should be discarded.
    Moving on, adjusting the cost does happen:
    SQL>exec spflush;
    PL/SQL procedure successfully completed.
    SQL> disassociate statistics from functions f1;
    Statistics disassociated.
    SQL>
    SQL> ASSOCIATE STATISTICS WITH FUNCTIONS f1 default selectivity 100 default cost (100,5,0);
    Statistics associated.
    SQL> select count(*) from t1 where col1 >= f1;
      COUNT(*)
        100000
    SQL> select * from table(dbms_xplan.display_cursor);
    PLAN_TABLE_OUTPUT
    SQL_ID  gm7ppkbzut114, child number 0
    select count(*) from t1 where col1 >= f1
    Plan hash value: 3724264953
    | Id  | Operation          | Name | Rows  | Bytes | Cost (%CPU)| Time     |
    |   0 | SELECT STATEMENT   |      |       |       |   500K(100)|          |
    |   1 |  SORT AGGREGATE    |      |     1 |     5 |            |          |
    |*  2 |   TABLE ACCESS FULL| T1   |  5000 | 25000 |   500K  (1)| 00:41:41 |
    Predicate Information (identified by operation id):
       2 - filter("COL1">="F1"())
    19 rows selected.
    SQL> And we see the following in a 10053:
      No statistics type defined for function F1
      Default costs for function F1 CPU: 100, I/O: 5So, confirmation that default costs for function were found and applied but nothing else about selectivity again.
    I wondered whether the lack of arguments for function F1 made any difference, hence function F2.
    Didn't seem to:
    Vanilla:
    SQL> select count(*) from t1 where col1 >= f2(col1);
      COUNT(*)
        100000
    SQL>
    SQL> select * from table(dbms_xplan.display_cursor);
    PLAN_TABLE_OUTPUT
    SQL_ID  2wxw32wadgc1v, child number 0
    select count(*) from t1 where col1 >= f2(col1)
    Plan hash value: 3724264953
    | Id  | Operation          | Name | Rows  | Bytes | Cost (%CPU)| Time     |
    |   0 | SELECT STATEMENT   |      |       |       |   139 (100)|          |
    |   1 |  SORT AGGREGATE    |      |     1 |     5 |            |          |
    |*  2 |   TABLE ACCESS FULL| T1   |  5000 | 25000 |   139  (62)| 00:00:01 |
    Predicate Information (identified by operation id):
       2 - filter("COL1">="F2"("COL1"))
    19 rows selected.
    SQL> Plus association:
    SQL>exec spflush;
    PL/SQL procedure successfully completed.
    SQL>
    SQL> associate statistics with functions f2 default selectivity 90 default cost (100,5,0);
    Statistics associated.
    SQL> select count(*) from t1 where col1 >= f2(col1);
      COUNT(*)
        100000
    SQL>
    SQL> select * from table(dbms_xplan.display_cursor);
    PLAN_TABLE_OUTPUT
    SQL_ID  2wxw32wadgc1v, child number 0
    select count(*) from t1 where col1 >= f2(col1)
    Plan hash value: 3724264953
    | Id  | Operation          | Name | Rows  | Bytes | Cost (%CPU)| Time     |
    |   0 | SELECT STATEMENT   |      |       |       |   500K(100)|          |
    |   1 |  SORT AGGREGATE    |      |     1 |     5 |            |          |
    |*  2 |   TABLE ACCESS FULL| T1   |  5000 | 25000 |   500K  (1)| 00:41:41 |
    Predicate Information (identified by operation id):
       2 - filter("COL1">="F2"("COL1"))
    19 rows selected.
    SQL> Just to confirm associations:
    SQL> select * from user_associations;
    OBJECT_OWNER                   OBJECT_NAME                    COLUMN_NAME                    OBJECT_TY
    STATSTYPE_SCHEMA               STATSTYPE_NAME                 DEF_SELECTIVITY DEF_CPU_COST DEF_IO_COST DEF_NET_COST
    INTERFACE_VERSION MAINTENANCE_TY
    RIMS                           F2                                                            FUNCTION
                                                                               90          100           5
                    0 USER_MANAGED
    RIMS                           F1                                                            FUNCTION
                                                                              100          100           5
                    0 USER_MANAGED
    SQL> So.... started thinking about whether using an interface type would help?
    SQL> CREATE OR REPLACE TYPE test_stats_ot AS OBJECT
      2  (dummy_attribute NUMBER
      3  ,STATIC FUNCTION ODCIGetInterfaces (
      4     ifclist                OUT SYS.ODCIObjectList
      5   ) RETURN NUMBER
      6  ,STATIC FUNCTION ODCIStatsSelectivity (
      7      pred                   IN  SYS.ODCIPredInfo,
      8      sel                    OUT NUMBER,
      9      args                   IN  SYS.ODCIArgDescList,
    10      strt                   IN  NUMBER,
    11      stop                   IN  NUMBER,
    12      --i_col1                 in  NUMBER,
    13      env                    IN  SYS.ODCIEnv
    14   ) RETURN NUMBER
    15  --,STATIC FUNCTION ODCIStatsFunctionCost (
    16  --    func                   IN  SYS.ODCIPredInfo,
    17  --    cost                   OUT SYS.ODCICost,
    18  --    args                   IN  SYS.ODCIArgDescList,
    19  --    i_col1                 in  NUMBER,
    20  --    env                    IN  SYS.ODCIEnv
    21  -- ) RETURN NUMBER
    22  );
    23  /
    Type created.
    SQL> CREATE OR REPLACE TYPE BODY test_stats_ot
      2  AS
      3   STATIC FUNCTION ODCIGetInterfaces (
      4    ifclist                OUT SYS.ODCIObjectList
      5   ) RETURN NUMBER
      6   IS
      7   BEGIN
      8    ifclist := sys.odciobjectlist(sys.odciobject('SYS','ODCISTATS2'));
      9    RETURN odciconst.success;
    10   END;
    11   STATIC FUNCTION ODCIStatsSelectivity
    12   (pred                   IN  SYS.ODCIPredInfo,
    13    sel                    OUT NUMBER,
    14    args                   IN  SYS.ODCIArgDescList,
    15    strt                   IN  NUMBER,
    16    stop                   IN  NUMBER,
    17    --i_col1                 in  NUMBER,
    18    env                    IN  SYS.ODCIEnv)
    19   RETURN NUMBER
    20   IS
    21   BEGIN
    22     sel := 90;
    23     RETURN odciconst.success;
    24   END;
    25  -- STATIC FUNCTION ODCIStatsFunctionCost (
    26  --  func                   IN  SYS.ODCIPredInfo,
    27  --  cost                   OUT SYS.ODCICost,
    28  --  args                   IN  SYS.ODCIArgDescList,
    29  --  i_col1                 in  NUMBER,
    30  --  env                    IN  SYS.ODCIEnv
    31  -- ) RETURN NUMBER
    32  -- IS
    33  -- BEGIN
    34  --  cost := sys.ODCICost(10000,5,0,0);
    35  --  RETURN odciconst.success;
    36  -- END;
    37  END;
    38  /
    Type body created.
    SQL> But this approach is not happy - perhaps not liking the function with no arguments?
    SQL> disassociate statistics from functions f1;
    Statistics disassociated.
    SQL> ASSOCIATE STATISTICS WITH FUNCTIONS f1 USING test_stats_ot;
    Statistics associated.
    SQL> select count(*) from t1 where col1 >= f1;
    select count(*) from t1 where col1 >= f1
    ERROR at line 1:
    ORA-00604: error occurred at recursive SQL level 1
    ORA-06550: line 12, column 22:
    PLS-00103: Encountered the symbol "ÀÄ" when expecting one of the following:
    ) , * & = - + < / > at in is mod remainder not rem =>
    <an exponent (**)> <> or != or ~= >= <= <> and or like like2
    like4 likec between || multiset member submultiset
    SQL> So, back to F2 again (uncommenting argument i_col1 in ODCIStatsSelectivity):
    SQL> disassociate statistics from functions f1;
    Statistics disassociated.
    SQL> disassociate statistics from functions f2;
    Statistics disassociated.
    SQL> ASSOCIATE STATISTICS WITH FUNCTIONS f2 USING test_stats_ot;
    Statistics associated.
    SQL> select count(*) from t1 where col1 >= f2(col1);
      COUNT(*)
        100000
    SQL> select * from table(dbms_xplan.display_cursor);
    PLAN_TABLE_OUTPUT
    SQL_ID  2wxw32wadgc1v, child number 0
    select count(*) from t1 where col1 >= f2(col1)
    Plan hash value: 3724264953
    | Id  | Operation          | Name | Rows  | Bytes | Cost (%CPU)| Time     |
    |   0 | SELECT STATEMENT   |      |       |       |   139 (100)|          |
    |   1 |  SORT AGGREGATE    |      |     1 |     5 |            |          |
    |*  2 |   TABLE ACCESS FULL| T1   |  5000 | 25000 |   139  (62)| 00:00:01 |
    Predicate Information (identified by operation id):
       2 - filter("COL1">="F2"("COL1"))
    19 rows selected.
    SQL> Nothing obviously happening.
    You'll note also in my interface type implementation that I commented out a declaration of ODCIStatsFunctionCost.
    This post is probably already too long already so I've skipped some of the detail.
    But when ODCIStatsFunctionCost was used with function F2, I presume I've made a mistake in the implementation because I had an error in the 10053 trace as follows:
      Calling user-defined function cost function...
        predicate: "RIMS"."F2"("T1"."COL1")
      declare
         cost sys.ODCICost := sys.ODCICost(NULL, NULL, NULL, NULL);
         arg0 NUMBER := null;
        begin
          :1 := "RIMS"."TEST_STATS_OT".ODCIStatsFunctionCost(
                         sys.ODCIFuncInfo('RIMS',
                                'F2',
                                NULL,
                                1),
                         cost,
                         sys.ODCIARGDESCLIST(sys.ODCIARGDESC(2, 'T1', 'RIMS', '"COL1"', NULL, NULL, NULL))
                         , arg0,
                         sys.ODCIENV(:5,:6,:7,:8));
          if cost.CPUCost IS NULL then
            :2 := -1.0;
          else
            :2 := cost.CPUCost;
          end if;
          if cost.IOCost IS NULL then
            :3 := -1.0;
          else
            :3 := cost.IOCost;
          end if;
          if cost.NetworkCost IS NULL then
            :4 := -1.0;
          else
            :4 := cost.NetworkCost;
          end if;
          exception
            when others then
              raise;
        end;
    ODCIEnv Bind :5 Value 0
    ODCIEnv Bind :6 Value 0
    ODCIEnv Bind :7 Value 0
    ODCIEnv Bind :8 Value 4
      ORA-6550 received when calling RIMS.TEST_STATS_OT.ODCIStatsFunctionCost -- method ignoredThere was never any such feedback about ODCIStatsSelectivity.
    So, in summary, more questions than answers.
    I'll try to have another look later.

  • Is it possible to put an iDVD file, with chapter index, on a website?

    Is it possible to put an iDVD file, with chapter index, on a website?

    you could offer the VIDEO_TS folder of a videoDVD for download.
    but, no, you can not offer the functionality of a videoDVD by simply uploading the files.
    consider any web-site generator (software, on-line/template based) to create a website with 'links' to the indiviual videos. with some craftmanship you could 'emulate' the look&feel of your DVD …-
    btw: users of web-sites usually expect a diff. 'format' for video than mp2s of a videoDVD.

  • Partial insert with secondary index

    I'd like to use partial inserts (DB_DBT_PARTIAL).
    However, I also need secondary indexes. Now when I insert partial data, the secondary index function is immediately called, but still I do not have enough data to calculate the secondary key. I tried to supply some app_data do the DBT, but it does not reach the secondary index function.
    Is there any way I can use partial inserts together with secondary indexes?

    When writing a partial record to the primary database, here's what we do:
    1. Look up the existing record via get()
    2. Using the existing record and the partial DBT, construct the new record
    3. Pass that newly constructed record to the secondary key generation function
    You don't need to do anything special, your callback will receive the full record, even though you passed us a partial DBT. If that's not the case, there's a bug in BDB and we'd need to see your code.
    app_data is a private field, you should not try to use it or expect it to work predictably. In this situation, we're passing a brand new DBT to the callback function, not the DBT you gave us. That's why app_data is empty.
    Thanks,
    Bogdan Coman

  • BPM xpath issue with last-index-within-string

    Hey all,
    I have a script task in BPM that updates a field by using multiple xpath functions. I have narrowed the issue down to the oraext:last-index-within-string function.
    If I do something like oraext:last-index-within-string('ora/in/ok/d', '/').....I get 9 like expected.
    But if I base it off the request data like so:
    oraext:last-index-within-string(bpmn:getDataObject('Request')/ns:document/ns1:dDocAccount, '/')........when I go to em I have an internal xpath error.
    I'm assuming it has something to do with using bpmn:getDataObject as a parameter. But I'm not sure what. If I use the getDataObject as a parameter in substring like so:
    substring(bpmn:getDataObject('Request')/ns:document/ns1:dDocAccount, 8)....it works as expected.
    What is it about the combination with last-index-within-string that is giving me an issue??
    Thanks
    John

    Got it. Apparently, sometimes with xpath, you have to concatenate the variable with an empty string to change it into a string....sometimes, but not all the time...yay.... I'm guessing the xpath inbuilt functions already know to convert the variable passed in into a string, whereas the oraext functions don't. I could be completely wrong on that though...:-P . Anyway, this works:
    oraext:last-index-within-string(concat(bpmn:getDataObject('Result')/ns:document/ns1:dDocAccount, ''), '/')
    Thanks,
    John

  • CS3 crashes on startup with non-admin user

    My wife decided she wanted to use Photoshop so I loaded a shortcut on her desk top and fired it up - only to watch it crash. My account has admin privileges, hers does not. So, I switched her account and all worked. I switched her back to a regular user and crash!
    I can not find anywhere that Photoshop needs admin privileges to run and I prefer not set her up that way just for safe computing. Is it indeed necessary or can some finer grain of privilege be set? Or something else entirely?
    BTW, the err log shows the problem coming from the ubiquitous msvcr80.dll
    Thanks in advance
    Jerry

    Hi jkharter,
    The different users will have different profiles, and probably different add-ons. One of you is using Roboform and not updated it. Try updating roboform.
    Please post back with how you get on, and whilst logged in mark the thread as solved, if applicable. (That helps others find it, note breakpad only searches sumo for solved threads)
    Crash Info
    *Crash ID report [https://crash-stats.mozilla.com/report/index/5d552f92-8b0d-4420-974c-880802111119 5d552f92-8b0d-4420-974c-880802111119]
    * Signature : DbgBreakPoint
    * related bug : Bug 691271 - Crash mainly close to startup in [@ DebugBreak ] [@ DbgBreakPoint ] with Roboform

  • Function Indexes

    Does anyone know how to create an index using a function like UPPER, and then getting Oracle to use the index when issuing a SELECT statement using UPPER in the WHERE clause?

    They're available in EE only. Same with bitmap indexes too.

  • Version 4.0.0.12 (EA) - functional indexes of a table are listed twice

    Hello,
    it seems that functional indexes are listed twice if there are two functions within the index columns.....
    Example (Content from the indexes tab of the table view):
    owner    ....._PK    UNIQUE    VALID    NORMAL    N    NO
    NO    ....._UUID 
    owner    ....._UI1    UNIQUE    VALID    FUNCTION-BASED NORMAL    N    NO    ENABLED    NO    SYS_NC00016$, SYS_NC00017$, ....._ID, ....._PLAN_ID    SYS_EXTRACT_UTC("....._START")
    owner    ....._UI1    UNIQUE    VALID    FUNCTION-BASED NORMAL    N    NO    ENABLED    NO    SYS_NC00016$, SYS_NC00017$, ....._ID, ....._PLAN_ID    SYS_EXTRACT_UTC("....._END")
    Both functions are in the same index "....._UI1".
    The detail panel shows the same details.

    MPf_dba&amp;amp;dataGmbH wrote:
    Hello,
    it seems that functional indexes are listed twice if there are two functions within the index columns.....
    Example (Content from the indexes tab of the table view):
    owner    ....._PK    UNIQUE    VALID    NORMAL    N    NO 
    NO    ....._UUID  
    owner    ....._UI1    UNIQUE    VALID    FUNCTION-BASED NORMAL    N    NO    ENABLED    NO    SYS_NC00016$, SYS_NC00017$, ....._ID, ....._PLAN_ID    SYS_EXTRACT_UTC("....._START")
    owner    ....._UI1    UNIQUE    VALID    FUNCTION-BASED NORMAL    N    NO    ENABLED    NO    SYS_NC00016$, SYS_NC00017$, ....._ID, ....._PLAN_ID    SYS_EXTRACT_UTC("....._END")
    Both functions are in the same index "....._UI1".
    The detail panel shows the same details.
    What version of SQL*Developer?
    I am using 3.2.20.09 and created 2 function-based indexes on a practice employee table, upper() on both first and last names.  When displaying indexes through the table display using the Indexes tab and through the object navigator using indexes I only see each index once.
    On a second pass I created a third composite index with upper on both first and last names and got the results similar to those you describe in both places.  The column names (expression name in the table index pane) were different.

Maybe you are looking for

  • Merging two or more separate Pages documents into a single document

    Hello everyone... I have written a book as a bunch of separate Pages docs. I want to compile these together as a single document that I can edit and paginate. Therefore, I don't want to convert to PDF format, since I wouldn't be able to do any editin

  • DC Demoted, now issues siezing roles. AD Broken.

    Hello, I've taken ownership of yet another troubled network. This time, the issue is that the server 2012 domain controller was expereincing hardware failure. I set up another Server 2012 machine, managed to add it to the forest, and then demoted the

  • Excise number rage error

    Hi Gurus I am getting following error while posting GR (MIGO) 1)Maintain number range object for object J_1IRG23A1, year 2009, excise group E1 Number range i have maintain in for object start with 01 year no rage from     to (after maintaining number

  • No memory left on iPad

    Since the beginning of February my iPad has said it has no available memory. Before this I knew I was low, but could still load up to 8 photos. Since then I have deleted over 30 photos, one app and a document that was 1.4 gig in size. It still says i

  • Delete Address Book Entirely?

    I keep a pretty robust address book and I find it easier to update a master list in a .WAB file and reload into mobile devices. Does anyone know how to mass delete the address book using the desktop software? I'm connected to a Curve 8310.