MDATA performance

Hi,
I am contemplating the choice between MDATA and Field sections from performance point of view. My question is, if i have N (say 10) attributes of text, that change quite frequently, then which one of the two options will have better performance:
1. Changing (removing and adding) N MDATA section values.
2. Indexing the whole document where attributes are stored as Field sections.
To me, it appears that MDATA should give better performance, but how does performance depends on N ?
Thx,
RK

With the field section approach you are going to cause the index to get more fragmented (since you will be Sync'ing more often) and therefore affect query performance.
I expect the update performance for MDATA to be at least as good (if not better) as the update performance for field sections because even if all you have in your document is the field sections you are updating, the same values need to be populated in the $I table as with MDATA approach. Make sure you use that CTX_DDL.ADD_MDATA overloaded procedure which allows you to update MDATA values in BATCH - this will make the PL/SQL overhead small as N increases.
Faisal

Similar Messages

  • Start Routine code error of Perform routine 9998

    Hi,
    I have install standard and then migrate to 7.0 all the flow of modeling.
    but after loading data in PSA, while activation i will found following problem (error in routine).
    In PERFORM or CALL FUNCTION ROUTINE_9998, the actual parameter SOURCE_PACKAGE is incompatible with the formal parameter DATA_PACKAGE.
    please suggest me.

    PROGRAM trans_routine.
          CLASS routine DEFINITION
    CLASS lcl_transform DEFINITION.
      PUBLIC SECTION.
    Attributs
        DATA:
          p_check_master_data_exist
                TYPE RSODSOCHECKONLY READ-ONLY,
    *-    Instance for getting request runtime attributs;
        Available information: Refer to methods of
        interface 'if_rsbk_request_admintab_view'
          p_r_request
                TYPE REF TO if_rsbk_request_admintab_view READ-ONLY.
      PRIVATE SECTION.
        TYPE-POOLS: rsd, rstr.
      Rule specific types
        TYPES:
          BEGIN OF tys_SC_1,
         InfoObject: 0MPOINT Measuring point.
            MPOINT           TYPE /BI0/OIMPOINT,
         InfoObject: 0MDOC Measurement Document.
            MDOC           TYPE /BI0/OIMDOC,
         InfoObject: 0MPOBJ Object Number of Measuring Point Object.
            MPOBJ           TYPE /BI0/OIMPOBJ,
         InfoObject: 0MPTYP Type of Measuring Point.
            MPTYP           TYPE /BI0/OIMPTYP,
         InfoObject: 0PSORT Position Number of Measuring Point in Object (
    *Sort Field).
            PSORT           TYPE /BI0/OIPSORT,
         InfoObject: 0ASSEMBLY Assembly.
            ASSEMBLY           TYPE /BI0/OIASSEMBLY,
         InfoObject: 0ATINN Internal Characteristic Number.
            ATINN           TYPE /BI0/OIATINN,
         InfoObject: 0MDATE Date of Measurement.
            MDATE           TYPE /BI0/OIMDATE,
         InfoObject: 0TIME Time.
            TIME           TYPE /BI0/OITIME,
         InfoObject: 0DESIRSI Target Value for Measuring Point in SI Unit.
            DESIRSI           TYPE /BI0/OIDESIRSI,
         InfoObject: 0TVIND Target Value for Measuring Point Is Defined.
            TVIND           TYPE /BI0/OITVIND,
         InfoObject: 0MRMINI Lower Measurement Area Limit Is Defined.
            MRMINI           TYPE /BI0/OIMRMINI,
         InfoObject: 0MRMINSI Lower Meas. Limit or Min. Total Counter Read
    *ing in SI Unit.
            MRMINSI           TYPE /BI0/OIMRMINSI,
         InfoObject: 0MRMAXI Upper Measurement Area Limit Is Defined.
            MRMAXI           TYPE /BI0/OIMRMAXI,
         InfoObject: 0SIUNIT SI unit.
            SIUNIT           TYPE /BI0/OISIUNIT,
         InfoObject: 0CJUMPSI Counter Overflow Reading in SI Unit.
            CJUMPSI           TYPE /BI0/OICJUMPSI,
         InfoObject: 0PYEARSI Annual Performance in SI Unit.
            PYEARSI           TYPE /BI0/OIPYEARSI,
         InfoObject: 0CREATED_BY Created By.
            CREATED_BY           TYPE /BI0/OICREATED_BY,
         InfoObject: 0READSI Measured Value/Total Counter Reading in SI Un
    *it.
            READSI           TYPE /BI0/OIREADSI,
         InfoObject: 0READEU Measured Value in Document Entry Unit.
            READEU           TYPE /BI0/OIREADEU,
         InfoObject: 0RECDU Unit of Measurement for Document Entry.
            RECDU           TYPE /BI0/OIRECDU,
         InfoObject: 0CNTRRSI Counter Reading in SI Unit.
            CNTRRSI           TYPE /BI0/OICNTRRSI,
         InfoObject: 0CDIFFSI Counter Reading Difference in SI Unit.
            CDIFFSI           TYPE /BI0/OICDIFFSI,
         InfoObject: 0CAT_TYPE Catalog.
            CAT_TYPE           TYPE /BI0/OICAT_TYPE,
         InfoObject: 0CAT_GROUP Code group.
            CAT_GROUP           TYPE /BI0/OICAT_GROUP,
         InfoObject: 0FI_STATUS Processing Status.
            FI_STATUS           TYPE /BI0/OIFI_STATUS,
         InfoObject: 0DIM_ID Dimension Key.
            DIM_ID           TYPE /BI0/OIDIM_ID,
         InfoObject: 0CNTIND Measuring Point is Counter.
            CNTIND           TYPE /BI0/OICNTIND,
         InfoObject: 0EQUIPMENT Equipment Number.
            EQUIPMENT           TYPE /BI0/OIEQUIPMENT,
         InfoObject: 0FUNCT_LOC Functional Location.
            FUNCT_LOC           TYPE /BI0/OIFUNCT_LOC,
         InfoObject: 0CAT_CODE Code.
            CAT_CODE           TYPE /BI0/OICAT_CODE,
         InfoObject: 0MRMAXSI Upper Meas. Limit or Max. Total Counter Read
    *ing in SI Unit.
            MRMAXSI           TYPE /BI0/OIMRMAXSI,
         InfoObject: 0DOCAF Measurement Document Included for Associated T
    *ask.
            DOCAF           TYPE /BI0/OIDOCAF,
         InfoObject: 0RECORDMODE BW Delta Process: Update Mode.
            RECORDMODE           TYPE RODMUPDMOD,
         InfoObject: ZSTEXT Object Number Text.
            /BIC/ZSTEXT           TYPE /BIC/OIZSTEXT,
         Field: RECORD.
            RECORD           TYPE RSARECORD,
          END   OF tys_SC_1.
        TYPES:
          tyt_SC_1        TYPE STANDARD TABLE OF tys_SC_1
                            WITH NON-UNIQUE DEFAULT KEY.
    $$ begin of global - insert your declaration only below this line  -
        ... "insert your code here
    $$ end of global - insert your declaration only before this line   -
        METHODS
          start_routine
            IMPORTING
              request                  type rsrequest
              datapackid               type rsdatapid
            EXPORTING
              monitor                  type rstr_ty_t_monitors
            CHANGING
              SOURCE_PACKAGE              type tyt_SC_1
            RAISING
              cx_rsrout_abort.
        METHODS
          inverse_start_routine
            IMPORTING
              i_th_fields_outbound         TYPE rstran_t_field_inv
              i_r_selset_outbound          TYPE REF TO cl_rsmds_set
              i_is_main_selection          TYPE rs_bool
              i_r_selset_outbound_complete TYPE REF TO cl_rsmds_set
              i_r_universe_inbound         TYPE REF TO cl_rsmds_universe
            CHANGING
              c_th_fields_inbound          TYPE rstran_t_field_inv
              c_r_selset_inbound           TYPE REF TO cl_rsmds_set
              c_exact                      TYPE rs_bool.
    ENDCLASS.                    "routine DEFINITION
    $$ begin of 2nd part global - insert your code only below this line  *
    TYPES:
      BEGIN OF tys_SC_1_full,
         InfoObject: 0MPOINT Measuring point.
        MPOINT           TYPE /BI0/OIMPOINT,
         InfoObject: 0MDOC Measurement Document.
        MDOC           TYPE /BI0/OIMDOC,
         InfoObject: 0MPOBJ Object Number of Measuring Point Object.
        MPOBJ           TYPE /BI0/OIMPOBJ,
         InfoObject: 0MPTYP Type of Measuring Point.
        MPTYP           TYPE /BI0/OIMPTYP,
         InfoObject: 0PSORT Position Number of Measuring Point in Object (
    *Sort Field).
        PSORT           TYPE /BI0/OIPSORT,
         InfoObject: 0ASSEMBLY Assembly.
        ASSEMBLY           TYPE /BI0/OIASSEMBLY,
         InfoObject: 0ATINN Internal Characteristic Number.
        ATINN           TYPE /BI0/OIATINN,
         InfoObject: 0MDATE Date of Measurement.
        MDATE           TYPE /BI0/OIMDATE,
         InfoObject: 0TIME Time.
        TIME           TYPE /BI0/OITIME,
         InfoObject: 0DESIRSI Target Value for Measuring Point in SI Unit.
        DESIRSI           TYPE /BI0/OIDESIRSI,
         InfoObject: 0TVIND Target Value for Measuring Point Is Defined.
        TVIND           TYPE /BI0/OITVIND,
         InfoObject: 0MRMINI Lower Measurement Area Limit Is Defined.
        MRMINI           TYPE /BI0/OIMRMINI,
         InfoObject: 0MRMINSI Lower Meas. Limit or Min. Total Counter Read
    *ing in SI Unit.
        MRMINSI           TYPE /BI0/OIMRMINSI,
         InfoObject: 0MRMAXI Upper Measurement Area Limit Is Defined.
        MRMAXI           TYPE /BI0/OIMRMAXI,
         InfoObject: 0SIUNIT SI unit.
        SIUNIT           TYPE /BI0/OISIUNIT,
         InfoObject: 0CJUMPSI Counter Overflow Reading in SI Unit.
        CJUMPSI           TYPE /BI0/OICJUMPSI,
         InfoObject: 0PYEARSI Annual Performance in SI Unit.
        PYEARSI           TYPE /BI0/OIPYEARSI,
         InfoObject: 0CREATED_BY Created By.
        CREATED_BY           TYPE /BI0/OICREATED_BY,
         InfoObject: 0READSI Measured Value/Total Counter Reading in SI Un
    *it.
        READSI           TYPE /BI0/OIREADSI,
         InfoObject: 0READEU Measured Value in Document Entry Unit.
        READEU           TYPE /BI0/OIREADEU,
         InfoObject: 0RECDU Unit of Measurement for Document Entry.
        RECDU           TYPE /BI0/OIRECDU,
         InfoObject: 0CNTRRSI Counter Reading in SI Unit.
        CNTRRSI           TYPE /BI0/OICNTRRSI,
         InfoObject: 0CDIFFSI Counter Reading Difference in SI Unit.
        CDIFFSI           TYPE /BI0/OICDIFFSI,
         InfoObject: 0CAT_TYPE Catalog.
        CAT_TYPE           TYPE /BI0/OICAT_TYPE,
         InfoObject: 0CAT_GROUP Code group.
        CAT_GROUP           TYPE /BI0/OICAT_GROUP,
         InfoObject: 0FI_STATUS Processing Status.
        FI_STATUS           TYPE /BI0/OIFI_STATUS,
         InfoObject: 0DIM_ID Dimension Key.
        DIM_ID           TYPE /BI0/OIDIM_ID,
         InfoObject: 0CNTIND Measuring Point is Counter.
        CNTIND           TYPE /BI0/OICNTIND,
         InfoObject: 0EQUIPMENT Equipment Number.
        EQUIPMENT           TYPE /BI0/OIEQUIPMENT,
         InfoObject: 0FUNCT_LOC Functional Location.
        FUNCT_LOC           TYPE /BI0/OIFUNCT_LOC,
         InfoObject: 0CAT_CODE Code.
        CAT_CODE           TYPE /BI0/OICAT_CODE,
         InfoObject: 0MRMAXSI Upper Meas. Limit or Max. Total Counter Read
    *ing in SI Unit.
        MRMAXSI           TYPE /BI0/OIMRMAXSI,
         InfoObject: 0DOCAF Measurement Document Included for Associated T
    *ask.
        DOCAF           TYPE /BI0/OIDOCAF,
         InfoObject: 0RECORDMODE BW Delta Process: Record Mode.
        RECORDMODE           TYPE RODMUPDMOD,
         Field: RECNO Data record number.
        RECNO           TYPE RSARECORD,
      END   OF tys_SC_1_full.
    TYPES:
      tyt_SC_1_full        TYPE STANDARD TABLE OF tys_SC_1_full
                        WITH NON-UNIQUE DEFAULT KEY.
    TYPES:
      BEGIN OF tys_TG_1_full,
         Field: SID Master data ID.
        SID           TYPE RSSID,
         Field: DATAPAKID Data packet number.
        DATAPAKID           TYPE RSDATAPID,
         Field: RECORD Data record number.
        RECORD           TYPE RSARECORD,
         InfoObject: 0MPOINT Measuring point.
        MPOINT           TYPE /BI0/OIMPOINT,
         InfoObject: 0MDOC Measurement Document.
        MDOC           TYPE /BI0/OIMDOC,
         InfoObject: 0MRMINSI Lower Meas. Limit or Min. Total Counter Read
    *ing in SI Unit.
        MRMINSI           TYPE /BI0/OIMRMINSI,
         InfoObject: 0FI_STATUS Processing Status.
        FI_STATUS           TYPE /BI0/OIFI_STATUS,
         InfoObject: 0DIM_ID Dimension Key.
        DIM_ID           TYPE /BI0/OIDIM_ID,
         InfoObject: 0CNTIND Measuring Point is Counter.
        CNTIND           TYPE /BI0/OICNTIND,
         InfoObject: 0EQUIPMENT Equipment Number.
        EQUIPMENT           TYPE /BI0/OIEQUIPMENT,
         InfoObject: 0FUNCT_LOC Functional Location.
        FUNCT_LOC           TYPE /BI0/OIFUNCT_LOC,
         InfoObject: 0CAT_CODE Code.
        CAT_CODE           TYPE /BI0/OICAT_CODE,
         InfoObject: 0CAT_TYPE Catalog.
        CAT_TYPE           TYPE /BI0/OICAT_TYPE,
         InfoObject: 0CAT_GROUP Code group.
        CAT_GROUP           TYPE /BI0/OICAT_GROUP,
         InfoObject: 0CREATED_BY Created By.
        CREATED_BY           TYPE /BI0/OICREATED_BY,
         InfoObject: 0MPOBJ Object Number of Measuring Point Object.
        MPOBJ           TYPE /BI0/OIMPOBJ,
         InfoObject: 0READEU Measured Value in Document Entry Unit.
        READEU           TYPE /BI0/OIREADEU,
         InfoObject: 0CJUMPSI Counter Overflow Reading in SI Unit.
        CJUMPSI           TYPE /BI0/OICJUMPSI,
         InfoObject: 0PYEARSI Annual Performance in SI Unit.
        PYEARSI           TYPE /BI0/OIPYEARSI,
         InfoObject: 0PSORT Position Number of Measuring Point in Object (
    *Sort Field).
        PSORT           TYPE /BI0/OIPSORT,
         InfoObject: 0ASSEMBLY Assembly.
        ASSEMBLY           TYPE /BI0/OIASSEMBLY,
         InfoObject: 0ATINN Internal Characteristic Number.
        ATINN           TYPE /BI0/OIATINN,
         InfoObject: 0MDATE Date of Measurement.
        MDATE           TYPE /BI0/OIMDATE,
         InfoObject: 0TIME Time.
        TIME           TYPE /BI0/OITIME,
         InfoObject: 0TVIND Target Value for Measuring Point Is Defined.
        TVIND           TYPE /BI0/OITVIND,
         InfoObject: 0MRMINI Lower Measurement Area Limit Is Defined.
        MRMINI           TYPE /BI0/OIMRMINI,
         InfoObject: 0DESIRSI Target Value for Measuring Point in SI Unit.
        DESIRSI           TYPE /BI0/OIDESIRSI,
         InfoObject: 0SIUNIT SI unit.
        SIUNIT           TYPE /BI0/OISIUNIT,
         InfoObject: 0DESIREU Target Value for Measuring Point in Document
    Entry Unit.
        DESIREU           TYPE /BI0/OIDESIREU,
         InfoObject: 0CNTRRSI Counter Reading in SI Unit.
        CNTRRSI           TYPE /BI0/OICNTRRSI,
         InfoObject: 0CDIFFSI Counter Reading Difference in SI Unit.
        CDIFFSI           TYPE /BI0/OICDIFFSI,
         InfoObject: 0RECDU Unit of Measurement for Document Entry.
        RECDU           TYPE /BI0/OIRECDU,
         InfoObject: 0MRMINEU Lower Meas. Limit or Min. Total Counter Read
    *ing Document UoM.
        MRMINEU           TYPE /BI0/OIMRMINEU,
         InfoObject: 0MRMAXEU Upper Meas. Limit or Max. Total Counter Read
    *ing in Doc. M.U..
        MRMAXEU           TYPE /BI0/OIMRMAXEU,
         InfoObject: 0MRMAXI Upper Measurement Area Limit Is Defined.
        MRMAXI           TYPE /BI0/OIMRMAXI,
         InfoObject: 0CNTRREU Counter Reading in Document Entry Unit.
        CNTRREU           TYPE /BI0/OICNTRREU,
         InfoObject: 0CDIFFEU Counter Reading Difference in Document Entry
    Unit.
        CDIFFEU           TYPE /BI0/OICDIFFEU,
         InfoObject: 0RECORDMODE BW Delta Process: Record Mode.
        RECORDMODE           TYPE RODMUPDMOD,
         InfoObject: 0MRMAXSI Upper Meas. Limit or Max. Total Counter Read
    *ing in SI Unit.
        MRMAXSI           TYPE /BI0/OIMRMAXSI,
         InfoObject: 0READSI Measured Value/Total Counter Reading in SI Un
    *it.
        READSI           TYPE /BI0/OIREADSI,
      END   OF tys_TG_1_full.
    TYPES:
      BEGIN OF tys_SC_1__RULE_34,
         InfoObject: 0DESIRSI Target Value for Measuring Point in SI Unit.
        DESIRSI           TYPE /BI0/OIDESIRSI,
         InfoObject: 0TVIND Target Value for Measuring Point Is Defined.
        TVIND           TYPE /BI0/OITVIND,
         InfoObject: 0SIUNIT SI unit.
        SIUNIT           TYPE /BI0/OISIUNIT,
         InfoObject: 0RECDU Unit of Measurement for Document Entry.
        RECDU           TYPE /BI0/OIRECDU,
         Field: RECORD.
        RECORD           TYPE RSARECORD,
      END   OF tys_SC_1__RULE_34.
    TYPES:
      BEGIN OF tys_SC_1__RULE_35,
         InfoObject: 0MRMINI Lower Measurement Area Limit Is Defined.
        MRMINI           TYPE /BI0/OIMRMINI,
         InfoObject: 0MRMINSI Lower Meas. Limit or Min. Total Counter Read
    *ing in SI Unit.
        MRMINSI           TYPE /BI0/OIMRMINSI,
         InfoObject: 0SIUNIT SI unit.
        SIUNIT           TYPE /BI0/OISIUNIT,
         InfoObject: 0RECDU Unit of Measurement for Document Entry.
        RECDU           TYPE /BI0/OIRECDU,
         Field: RECORD.
        RECORD           TYPE RSARECORD,
      END   OF tys_SC_1__RULE_35.
    TYPES:
      BEGIN OF tys_SC_1__RULE_36,
         InfoObject: 0MRMAXI Upper Measurement Area Limit Is Defined.
        MRMAXI           TYPE /BI0/OIMRMAXI,
         InfoObject: 0SIUNIT SI unit.
        SIUNIT           TYPE /BI0/OISIUNIT,
         InfoObject: 0RECDU Unit of Measurement for Document Entry.
        RECDU           TYPE /BI0/OIRECDU,
         InfoObject: 0MRMAXSI Upper Meas. Limit or Max. Total Counter Read
    *ing in SI Unit.
        MRMAXSI           TYPE /BI0/OIMRMAXSI,
         Field: RECORD.
        RECORD           TYPE RSARECORD,
      END   OF tys_SC_1__RULE_36.
    TYPES:
      BEGIN OF tys_SC_1__RULE_37,
         InfoObject: 0SIUNIT SI unit.
        SIUNIT           TYPE /BI0/OISIUNIT,
         InfoObject: 0RECDU Unit of Measurement for Document Entry.
        RECDU           TYPE /BI0/OIRECDU,
         InfoObject: 0CNTRRSI Counter Reading in SI Unit.
        CNTRRSI           TYPE /BI0/OICNTRRSI,
         InfoObject: 0CNTIND Measuring Point is Counter.
        CNTIND           TYPE /BI0/OICNTIND,
         Field: RECORD.
        RECORD           TYPE RSARECORD,
      END   OF tys_SC_1__RULE_37.
    TYPES:
      BEGIN OF tys_SC_1__RULE_38,
         InfoObject: 0SIUNIT SI unit.
        SIUNIT           TYPE /BI0/OISIUNIT,
         InfoObject: 0RECDU Unit of Measurement for Document Entry.
        RECDU           TYPE /BI0/OIRECDU,
         InfoObject: 0CDIFFSI Counter Reading Difference in SI Unit.
        CDIFFSI           TYPE /BI0/OICDIFFSI,
         InfoObject: 0CNTIND Measuring Point is Counter.
        CNTIND           TYPE /BI0/OICNTIND,
         Field: RECORD.
        RECORD           TYPE RSARECORD,
      END   OF tys_SC_1__RULE_38.
    Additional types for start routine interface
    TYPES:
      data_package_structure type tys_SC_1_full.
    Additional declaration for update rule interface
    DATA:
      MONITOR       type standard table of rsmonitor  WITH HEADER LINE,
      MONITOR_RECNO type standard table of rsmonitors WITH HEADER LINE,
      RECORD_NO     LIKE SY-TABIX,
      RECORD_ALL    LIKE SY-TABIX,
      SOURCE_SYSTEM LIKE RSUPDSIMULH-LOGSYS.
    global definitions from update rules
    TABLES: ...
    DATA:   ...
    *******DATA:  G_T_0EQUIPMENT  TYPE STANDARD TABLE OF /BI0/MEQUIPMENT.
    data: lt_data type ref to data.
    data: ls_data type ref to data.
    field-symbols: <G_T_0EQUIPMENT> type standard table.
    field-symbols: <G_S_0EQUIPMENT> type any.
    field-symbols: <FUNCT_LOC> type any.
    field-symbols: <DATEFROM> type any.
    field-symbols: <DATETO> type any.
    constants: c_tabname type rstlogotab value '/BI0/MEQUIPMENT'.
    *&      Form  routine_9998
          text
         -->DATA_PACKAGE            text
         -->ABORT                   text
         -->RAISING                 text
         -->CX_SY_ARITHMETIC_ERROR  text
         -->CX_SY_CONVERSION_ERROR  text
    FORM routine_9998
      TABLES DATA_PACKAGE TYPE tyt_SC_1_full
      CHANGING
        ABORT          LIKE sy-subrc
      RAISING
        cx_sy_arithmetic_error
        cx_sy_conversion_error.
    init variables
    fill the internal tables "MONITOR" and/or "MONITOR_RECNO",
    to make monitor entries
    In this start routine missing functional location for
    an equipment is added to a Data Package record, if it is available
    in the master data of the equipment
      create data lt_data type table of (c_tabname).
      assign lt_data->* to <G_T_0EQUIPMENT>.
      create data ls_data type (c_tabname).
      assign ls_data->* to <G_S_0EQUIPMENT>.
      assign component 'FUNCT_LOC' of structure <G_S_0EQUIPMENT> to
    <FUNCT_LOC>.
      assign component 'DATE_FROM' of structure <G_S_0EQUIPMENT> to
    <DATEFROM>.
      assign component 'DATE_TO' of structure <G_S_0EQUIPMENT> to
    <DATETO>.
      CALL FUNCTION 'RSAU_READ_MASTER_DATA'
        EXPORTING
          I_IOBJNM                = '0EQUIPMENT'
          I_FLG_WHOLE_TABLE       = 'X'
        IMPORTING
          E_TABLE                 = <G_T_0EQUIPMENT>
        EXCEPTIONS
          READ_ERROR              = 1
          NO_SUCH_ATTRIBUTE       = 2
          WRONG_IMPORT_PARAMETERS = 3
          CHAVL_NOT_FOUND         = 4
          OTHERS                  = 5.
      CASE SY-SUBRC.
        WHEN 0.
          LOOP AT <G_T_0EQUIPMENT> INTO <G_S_0EQUIPMENT>.
            IF <FUNCT_LOC> IS INITIAL.
              DELETE <G_T_0EQUIPMENT>.
            ENDIF.
    master data collected and condensed
          ENDLOOP.
          LOOP AT DATA_PACKAGE.
            IF ( DATA_PACKAGE-FUNCT_LOC IS INITIAL ) AND
               ( DATA_PACKAGE-EQUIPMENT IS NOT INITIAL ).
              READ TABLE <G_T_0EQUIPMENT> WITH KEY
                ('EQUIPMENT') = DATA_PACKAGE-EQUIPMENT INTO <G_S_0EQUIPMENT>
              IF SY-SUBRC = 0.
                IF ( DATA_PACKAGE-MDATE >= <DATEFROM> )
                   AND ( DATA_PACKAGE-MDATE <= <DATETO> ).
    record for equipment exists and valid
                  DATA_PACKAGE-FUNCT_LOC = <FUNCT_LOC>.
                  MODIFY DATA_PACKAGE.
                ENDIF.
              ENDIF.
            ENDIF.
          ENDLOOP.
        WHEN 4.
    master data is not (yet) loaded
        WHEN OTHERS.
    problem occured, output as warning
          MONITOR-MSGID = SY-MSGID.
          MONITOR-MSGTY = 'W'.
          MONITOR-MSGNO = SY-MSGNO.
          MONITOR-MSGV1 = SY-MSGV1.
          MONITOR-MSGV2 = SY-MSGV2.
          MONITOR-MSGV3 = SY-MSGV3.
          MONITOR-MSGV4 = SY-MSGV4.
          APPEND MONITOR.
      ENDCASE.
    if abort is not equal zero, the update process will be canceled
      ABORT = 0.
    ENDFORM.                    "routine_9998
    *&      Form  routine_0001
          text
         -->COMM_STRUCTURE          text
         -->RESULT                  text
         -->RETURNCODE              text
         -->ABORT                   text
         -->RAISING                 text
         -->CX_SY_ARITHMETIC_ERROR  text
         -->CX_SY_CONVERSION_ERROR  text
    FORM routine_0001
      USING
        COMM_STRUCTURE type tys_SC_1__RULE_34
      CHANGING
        RESULT         TYPE tys_TG_1_full-DESIREU
        RETURNCODE     LIKE sy-subrc
        ABORT          LIKE sy-subrc
      RAISING
        cx_sy_arithmetic_error
        cx_sy_conversion_error.
    init variables
    fill the internal table "MONITOR", to make monitor entries
      CLEAR RESULT.
      IF COMM_STRUCTURE-TVIND = 'X'.
        CALL FUNCTION 'UNIT_CONVERSION_SIMPLE'
          EXPORTING
            INPUT                      = COMM_STRUCTURE-DESIRSI
            NO_TYPE_CHECK              = 'X'
      ROUND_SIGN                 = ' '
            UNIT_IN                    = COMM_STRUCTURE-SIUNIT
            UNIT_OUT                   = COMM_STRUCTURE-RECDU
          IMPORTING
      ADD_CONST                  =
      DECIMALS                   =
      DENOMINATOR                =
      NUMERATOR                  =
            OUTPUT                     = RESULT
       EXCEPTIONS
         CONVERSION_NOT_FOUND       = 1
         DIVISION_BY_ZERO           = 2
         INPUT_INVALID              = 3
         OUTPUT_INVALID             = 4
         OVERFLOW                   = 5
         TYPE_INVALID               = 6
         UNITS_MISSING              = 7
         UNIT_IN_NOT_FOUND          = 8
         UNIT_OUT_NOT_FOUND         = 9
         OTHERS                     = 10
        IF SY-SUBRC <> 0.
          MONITOR-MSGID = SY-MSGID.
          MONITOR-MSGTY = 'W'.
          MONITOR-MSGNO = SY-MSGNO.
          MONITOR-MSGV1 = SY-MSGV1.
          MONITOR-MSGV2 = SY-MSGV2.
          MONITOR-MSGV3 = SY-MSGV3.
          MONITOR-MSGV4 = SY-MSGV4.
          APPEND MONITOR.
        ENDIF.
      ENDIF.
    if abort is not equal zero, the update process will be canceled
      ABORT = 0.
    ENDFORM.                    "routine_0001
    *&      Form  routine_0002
          text
         -->COMM_STRUCTURE          text
         -->RESULT                  text
         -->RETURNCODE              text
         -->ABORT                   text
         -->RAISING                 text
         -->CX_SY_ARITHMETIC_ERROR  text
         -->CX_SY_CONVERSION_ERROR  text
    FORM routine_0002
      USING
        COMM_STRUCTURE type tys_SC_1__RULE_35
      CHANGING
        RESULT         TYPE tys_TG_1_full-MRMINEU
        RETURNCODE     LIKE sy-subrc
        ABORT          LIKE sy-subrc
      RAISING
        cx_sy_arithmetic_error
        cx_sy_conversion_error.
    init variables
    fill the internal table "MONITOR", to make monitor entries
      CLEAR RESULT.
      IF COMM_STRUCTURE-MRMINI = 'X'.
        CALL FUNCTION 'UNIT_CONVERSION_SIMPLE'
          EXPORTING
            INPUT                      = COMM_STRUCTURE-MRMINSI
            NO_TYPE_CHECK              = 'X'
      ROUND_SIGN                 = ' '
            UNIT_IN                    = COMM_STRUCTURE-SIUNIT
            UNIT_OUT                   = COMM_STRUCTURE-RECDU
          IMPORTING
      ADD_CONST                  =
      DECIMALS                   =
      DENOMINATOR                =
      NUMERATOR                  =
            OUTPUT                     = RESULT
       EXCEPTIONS
         CONVERSION_NOT_FOUND       = 1
         DIVISION_BY_ZERO           = 2
         INPUT_INVALID              = 3
         OUTPUT_INVALID             = 4
         OVERFLOW                   = 5
         TYPE_INVALID               = 6
         UNITS_MISSING              = 7
         UNIT_IN_NOT_FOUND          = 8
         UNIT_OUT_NOT_FOUND         = 9
         OTHERS                     = 10
        IF SY-SUBRC <> 0.
          MONITOR-MSGID = SY-MSGID.
          MONITOR-MSGTY = 'W'.
          MONITOR-MSGNO = SY-MSGNO.
          MONITOR-MSGV1 = SY-MSGV1.
          MONITOR-MSGV2 = SY-MSGV2.
          MONITOR-MSGV3 = SY-MSGV3.
          MONITOR-MSGV4 = SY-MSGV4.
          APPEND MONITOR.
        ENDIF.
      ENDIF.
    if abort is not equal zero, the update process will be canceled
      ABORT = 0.
    ENDFORM.                    "routine_0002
    *&      Form  routine_0003
          text
         -->COMM_STRUCTURE          text
         -->RESULT                  text
         -->RETURNCODE              text
         -->ABORT                   text
         -->RAISING                 text
         -->CX_SY_ARITHMETIC_ERROR  text
         -->CX_SY_CONVERSION_ERROR  text
    FORM routine_0003
      USING
        COMM_STRUCTURE type tys_SC_1__RULE_36
      CHANGING
        RESULT         TYPE tys_TG_1_full-MRMAXEU
        RETURNCODE     LIKE sy-subrc
        ABORT          LIKE sy-subrc
      RAISING
        cx_sy_arithmetic_error
        cx_sy_conversion_error.
    init variables
    fill the internal table "MONITOR", to make monitor entries
      CLEAR RESULT.
      IF COMM_STRUCTURE-MRMAXI = 'X'.
        CALL FUNCTION 'UNIT_CONVERSION_SIMPLE'
          EXPORTING
            INPUT                      = COMM_STRUCTURE-MRMAXSI
            NO_TYPE_CHECK              = 'X'
      ROUND_SIGN                 = ' '
            UNIT_IN                    = COMM_STRUCTURE-SIUNIT
            UNIT_OUT                   = COMM_STRUCTURE-RECDU
          IMPORTING
      ADD_CONST                  =
      DECIMALS                   =
      DENOMINATOR                =
      NUMERATOR                  =
            OUTPUT                     = RESULT
       EXCEPTIONS
         CONVERSION_NOT_FOUND       = 1
         DIVISION_BY_ZERO           = 2
         INPUT_INVALID              = 3
         OUTPUT_INVALID             = 4
         OVERFLOW                   = 5
         TYPE_INVALID               = 6
         UNITS_MISSING              = 7
         UNIT_IN_NOT_FOUND          = 8
         UNIT_OUT_NOT_FOUND         = 9
         OTHERS                     = 10
        IF SY-SUBRC <> 0.
          MONITOR-MSGID = SY-MSGID.
          MONITOR-MSGTY = 'W'.
          MONITOR-MSGNO = SY-MSGNO.
          MONITOR-MSGV1 = SY-MSGV1.
          MONITOR-MSGV2 = SY-MSGV2.
          MONITOR-MSGV3 = SY-MSGV3.
          MONITOR-MSGV4 = SY-MSGV4.
          APPEND MONITOR.
        ENDIF.
      ENDIF.
    if abort is not equal zero, the update process will be canceled
      ABORT = 0.
    ENDFORM.                    "routine_0003
    *&      Form  routine_0004
          text
         -->COMM_STRUCTURE          text
         -->RESULT                  text
         -->RETURNCODE              text
         -->ABORT                   text
         -->RAISING                 text
         -->CX_SY_ARITHMETIC_ERROR  text
         -->CX_SY_CONVERSION_ERROR  text
    FORM routine_0004
      USING
        COMM_STRUCTURE type tys_SC_1__RULE_37
      CHANGING
        RESULT         TYPE tys_TG_1_full-CNTRREU
        RETURNCODE     LIKE sy-subrc
        ABORT          LIKE sy-subrc
      RAISING
        cx_sy_arithmetic_error
        cx_sy_conversion_error.
    init variables
    fill the internal table "MONITOR", to make monitor entries
      CLEAR RESULT.
      IF COMM_STRUCTURE-CNTIND = 'X'.
        CALL FUNCTION 'UNIT_CONVERSION_SIMPLE'
          EXPORTING
            INPUT                      = COMM_STRUCTURE-CNTRRSI
            NO_TYPE_CHECK              = 'X'
      ROUND_SIGN                 = ' '
            UNIT_IN                    = COMM_STRUCTURE-SIUNIT
            UNIT_OUT                   = COMM_STRUCTURE-RECDU
          IMPORTING
      ADD_CONST                  =
      DECIMALS                   =
      DENOMINATOR                =
      NUMERATOR                  =
            OUTPUT                     = RESULT
       EXCEPTIONS
         CONVERSION_NOT_FOUND       = 1
         DIVISION_BY_ZERO           = 2
         INPUT_INVALID              = 3
         OUTPUT_INVALID             = 4
         OVERFLOW                   = 5
         TYPE_INVALID               = 6
         UNITS_MISSING              = 7
         UNIT_IN_NOT_FOUND          = 8
         UNIT_OUT_NOT_FOUND         = 9
         OTHERS                     = 10
        IF SY-SUBRC <> 0.
          MONITOR-MSGID = SY-MSGID.
          MONITOR-MSGTY = 'W'.
          MONITOR-MSGNO = SY-MSGNO.
          MONITOR-MSGV1 = SY-MSGV1.
          MONITOR-MSGV2 = SY-MSGV2.
          MONITOR-MSGV3 = SY-MSGV3.
          MONITOR-MSGV4 = SY-MSGV4.
          APPEND MONITOR.
        ENDIF.
      ENDIF.
    if abort is not equal zero, the update process will be canceled
      ABORT = 0.
    ENDFORM.                    "routine_0004
    *&      Form  routine_0005
          text
         -->COMM_STRUCTURE          text
         -->RESULT                  text
         -->RETURNCODE              text
         -->ABORT                   text
         -->RAISING                 text
         -->CX_SY_ARITHMETIC_ERROR  text
         -->CX_SY_CONVERSION_ERROR  text
    FORM routine_0005
      USING
        COMM_STRUCTURE type tys_SC_1__RULE_38
      CHANGING
        RESULT         TYPE tys_TG_1_full-CDIFFEU
        RETURNCODE     LIKE sy-subrc
        ABORT          LIKE sy-subrc
      RAISING
        cx_sy_arithmetic_error
        cx_sy_conversion_error.
    init variables
    fill the internal table "MONITOR", to make monitor entries
      CLEAR RESULT.
      IF COMM_STRUCTURE-CNTIND = 'X'.
        CALL FUNCTION 'UNIT_CONVERSION_SIMPLE'
          EXPORTING
            INPUT                      = COMM_STRUCTURE-CDIFFSI
            NO_TYPE_CHECK              = 'X'
      ROUND_SIGN                 = ' '
            UNIT_IN                    = COMM_STRUCTURE-SIUNIT
            UNIT_OUT                   = COMM_STRUCTURE-RECDU
          IMPORTING
      ADD_CONST                  =
      DECIMALS                   =
      DENOMINATOR                =
      NUMERATOR                  =
            OUTPUT                     = RESULT
       EXCEPTIONS
         CONVERSION_NOT_FOUND       = 1
         DIVISION_BY_ZERO           = 2
         INPUT_INVALID              = 3
         OUTPUT_INVALID             = 4
         OVERFLOW                   = 5
         TYPE_INVALID               = 6
         UNITS_MISSING              = 7
         UNIT_IN_NOT_FOUND          = 8
         UNIT_OUT_NOT_FOUND         = 9
         OTHERS                     = 10
        IF SY-SUBRC <> 0.
          MONITOR-MSGID = SY-MSGID.
          MONITOR-MSGTY = 'W'.
          MONITOR-MSGNO = SY-MSGNO.
          MONITOR-MSGV1 = SY-MSGV1.
          MONITOR-MSGV2 = SY-MSGV2.
          MONITOR-MSGV3 = SY-MSGV3.
          MONITOR-MSGV4 = SY-MSGV4.
          APPEND MONITOR.
        ENDIF.
      ENDIF.
    if abort is not equal zero, the update process will be canceled
      ABORT = 0.
    ENDFORM.                    "routine_0005
    TYPES: BEGIN OF TY_/BI0/PMPOINT,
          MPOINT      TYPE /BI0/PMPOINT-MPOINT,
       MRNGU     TYPE /BI0/PMPOINT-MRNGU,
    END of TY_/BI0/PMPOINT.
    DATA: /BI0/PMPOINT_TEMP TYPE STANDARD TABLE OF
    TY_/BI0/PMPOINT,
          W_/BI0/PMPOINT_TEMP like line of /BI0/PMPOINT_TEMP.
    $$ end of 2nd part global - insert your code only before this line   *
          CLASS routine IMPLEMENTATION
    CLASS lcl_transform IMPLEMENTATION.
          Method start_routine
          Calculation of source package via start routine
      <-> source package
      METHOD start_routine.
    *=== Segments ===
        FIELD-SYMBOLS:
          <SOURCE_FIELDS>    TYPE tys_SC_1.
        DATA:
          MONITOR_REC     TYPE rstmonitor.
    *$*$ begin of routine - insert your code only below this line        *-*
        Data:
          l_subrc          type sy-tabix,
          l_abort          type sy-tabix,
          ls_monitor       TYPE rsmonitor,
          ls_monitor_recno TYPE rsmonitors.
        REFRESH:
          MONITOR,
          MONITOR_RECNO.
    Runtime attributs
        SOURCE_SYSTEM  = p_r_request->get_logsys( ).
    Migrated update rule call
        Perform routine_9998
        TABLES
          SOURCE_PACKAGE
        CHANGING
          l_abort.
    *-- Convert Messages in Transformation format
        LOOP AT MONITOR_RECNO INTO ls_monitor_recno.
          move-CORRESPONDING ls_monitor_recno to MONITOR_REC.
          append monitor_rec to MONITOR.
        ENDLOOP.
        LOOP AT MONITOR INTO ls_monitor.
          move-CORRESPONDING ls_monitor to MONITOR_REC.
          append monitor_rec to MONITOR.
        ENDLOOP.
        IF l_abort <> 0.
          RAISE EXCEPTION TYPE CX_RSROUT_ABORT.
        ENDIF.
    $$ end of routine - insert your code only before this line         -
      ENDMETHOD.                    "start_routine
          Method inverse_start_routine
          This subroutine needs to be implemented only for direct access
          (for better performance) and for the Report/Report Interface
          (drill through).
          The inverse routine should transform a projection and
          a selection for the target to a projection and a selection
          for the source, respectively.
          If the implementation remains empty all fields are filled and
          all values are selected.
      METHOD inverse_start_routine.
    $$ begin of inverse routine - insert your code only below this line-
        ... "insert your code here
    $$ end of inverse routine - insert your code only before this line -
      ENDMETHOD.                    "inverse_start_routine
    ENDCLASS.                    "routine IMPLEMENTATION

  • Mavericks slow login/erratic performance

    I am having trouble with Mavericks on my Mac Mini.  I have eight user accounts (1 administrator, 1 guest, 2 regular users, and 4 managed with parental controls) and when logging in to any user it takes several minutes before everything is running at full speed.  If I try to start any applications right when the dock and menu bar are loaded it will sometimes bounce for a couple of minutes before the application starts.  General performance is also somewhat sluggish/erratic.  There is nothing consistent but I often get the pinwheel when surfing the internet or doing just about anything else.  I know this is a vague description but I can't really pin it on any particular situation.  I know I only have 4 GB of RAM but the computer is really only used for surfing the internet and a few non-resource-intensive applications.  I have posted my EtreCheck output and most recent console log below.  Can anyone help me?
    EtreCheck
    EtreCheck version: 1.9.15 (52)
    Report generated September 26, 2014 at 9:40:24 PM CDT
    Hardware Information: ?
      Mac mini (Mid 2011) (Verified)
      Mac mini - model: Macmini5,1
      1 2.3 GHz Intel Core i5 CPU: 2 cores
      4 GB RAM
    Video Information: ?
      Intel HD Graphics 3000 - VRAM: 384 MB
      ASUS VW224 1680 x 1050 @ 60 Hz
    System Software: ?
      OS X 10.9.5 (13F34) - Uptime: 0 days 14:6:52
    Disk Information: ?
      TOSHIBA MK5065GSXF disk0 : (500.11 GB)
      S.M.A.R.T. Status: Verified
      EFI (disk0s1) <not mounted>: 209.7 MB
      Macintosh HD (disk0s2) / [Startup]: 499.25 GB (55.61 GB free)
      Recovery HD (disk0s3) <not mounted>: 650 MB
    USB Information: ?
      Western Digital  External HDD     1 TB
      S.M.A.R.T. Status: Verified
      EFI (disk1s1) <not mounted>: 209.7 MB
      disk1s2 (disk1s2) <not mounted>: 999.86 GB
      Boot OS X (disk1s3) <not mounted>: 134.2 MB
      Apple Computer, Inc. IR Receiver
      Mitsumi Electric Apple Optical USB Mouse
      CHICONY USB Keyboard
      Apple Inc. BRCM20702 Hub
      Apple Inc. Bluetooth USB Host Controller
    Thunderbolt Information: ?
      Apple Inc. thunderbolt_bus
    Gatekeeper: ?
      Mac App Store and identified developers
    Kernel Extensions: ?
      [not loaded] com.philips.iokit.DLconnect (85 - SDK 10.4) Support
    Launch Daemons: ?
      [loaded] com.adobe.fpsaud.plist Support
      [loaded] com.google.keystone.daemon.plist Support
      [loaded] com.oracle.java.Helper-Tool.plist Support
      [loaded] com.oracle.java.JavaUpdateHelper.plist Support
      [loaded] com.skype.skypeinstaller.plist Support
    Launch Agents: ?
      [loaded] com.coupons.coupond.plist Support
      [loaded] com.google.keystone.agent.plist Support
      [running] com.newwellnesssolutions.DLconnectMonitor.plist Support
      [loaded] com.oracle.java.Java-Updater.plist Support
    User Login Items: ?
      iTunesHelper
      Dropbox
      Google Drive
    Internet Plug-ins: ?
      FlashPlayer-10.6: Version: 15.0.0.152 - SDK 10.6 Support
      QuickTime Plugin: Version: 7.7.3
      Flash Player: Version: 15.0.0.152 - SDK 10.6 Support
      Default Browser: Version: 537 - SDK 10.9
      googletalkbrowserplugin: Version: 5.4.2.18903 Support
      Silverlight: Version: 5.1.20913.0 - SDK 10.6 Support
      Unity Web Player: Version: UnityPlayer version 4.3.3f1 - SDK 10.6 Support
      JavaAppletPlugin: Version: Java 7 Update 67 Check version
    Audio Plug-ins: ?
      BluetoothAudioPlugIn: Version: 1.0 - SDK 10.9
      AirPlay: Version: 2.0 - SDK 10.9
      AppleAVBAudio: Version: 203.2 - SDK 10.9
      iSightAudio: Version: 7.7.3 - SDK 10.9
    iTunes Plug-ins: ?
      Quartz Composer Visualizer: Version: 1.4 - SDK 10.9
    User Internet Plug-ins ?
      Picasa: Version: 1.0 - SDK 10.4 Support
    3rd Party Preference Panes: ?
      Flash Player  Support
      Java  Support
    Time Machine: ?
      Auto backup: YES
      Volumes being backed up:
      Macintosh HD: Disk size: 464.96 GB Disk used: 413.17 GB
      Destinations:
      Family Mac Mini Backup [Local] (Last used)
      Total size: 931.05 GB
      Total number of backups: 57
      Oldest backup: 2014-01-20 00:49:56 +0000
      Last backup: 2014-09-27 02:24:56 +0000
      Size of backup disk: Too small
      Backup size 931.05 GB < (Disk used 413.17 GB X 3)
      Time Machine details may not be accurate.
      All volumes being backed up may not be listed.
    Top Processes by CPU: ?
          8% com.apple.WebKit.WebContent
          2% Safari
          2% WindowServer
          1% fontd
          0% AppleSpell
    Top Processes by Memory: ?
      168 MB mds_stores
      127 MB com.apple.WebKit.WebContent
      106 MB Safari
      86 MB Console
      82 MB Google Drive
    Virtual Memory Information: ?
      1.00 GB Free RAM
      1.56 GB Active RAM
      231 MB Inactive RAM
      1.03 GB Wired RAM
      1.56 GB Page-ins
      30 MB Page-outs
    Console Log
    9/26/14 9:25:47.340 PM com.apple.launchd.peruser.501[441]: Background: Aqua: Registering new GUI session.
    9/26/14 9:25:47.422 PM com.apple.launchd.peruser.501[441]: (com.apple.EscrowSecurityAlert) Unknown key: seatbelt-profiles
    9/26/14 9:25:47.424 PM com.apple.launchd.peruser.501[441]: (com.apple.ReportCrash) Falling back to default Mach exception handler. Could not find: com.apple.ReportCrash.Self
    9/26/14 9:25:56.106 PM MiniLauncher[1968]: Skipping Setup Assistant for user 501
    9/26/14 9:25:56.383 PM transition[1971]: INFO: Not signed into MobileMe, nothing to do. Reason: 3
    9/26/14 9:25:58.082 PM com.apple.iCloudHelper[1972]: AOSKit ERROR: XPC SERVER (MiniLauncher/0.0): Failed to copy client info, err -67065 (p=1968)
    9/26/14 9:26:00.090 PM KeychainMigrator[1974]: STARTING editKeyACLs
    9/26/14 9:26:00.476 PM KeychainMigrator[1974]: ENDING editKeyACLs
    9/26/14 9:26:00.664 PM KeychainMigrator[1974]: Migrate item: {port=0, srvr=daw.apple.com, mdat=2013-04-23 12:57:26 +0000, acct=j********@*****.com, ptcl=htps, cdat=2013-04-23 12:57:19 +0000, class="inet", icmt=default, atyp=form, desc="Web form password", labl="daw.apple.com (j********@*****.com)"}
    9/26/14 9:26:01.278 PM KeychainMigrator[1974]: Item already in keychain (have you run the migrator before?): {labl="daw.apple.com (j********@*****.com)", v_Data=<not-logged>, acct=j********@*******.com, icmt=default, atyp=form, desc="Web form password", cdat=2013-04-23 12:57:19 +0000, srvr=daw.apple.com, mdat=2013-04-23 12:57:26 +0000, sync=1, ptcl=htps, class="inet", agrp=com.apple.cfnetwork, port=0}
    9/26/14 9:26:01.279 PM KeychainMigrator[1974]: Migrate item: {port=0, srvr=libdb.loganutah.org, mdat=2013-05-05 15:00:43 +0000, acct=BLOG0001026673, ptcl=http, cdat=2013-05-05 15:00:43 +0000, class="inet", icmt=default, atyp=form, desc="Web form password", labl="libdb.loganutah.org (BLOG0001026673)"}
    9/26/14 9:26:01.285 PM KeychainMigrator[1974]: Item already in keychain (have you run the migrator before?): {labl="libdb.loganutah.org (BLOG0001026673)", v_Data=<not-logged>, acct=BLOG0001026673, icmt=default, atyp=form, desc="Web form password", cdat=2013-05-05 15:00:43 +0000, srvr=libdb.loganutah.org, mdat=2013-05-05 15:00:43 +0000, sync=1, ptcl=http, class="inet", agrp=com.apple.cfnetwork, port=0}
    9/26/14 9:26:01.286 PM KeychainMigrator[1974]: Migrate item: {port=0, srvr=www.linkedin.com, mdat=2013-06-27 03:37:10 +0000, acct=j********@*******.com, ptcl=http, cdat=2013-06-27 03:37:10 +0000, class="inet", icmt=default, atyp=form, desc="Web form password", labl="www.linkedin.com (j********@*******.com)"}
    9/26/14 9:26:01.291 PM KeychainMigrator[1974]: Item already in keychain (have you run the migrator before?): {labl="www.linkedin.com (j********@*******.com)", v_Data=<not-logged>, acct=j********@*******.com, icmt=default, atyp=form, desc="Web form password", cdat=2013-06-27 03:37:10 +0000, srvr=www.linkedin.com, mdat=2013-06-27 03:37:10 +0000, sync=1, ptcl=http, class="inet", agrp=com.apple.cfnetwork, port=0}
    9/26/14 9:26:01.292 PM KeychainMigrator[1974]: Migrate item: {port=0, srvr=appleid.apple.com, mdat=2013-09-22 13:44:11 +0000, acct=j********@*******.com, ptcl=htps, cdat=2013-09-22 13:44:11 +0000, class="inet", icmt=default, atyp=form, desc="Web form password", labl="appleid.apple.com (j********@*******.com)"}
    9/26/14 9:26:01.296 PM KeychainMigrator[1974]: Item already in keychain (have you run the migrator before?): {labl="appleid.apple.com (j********@*******.com)", v_Data=<not-logged>, acct=j********@*******.com, icmt=default, atyp=form, desc="Web form password", cdat=2013-09-22 13:44:11 +0000, srvr=appleid.apple.com, mdat=2013-09-22 13:44:11 +0000, sync=1, ptcl=htps, class="inet", agrp=com.apple.cfnetwork, port=0}
    9/26/14 9:26:01.296 PM KeychainMigrator[1974]: Migrate item: {port=0, srvr=deseretbook.com, mdat=2013-12-22 03:07:46 +0000, acct=j********@*******.com ptcl=htps, cdat=2013-12-22 03:07:19 +0000, class="inet", icmt=default, atyp=form, desc="Web form password", labl="deseretbook.com (j********@*******.com)"}
    9/26/14 9:26:01.301 PM KeychainMigrator[1974]: Item already in keychain (have you run the migrator before?): {labl="deseretbook.com (j********@*******.com)", v_Data=<not-logged>, acct=j********@*******.com, icmt=default, atyp=form, desc="Web form password", cdat=2013-12-22 03:07:19 +0000, srvr=deseretbook.com, mdat=2013-12-22 03:07:46 +0000, sync=1, ptcl=htps, class="inet", agrp=com.apple.cfnetwork, port=0}
    9/26/14 9:26:01.301 PM KeychainMigrator[1974]: Migrate item: {port=0, srvr=ident.familysearch.org, mdat=2013-05-27 00:49:24 +0000, acct=k**********t, ptcl=htps, cdat=2013-05-19 22:50:42 +0000, class="inet", atyp=form, desc="Web form password", labl="ident.familysearch.org (k**********t)"}
    9/26/14 9:26:01.305 PM KeychainMigrator[1974]: Item already in keychain (have you run the migrator before?): {labl="ident.familysearch.org (k**********t)", v_Data=<not-logged>, acct=k**********t, atyp=form, desc="Web form password", cdat=2013-05-19 22:50:42 +0000, srvr=ident.familysearch.org, mdat=2013-05-27 00:49:24 +0000, sync=1, ptcl=htps, class="inet", agrp=com.apple.cfnetwork, port=0}
    9/26/14 9:26:01.305 PM KeychainMigrator[1974]: Migrate item: {port=0, srvr=www.searspartsdirect.com, mdat=2014-05-29 03:01:09 +0000, acct=j********@*******.com, ptcl=htps, cdat=2014-03-28 02:53:03 +0000, class="inet", path=/partsdirect/initiateLogin.pd, atyp=form, labl=www.searspartsdirect.com, crtr=1919511898}
    9/26/14 9:26:01.309 PM KeychainMigrator[1974]: Item already in keychain (have you run the migrator before?): {labl=www.searspartsdirect.com, agrp=com.apple.cfnetwork, v_Data=<not-logged>, acct=j********@*******.com, atyp=form, path=/partsdirect/initiateLogin.pd, cdat=2014-03-28 02:53:03 +0000, srvr=www.searspartsdirect.com, mdat=2014-05-29 03:01:09 +0000, sync=1, ptcl=htps, class="inet", crtr=1919511898, port=0}
    9/26/14 9:26:01.310 PM KeychainMigrator[1974]: Migrate item: {port=0, srvr=www.facebook.com, mdat=2013-08-31 21:30:39 +0000, acct=k********@******.com, ptcl=htps, cdat=2013-08-31 21:30:39 +0000, class="inet", icmt=default, atyp=form, desc="Web form password", labl="www.facebook.com (k********@*****com)"}
    9/26/14 9:26:01.313 PM KeychainMigrator[1974]: Item already in keychain (have you run the migrator before?): {labl="www.facebook.com (k********@*****com)", v_Data=<not-logged>, acct=k********@*****com, icmt=default, atyp=form, desc="Web form password", cdat=2013-08-31 21:30:39 +0000, srvr=www.facebook.com, mdat=2013-08-31 21:30:39 +0000, sync=1, ptcl=htps, class="inet", agrp=com.apple.cfnetwork, port=0}
    9/26/14 9:26:01.314 PM KeychainMigrator[1974]: Migrate item: {port=0, srvr=www.volunteerspot.com, mdat=2013-09-22 17:17:00 +0000, acct=j********@*******.com, ptcl=http, cdat=2013-09-22 17:17:00 +0000, class="inet", icmt=default, atyp=form, desc="Web form password", labl="www.volunteerspot.com (j********@*******.com)"}
    9/26/14 9:26:01.318 PM KeychainMigrator[1974]: Item already in keychain (have you run the migrator before?): {labl="www.volunteerspot.com (j********@*******.com)", v_Data=<not-logged>, acct=j********@*******.com, icmt=default, atyp=form, desc="Web form password", cdat=2013-09-22 17:17:00 +0000, srvr=www.volunteerspot.com, mdat=2013-09-22 17:17:00 +0000, sync=1, ptcl=http, class="inet", agrp=com.apple.cfnetwork, port=0}
    9/26/14 9:26:01.318 PM KeychainMigrator[1974]: Migrate item: {port=0, srvr=accounts.google.com, mdat=2014-01-11 21:29:41 +0000, acct=j********, ptcl=htps, cdat=2013-04-28 15:17:08 +0000, class="inet", atyp=form, desc="Web form password", labl="accounts.google.com (j********)"}
    9/26/14 9:26:01.322 PM KeychainMigrator[1974]: Item already in keychain (have you run the migrator before?): {labl="accounts.google.com (j********)", v_Data=<not-logged>, acct=j********, atyp=form, desc="Web form password", cdat=2013-04-28 15:17:08 +0000, srvr=accounts.google.com, mdat=2014-01-11 21:29:41 +0000, sync=1, ptcl=htps, class="inet", agrp=com.apple.cfnetwork, port=0}
    9/26/14 9:26:01.322 PM KeychainMigrator[1974]: Migrate item: {port=0, srvr=ident.familysearch.org, mdat=2014-02-02 01:14:56 +0000, acct=j********, ptcl=htps, cdat=2013-05-27 01:08:17 +0000, class="inet", path=/cis-web/oauth2/v3/authorization, atyp=form, labl=ident.familysearch.org, crtr=1919511898}
    9/26/14 9:26:01.326 PM KeychainMigrator[1974]: Item already in keychain (have you run the migrator before?): {labl=ident.familysearch.org, agrp=com.apple.cfnetwork, v_Data=<not-logged>, acct=j********, atyp=form, path=/cis-web/oauth2/v3/authorization, cdat=2013-05-27 01:08:17 +0000, srvr=ident.familysearch.org, mdat=2014-02-02 01:14:56 +0000, sync=1, ptcl=htps, class="inet", crtr=1919511898, port=0}
    9/26/14 9:26:01.327 PM KeychainMigrator[1974]: Migrate item: {port=0, srvr=accounts.google.com, mdat=2014-03-28 02:53:04 +0000, acct=j********@*****.com, ptcl=htps, cdat=2014-03-28 02:53:04 +0000, class="inet", path=/ServiceLogin, atyp=form, labl=accounts.google.com, crtr=1919511898}
    9/26/14 9:26:01.330 PM KeychainMigrator[1974]: Item already in keychain (have you run the migrator before?): {labl=accounts.google.com, agrp=com.apple.cfnetwork, v_Data=<not-logged>, acct=j********@*****.com, atyp=form, path=/ServiceLogin, cdat=2014-03-28 02:53:04 +0000, srvr=accounts.google.com, mdat=2014-03-28 02:53:04 +0000, sync=1, ptcl=htps, class="inet", crtr=1919511898, port=0}
    9/26/14 9:26:01.331 PM KeychainMigrator[1974]: Migrate item: {port=0, srvr=capitolarea.camp-master.com, mdat=2013-05-05 22:20:21 +0000, acct=j********@*****.com, ptcl=htps, cdat=2013-05-05 22:20:09 +0000, class="inet", icmt=default, atyp=form, desc="Web form password", labl="capitolarea.camp-master.com (j********@*****.com)"}
    9/26/14 9:26:01.335 PM KeychainMigrator[1974]: Item already in keychain (have you run the migrator before?): {labl="capitolarea.camp-master.com (j********@*****.com)", v_Data=<not-logged>, acct=j********@*****.com, icmt=default, atyp=form, desc="Web form password", cdat=2013-05-05 22:20:09 +0000, srvr=capitolarea.camp-master.com, mdat=2013-05-05 22:20:21 +0000, sync=1, ptcl=htps, class="inet", agrp=com.apple.cfnetwork, port=0}
    9/26/14 9:26:01.335 PM KeychainMigrator[1974]: Migrate item: {port=0, srvr=www.concur.com, mdat=2013-08-05 22:43:37 +0000, acct=j******@******.com, ptcl=htps, cdat=2013-08-05 22:43:26 +0000, class="inet", icmt=default, atyp=form, desc="Web form password", labl="www.concur.com (j******@******.com)"}
    9/26/14 9:26:01.339 PM KeychainMigrator[1974]: Item already in keychain (have you run the migrator before?): {labl="www.concur.com (j******@******.com)", v_Data=<not-logged>, acct=j******@******.com, icmt=default, atyp=form, desc="Web form password", cdat=2013-08-05 22:43:26 +0000, srvr=www.concur.com, mdat=2013-08-05 22:43:37 +0000, sync=1, ptcl=htps, class="inet", agrp=com.apple.cfnetwork, port=0}
    9/26/14 9:26:01.339 PM KeychainMigrator[1974]: Migrate item: {port=0, srvr=ident.familysearch.org, mdat=2013-05-27 00:49:24 +0000, acct=j********, ptcl=htps, cdat=2013-05-14 00:05:36 +0000, class="inet", icmt=default, atyp=form, desc="Web form password", labl="ident.familysearch.org (j********)"}
    9/26/14 9:26:01.343 PM KeychainMigrator[1974]: Item already in keychain (have you run the migrator before?): {labl="ident.familysearch.org (j********)", v_Data=<not-logged>, acct=j********, icmt=default, atyp=form, desc="Web form password", cdat=2013-05-14 00:05:36 +0000, srvr=ident.familysearch.org, mdat=2013-05-27 00:49:24 +0000, sync=1, ptcl=htps, class="inet", agrp=com.apple.cfnetwork, port=0}
    9/26/14 9:26:01.344 PM KeychainMigrator[1974]: Migrate item: {port=0, srvr=member.pec.coop, mdat=2013-04-24 02:31:39 +0000, acct=j********, ptcl=htps, cdat=2013-04-24 01:49:11 +0000, class="inet", icmt=default, atyp=form, desc="Web form password", labl="member.pec.coop (j********)"}
    9/26/14 9:26:01.348 PM KeychainMigrator[1974]: Item already in keychain (have you run the migrator before?): {labl="member.pec.coop (j********)", v_Data=<not-logged>, acct=j********, icmt=default, atyp=form, desc="Web form password", cdat=2013-04-24 01:49:11 +0000, srvr=member.pec.coop, mdat=2013-04-24 02:31:39 +0000, sync=1, ptcl=htps, class="inet", agrp=com.apple.cfnetwork, port=0}
    9/26/14 9:26:01.348 PM KeychainMigrator[1974]: Migrate item: {port=0, srvr=www.amazon.com, mdat=2013-04-24 02:29:38 +0000, acct=j********@******.com, ptcl=htps, cdat=2013-04-24 02:29:32 +0000, class="inet", icmt=default, atyp=form, desc="Web form password", labl="www.amazon.com (j********@******.com)"}
    9/26/14 9:26:01.352 PM KeychainMigrator[1974]: Item already in keychain (have you run the migrator before?): {labl="www.amazon.com (j********@******.com)", v_Data=<not-logged>, acct=j********@******.com, icmt=default, atyp=form, desc="Web form password", cdat=2013-04-24 02:29:32 +0000, srvr=www.amazon.com, mdat=2013-04-24 02:29:38 +0000, sync=1, ptcl=htps, class="inet", agrp=com.apple.cfnetwork, port=0}
    9/26/14 9:26:01.353 PM KeychainMigrator[1974]: Migrate item: {port=0, srvr=www.couponmom.com, mdat=2013-06-07 03:20:58 +0000, acct=j********@******.com, ptcl=http, cdat=2013-06-07 03:20:36 +0000, class="inet", icmt=default, atyp=form, desc="Web form password", labl="www.couponmom.com (j********@******.com)"}
    9/26/14 9:26:01.357 PM KeychainMigrator[1974]: Item already in keychain (have you run the migrator before?): {labl="www.couponmom.com (j********@******.com)", v_Data=<not-logged>, acct=j********@******.com, icmt=default, atyp=form, desc="Web form password", cdat=2013-06-07 03:20:36 +0000, srvr=www.couponmom.com, mdat=2013-06-07 03:20:58 +0000, sync=1, ptcl=http, class="inet", agrp=com.apple.cfnetwork, port=0}
    9/26/14 9:26:01.358 PM KeychainMigrator[1974]: Migrate item: {port=0, srvr=www.linkedin.com, mdat=2013-12-09 03:02:21 +0000, acct=j********@*****.com, ptcl=htps, cdat=2013-12-09 03:02:21 +0000, class="inet", icmt=default, atyp=form, desc="Web form password", labl="www.linkedin.com (j********@*****.com)"}
    9/26/14 9:26:01.362 PM KeychainMigrator[1974]: Item already in keychain (have you run the migrator before?): {labl="www.linkedin.com (j********@*****.com)", v_Data=<not-logged>, acct=j********@*****.com, icmt=default, atyp=form, desc="Web form password", cdat=2013-12-09 03:02:21 +0000, srvr=www.linkedin.com, mdat=2013-12-09 03:02:21 +0000, sync=1, ptcl=htps, class="inet", agrp=com.apple.cfnetwork, port=0}
    9/26/14 9:26:01.362 PM KeychainMigrator[1974]: Migrate item: {port=0, srvr=www.flexadministrators.com, mdat=2013-04-21 14:13:16 +0000, acct=j********, ptcl=http, cdat=2013-04-21 14:13:16 +0000, class="inet", icmt=default, atyp=form, desc="Web form password", labl="www.flexadministrators.com (j********)"}
    9/26/14 9:26:01.366 PM KeychainMigrator[1974]: Item already in keychain (have you run the migrator before?): {labl="www.flexadministrators.com (j********)", v_Data=<not-logged>, acct=j********, icmt=default, atyp=form, desc="Web form password", cdat=2013-04-21 14:13:16 +0000, srvr=www.flexadministrators.com, mdat=2013-04-21 14:13:16 +0000, sync=1, ptcl=http, class="inet", agrp=com.apple.cfnetwork, port=0}
    9/26/14 9:26:01.366 PM KeychainMigrator[1974]: Migrate item: {port=0, srvr=www.cubscouttracker.com, mdat=2013-05-23 02:40:58 +0000, acct=Pack458Admin, ptcl=htps, cdat=2013-04-28 15:08:40 +0000, class="inet", atyp=form, desc="Web form password", labl="www.cubscouttracker.com (Pack458Admin)"}
    9/26/14 9:26:01.370 PM KeychainMigrator[1974]: Item already in keychain (have you run the migrator before?): {labl="www.cubscouttracker.com (Pack458Admin)", v_Data=<not-logged>, acct=Pack458Admin, atyp=form, desc="Web form password", cdat=2013-04-28 15:08:40 +0000, srvr=www.cubscouttracker.com, mdat=2013-05-23 02:40:58 +0000, sync=1, ptcl=htps, class="inet", agrp=com.apple.cfnetwork, port=0}
    9/26/14 9:26:01.371 PM KeychainMigrator[1974]: Migrate item: {port=0, srvr=hrsapp.roundrockisd.org, mdat=2013-10-28 01:03:08 +0000, acct=j********, ptcl=htps, cdat=2013-10-28 01:03:08 +0000, class="inet", icmt=default, atyp=form, desc="Web form password", labl="hrsapp.roundrockisd.org (j********)"}
    9/26/14 9:26:01.374 PM KeychainMigrator[1974]: Item already in keychain (have you run the migrator before?): {labl="hrsapp.roundrockisd.org (j********)", v_Data=<not-logged>, acct=j********, icmt=default, atyp=form, desc="Web form password", cdat=2013-10-28 01:03:08 +0000, srvr=hrsapp.roundrockisd.org, mdat=2013-10-28 01:03:08 +0000, sync=1, ptcl=htps, class="inet", agrp=com.apple.cfnetwork, port=0}
    9/26/14 9:26:01.375 PM KeychainMigrator[1974]: Migrate item: {port=0, srvr=accounts.google.com, mdat=2014-01-11 21:29:41 +0000, acct=k********, ptcl=htps, cdat=2013-04-21 02:12:56 +0000, class="inet", icmt=default, atyp=form, desc="Web form password", labl="accounts.google.com (k********)"}
    9/26/14 9:26:01.379 PM KeychainMigrator[1974]: Item already in keychain (have you run the migrator before?): {labl="accounts.google.com (k********)", v_Data=<not-logged>, acct=k********, icmt=default, atyp=form, desc="Web form password", cdat=2013-04-21 02:12:56 +0000, srvr=accounts.google.com, mdat=2014-01-11 21:29:41 +0000, sync=1, ptcl=htps, class="inet", agrp=com.apple.cfnetwork, port=0}
    9/26/14 9:26:01.380 PM KeychainMigrator[1974]: Migrate item: {port=0, srvr=coautilities.com, mdat=2013-08-06 21:38:14 +0000, acct=jk******, ptcl=htps, cdat=2013-08-06 21:36:55 +0000, class="inet", atyp=form, desc="Web form password", labl="coautilities.com (jk******)"}
    9/26/14 9:26:01.383 PM KeychainMigrator[1974]: Item already in keychain (have you run the migrator before?): {labl="coautilities.com (jk******)", v_Data=<not-logged>, acct=jk******, atyp=form, desc="Web form password", cdat=2013-08-06 21:36:55 +0000, srvr=coautilities.com, mdat=2013-08-06 21:38:14 +0000, sync=1, ptcl=htps, class="inet", agrp=com.apple.cfnetwork, port=0}
    9/26/14 9:26:01.384 PM KeychainMigrator[1974]: Migrate item: {port=0, srvr=www.wunderlist.com, mdat=2013-12-09 02:59:40 +0000, acct=j********@*****.com, ptcl=htps, cdat=2013-12-09 02:59:40 +0000, class="inet", icmt=default, atyp=form, desc="Web form password", labl="www.wunderlist.com (j********@*****.com)"}
    9/26/14 9:26:01.387 PM KeychainMigrator[1974]: Item already in keychain (have you run the migrator before?): {labl="www.wunderlist.com (j********@*****.com)", v_Data=<not-logged>, acct=j********@*****.com, icmt=default, atyp=form, desc="Web form password", cdat=2013-12-09 02:59:40 +0000, srvr=www.wunderlist.com, mdat=2013-12-09 02:59:40 +0000, sync=1, ptcl=htps, class="inet", agrp=com.apple.cfnetwork, port=0}
    9/26/14 9:26:01.388 PM KeychainMigrator[1974]: Migrate item: {port=0, srvr=coautilities.com, mdat=2013-08-06 21:38:14 +0000, acct=j********, ptcl=htps, cdat=2013-08-06 21:38:14 +0000, class="inet", icmt=default, atyp=form, desc="Web form password", labl="coautilities.com (j********)"}
    9/26/14 9:26:01.392 PM KeychainMigrator[1974]: Item already in keychain (have you run the migrator before?): {labl="coautilities.com (j********)", v_Data=<not-logged>, acct=j********, icmt=default, atyp=form, desc="Web form password", cdat=2013-08-06 21:38:14 +0000, srvr=coautilities.com, mdat=2013-08-06 21:38:14 +0000, sync=1, ptcl=htps, class="inet", agrp=com.apple.cfnetwork, port=0}
    9/26/14 9:26:01.393 PM KeychainMigrator[1974]: Migrate item: {port=0, srvr=signup.netflix.com, mdat=2013-04-24 02:05:27 +0000, acct=k********@*****.com, ptcl=htps, cdat=2013-04-24 02:05:27 +0000, class="inet", icmt=default, atyp=form, desc="Web form password", labl="signup.netflix.com (k********@*****.com)"}
    9/26/14 9:26:01.397 PM KeychainMigrator[1974]: Item already in keychain (have you run the migrator before?): {labl="signup.netflix.com (k********@*****.com)", v_Data=<not-logged>, acct=k********@*****.com, icmt=default, atyp=form, desc="Web form password", cdat=2013-04-24 02:05:27 +0000, srvr=signup.netflix.com, mdat=2013-04-24 02:05:27 +0000, sync=1, ptcl=htps, class="inet", agrp=com.apple.cfnetwork, port=0}
    9/26/14 9:26:01.398 PM KeychainMigrator[1974]: Migrate item: {port=0, srvr=login.******.com, mdat=2013-05-04 13:14:33 +0000, acct=j********, ptcl=htps, cdat=2013-05-04 13:14:33 +0000, class="inet", icmt=default, atyp=form, desc="Web form password", labl="login.******.com (j********)"}
    9/26/14 9:26:01.401 PM KeychainMigrator[1974]: Item already in keychain (have you run the migrator before?): {labl="login.******.com (j********)", v_Data=<not-logged>, acct=j********, icmt=default, atyp=form, desc="Web form password", cdat=2013-05-04 13:14:33 +0000, srvr=login.******.com, mdat=2013-05-04 13:14:33 +0000, sync=1, ptcl=htps, class="inet", agrp=com.apple.cfnetwork, port=0}
    9/26/14 9:26:01.402 PM KeychainMigrator[1974]: Migrate item: {port=0, srvr=www.usaa.com, mdat=2013-04-21 00:59:18 +0000, acct=ksjhwkr, ptcl=htps, cdat=2013-04-21 00:54:43 +0000, class="inet", atyp=form, desc="Web form password", labl="www.usaa.com (ksjhwkr)"}
    9/26/14 9:26:01.406 PM KeychainMigrator[1974]: Item already in keychain (have you run the migrator before?): {labl="www.usaa.com (ksjhwkr)", v_Data=<not-logged>, acct=ksjhwkr, atyp=form, desc="Web form password", cdat=2013-04-21 00:54:43 +0000, srvr=www.usaa.com, mdat=2013-04-21 00:59:18 +0000, sync=1, ptcl=htps, class="inet", agrp=com.apple.cfnetwork, port=0}
    9/26/14 9:26:01.406 PM KeychainMigrator[1974]: Migrate item: {port=0, srvr=deseretbook.com, mdat=2013-12-22 03:07:19 +0000, acct=j********@*****.com, ptcl=htps, cdat=2013-12-22 03:06:43 +0000, class="inet", atyp=form, desc="Web form password", labl="deseretbook.com (j********@*****.com)"}
    9/26/14 9:26:01.410 PM KeychainMigrator[1974]: Item already in keychain (have you run the migrator before?): {labl="deseretbook.com (j********@*****.com)", v_Data=<not-logged>, acct=j********@*****.com, atyp=form, desc="Web form password", cdat=2013-12-22 03:06:43 +0000, srvr=deseretbook.com, mdat=2013-12-22 03:07:19 +0000, sync=1, ptcl=htps, class="inet", agrp=com.apple.cfnetwork, port=0}
    9/26/14 9:26:01.411 PM KeychainMigrator[1974]: Migrate item: {port=0, srvr=www.cubscouttracker.com, mdat=2013-05-23 02:40:58 +0000, acct=j******, ptcl=htps, cdat=2013-05-23 02:40:58 +0000, class="inet", icmt=default, atyp=form, desc="Web form password", labl="www.cubscouttracker.com (j******)"}
    9/26/14 9:26:01.415 PM KeychainMigrator[1974]: Item already in keychain (have you run the migrator before?): {labl="www.cubscouttracker.com (j******)", v_Data=<not-logged>, acct=j******, icmt=default, atyp=form, desc="Web form password", cdat=2013-05-23 02:40:58 +0000, srvr=www.cubscouttracker.com, mdat=2013-05-23 02:40:58 +0000, sync=1, ptcl=htps, class="inet", agrp=com.apple.cfnetwork, port=0}
    9/26/14 9:26:01.415 PM KeychainMigrator[1974]: Migrate item: {port=0, srvr=login.comcast.net, mdat=2013-11-17 18:51:33 +0000, acct=g******@******.net, ptcl=htps, cdat=2013-11-17 18:51:33 +0000, class="inet", icmt=default, atyp=form, desc="Web form password", labl="login.comcast.net (g******@******.net)"}
    9/26/14 9:26:01.419 PM KeychainMigrator[1974]: Item already in keychain (have you run the migrator before?): {labl="login.comcast.net (g******@******.net)", v_Data=<not-logged>, acct=g******@******.net, icmt=default, atyp=form, desc="Web form password", cdat=2013-11-17 18:51:33 +0000, srvr=login.comcast.net, mdat=2013-11-17 18:51:33 +0000, sync=1, ptcl=htps, class="inet", agrp=com.apple.cfnetwork, port=0}
    9/26/14 9:26:01.419 PM KeychainMigrator[1974]: Migrate item: {port=0, srvr=www.usaa.com, mdat=2013-04-21 00:59:18 +0000, acct=j********, ptcl=htps, cdat=2013-04-21 00:49:59 +0000, class="inet", icmt=default, atyp=form, desc="Web form password", labl="www.usaa.com (j********)"}
    9/26/14 9:26:01.423 PM KeychainMigrator[1974]: Item already in keychain (have you run the migrator before?): {labl="www.usaa.com (j********)", v_Data=<not-logged>, acct=j********, icmt=default, atyp=form, desc="Web form password", cdat=2013-04-21 00:49:59 +0000, srvr=www.usaa.com, mdat=2013-04-21 00:59:18 +0000, sync=1, ptcl=htps, class="inet", agrp=com.apple.cfnetwork, port=0}
    9/26/14 9:26:01.424 PM KeychainMigrator[1974]: Migrate item: {port=0, srvr=www.waze.com, mdat=2013-04-22 22:42:55 +0000, acct=j********, ptcl=htps, cdat=2013-04-22 22:42:55 +0000, class="inet", icmt=default, atyp=form, desc="Web form password", labl="www.waze.com (j********)"}
    9/26/14 9:26:01.427 PM KeychainMigrator[1974]: Item already in keychain (have you run the migrator before?): {labl="www.waze.com (j********)", v_Data=<not-logged>, acct=j********, icmt=default, atyp=form, desc="Web form password", cdat=2013-04-22 22:42:55 +0000, srvr=www.waze.com, mdat=2013-04-22 22:42:55 +0000, sync=1, ptcl=htps, class="inet", agrp=com.apple.cfnetwork, port=0}
    9/26/14 9:26:01.431 PM KeychainMigrator[1974]: Unusual ACL path: InternetAccounts for <SecKeychainItem 0x7feb8a6331c0 [0x7fff7cd19f00]>
    9/26/14 9:26:01.446 PM KeychainMigrator[1974]: Migrate item: {mdat=2014-08-30 19:52:03 +0000, cdat=2014-01-20 03:50:48 +0000, svce=IDS, acct=j********@*****.com-AuthToken, class="genp", labl="IDS: j********@*****.com-AuthToken"}
    9/26/14 9:26:01.450 PM KeychainMigrator[1974]: Item already in keychain (have you run the migrator before?): {v_Data=<not-logged>, mdat=2014-08-30 19:52:03 +0000, cdat=2014-01-20 03:50:48 +0000, acct=j********@*****.com-AuthToken, sync=1, class="genp", agrp=appleaccount, svce=IDS, labl="IDS: j********@*****.com-AuthToken"}
    9/26/14 9:26:01.450 PM KeychainMigrator[1974]: Migration complete, error count=35
    9/26/14 9:26:21.477 PM SystemUIServer[1990]: Cannot find executable for CFBundle 0x7fcc58d42460 </System/Library/CoreServices/Menu Extras/Clock.menu> (not loaded)
    9/26/14 9:26:21.605 PM syncdefaultsd[1977]: [AOSAccounts] : IAAppProvider::CopyAccountUIDForUser Timed out waiting
    9/26/14 9:26:21.904 PM Dock[1988]: LaunchPad: <LPRoot: 0x7f9d68f2cb10 2 children> has bad children layout. Fixing.
    9/26/14 9:26:23.091 PM SystemUIServer[1990]: Cannot find executable for CFBundle 0x7fcc58f0c370 </System/Library/CoreServices/Menu Extras/Volume.menu> (not loaded)
    9/26/14 9:26:37.598 PM CalendarAgent[1965]: No existing source with identifier: 1BB4EF59-EF42-490C-B254-D2E9E05F0C4E
    9/26/14 9:26:43.104 PM AddressBookSourceSync[1979]: [CardDAVPlugin-ERROR] -startSync completed but _currentServerSyncOperation is nil
    9/26/14 9:26:53.961 PM com.apple.dock.extra[2022]: <NSXPCConnection: 0x7fe93ad52ac0>: received an undecodable message (no exported object to receive message). Dropping message.
    9/26/14 9:26:54.749 PM com.apple.NotesMigratorService[2033]: Joined Aqua audit session
    9/26/14 9:26:54.935 PM com.apple.internetaccounts[1984]: An instance 0x7f831158d300 of class IMAPMailbox was deallocated while key value observers were still registered with it. Observation info was leaked, and may even become mistakenly attached to some other object. Set a breakpoint on NSKVODeallocateBreak to stop here in the debugger. Here's the current observation info:
    <NSKeyValueObservationInfo 0x7f831148d780> (
    <NSKeyValueObservance 0x7f8311498ee0: Observer: 0x7f831158bd60, Key path: uidNext, Options: <New: NO, Old: NO, Prior: NO> Context: 0x7fff8ebea43b, Property: 0x7f831140ad20>
    9/26/14 9:27:00.337 PM com.apple.internetaccounts[1984]: *** Warning: Timed out waiting for one or more plugins.
    9/26/14 9:27:05.337 PM SystemUIServer[1990]: Couldn't contact spell checker for Multilingual
    9/26/14 9:27:05.930 PM DLconnectMonitor[2050]: DLconnectMonitor 5.7.2.17412 © 2013 Koninklijke Philips Electronics N.V. All rights reserved.
    9/26/14 9:27:06.629 PM WiFiKeychainProxy[2039]: [NO client logger] <Nov 10 2013 18:30:13> WIFICLOUDSYNC WiFiCloudSyncEngineCreate: created...
    9/26/14 9:27:06.629 PM WiFiKeychainProxy[2039]: [NO client logger] <Nov 10 2013 18:30:13> WIFICLOUDSYNC WiFiCloudSyncEngineRegisterCallbacks: WiFiCloudSyncEngineCallbacks version - 0, bundle id - com.apple.wifi.WiFiKeychainProxy
    9/26/14 9:27:12.785 PM Console[2058]: setPresentationOptions called with NSApplicationPresentationFullScreen when there is no visible fullscreen window; this call will be ignored.
    9/26/14 9:27:16.346 PM com.apple.internetaccounts[1984]: *** Couldn't create account from account settings: {
        password = "**";
    9/26/14 9:27:18.610 PM com.apple.imfoundation.IMRemoteURLConnectionAgent[2059]: ERROR: __CFURLCache:CreateTablesAndIndexes version create - disk I/O error. ErrCode: 10.
    9/26/14 9:27:18.610 PM com.apple.imfoundation.IMRemoteURLConnectionAgent[2059]: __CFURLCache:RecreateEmptyPersistentStoreOnDiskAndOpen: create tables and index failed.
    9/26/14 9:27:52.256 PM Google Drive[2055]: PyObjCPointer created: at 0xa1661438 of type {__CFBoolean=}
    9/26/14 9:27:52.257 PM Google Drive[2055]: PyObjCPointer created: at 0xa1661430 of type {__CFBoolean=}
    9/26/14 9:27:52.260 PM Google Drive[2055]: PyObjCPointer created: at 0xa1661440 of type {__CFNumber=}
    9/26/14 9:27:52.261 PM Google Drive[2055]: PyObjCPointer created: at 0xa1661450 of type {__CFNumber=}
    9/26/14 9:27:52.261 PM Google Drive[2055]: PyObjCPointer created: at 0xa1661460 of type {__CFNumber=}
    9/26/14 9:28:23.290 PM Dropbox[2054]: PyObjCPointer created: at 0xafdfc88 of type {OpaqueJSContext=}
    9/26/14 9:28:23.316 PM Google Drive[2055]: GsyncAppDeletegate.py : Finder debug level logs : False
    9/26/14 9:28:28.014 PM System Events[2112]: .sdef warning for part of complex type 'any | number | boolean | date | list | record | text | data' used in suite 'Property List Suite': 'data' is not a valid type name.
    9/26/14 9:28:28.015 PM System Events[2112]: .sdef warning for type 'text | missing value | any' attribute 'uniqueID' of class 'XML element' in suite 'XML Suite': AppleScript ID references may not work for this property because its type is not NSNumber- or NSString-derived.
    9/26/14 9:28:32.153 PM Google Drive[2055]: CoreText performance note: Client called CTFontCreateWithName() using name ".Lucida Grande UI" and got font with PostScript name ".LucidaGrandeUI". For best performance, only use PostScript names when calling this API.
    9/26/14 9:28:32.153 PM Google Drive[2055]: CoreText performance note: Set a breakpoint on CTFontLogSuboptimalRequest to debug.
    9/26/14 9:28:32.157 PM Google Drive[2055]: CoreText performance note: Client called CTFontCreateWithName() using name "Open Sans" and got font with PostScript name "OpenSans-Light". For best performance, only use PostScript names when calling this API.
    9/26/14 9:28:46.969 PM Google Drive[2162]: PyObjCPointer created: at 0xa1661438 of type {__CFBoolean=}
    9/26/14 9:28:46.970 PM Google Drive[2162]: PyObjCPointer created: at 0xa1661430 of type {__CFBoolean=}
    9/26/14 9:28:46.972 PM Google Drive[2162]: PyObjCPointer created: at 0xa1661440 of type {__CFNumber=}
    9/26/14 9:28:46.972 PM Google Drive[2162]: PyObjCPointer created: at 0xa1661450 of type {__CFNumber=}
    9/26/14 9:28:46.973 PM Google Drive[2162]: PyObjCPointer created: at 0xa1661460 of type {__CFNumber=}
    9/26/14 9:28:48.320 PM Google Drive[2162]: GsyncAppDeletegate.py : Finder debug level logs : False
    9/26/14 9:28:48.574 PM Google Drive[2162]: CoreText performance note: Client called CTFontCreateWithName() using name ".Lucida Grande UI" and got font with PostScript name ".LucidaGrandeUI". For best performance, only use PostScript names when calling this API.
    9/26/14 9:28:48.574 PM Google Drive[2162]: CoreText performance note: Set a breakpoint on CTFontLogSuboptimalRequest to debug.
    9/26/14 9:28:48.579 PM Google Drive[2162]: CoreText performance note: Client called CTFontCreateWithName() using name "Open Sans" and got font with PostScript name "OpenSans-Light". For best performance, only use PostScript names when calling this API.
    9/26/14 9:29:02.838 PM defaults[2210]:
    The domain/default pair of (/Applications/Google Chrome.app/Contents/Info, KSBrandID) does not exist
    9/26/14 9:29:23.813 PM defaults[4455]:
    The domain/default pair of (/Applications/Google Chrome.app/Contents/Info, KSChannelID) does not exist
    9/26/14 9:31:12.416 PM Console[2058]: Metadata.framework [Error]: void _MDItemMarkAsUsedForPath(CFStringRef): was called with a NULL path
    9/26/14 9:31:41.700 PM Console[2058]: Metadata.framework [Error]: void _MDItemMarkAsUsedForPath(CFStringRef): was called with a NULL path
    9/26/14 9:31:43.351 PM Console[2058]: Metadata.framework [Error]: void _MDItemMarkAsUsedForPath(CFStringRef): was called with a NULL path
    9/26/14 9:32:59.922 PM syncdefaultsd[4553]: Fixing push token
    9/26/14 9:33:05.915 PM com.apple.InputMethodKit.UserDictionary[4560]: -[PFUbiquitySwitchboardEntryMetadata setUseLocalStorage:](760): CoreData: Ubiquity:  jeremy~35E89389-9660-58FF-A64E-D6C36A4336EC:UserDictionary
    Using local storage: 1
    9/26/14 9:33:07.297 PM com.apple.InputMethodKit.UserDictionary[4560]: -[PFUbiquitySwitchboardEntryMetadata setUseLocalStorage:](760): CoreData: Ubiquity:  jeremy~35E89389-9660-58FF-A64E-D6C36A4336EC:UserDictionary
    Using local storage: 0
    9/26/14 9:40:42.065 PM System Events[4657]: .sdef warning for part of complex type 'any | number | boolean | date | list | record | text | data' used in suite 'Property List Suite': 'data' is not a valid type name.
    9/26/14 9:40:42.067 PM System Events[4657]: .sdef warning for type 'text | missing value | any' attribute 'uniqueID' of class 'XML element' in suite 'XML Suite': AppleScript ID references may not work for this property because its type is not NSNumber- or NSString-derived.

    That log extract was just from me logging in and posting this.  I didn't have any beach balls then but it was kind of slow to get logged in and fully functional.  I looked back as far as the log goes (9/21) and didn't see any more KeychainMigrator messages.  I've posted a log extract below from all of today.  I have logged in a couple of times, opened several of the applications that I typically use and visited several of the most common websites that I visit.  I only saw beach balls briefly a couple of times that appeared to coincide with Google Drive loading in the menu bar.  I will try to post a log when it starts getting slow and having more beach balls.
    9/27/14 6:16:17.762 AM com.apple.InputMethodKit.UserDictionary[4560]: -[PFUbiquitySwitchboardEntryMetadata setUseLocalStorage:](760): CoreData: Ubiquity:  jeremy~35E89389-9660-58FF-A64E-D6C36A4336EC:UserDictionary
    Using local storage: 1
    9/27/14 7:38:10.279 AM com.apple.InputMethodKit.UserDictionary[4560]: -[PFUbiquitySwitchboardEntryMetadata setUseLocalStorage:](760): CoreData: Ubiquity:  jeremy~35E89389-9660-58FF-A64E-D6C36A4336EC:UserDictionary
    Using local storage: 1
    9/27/14 7:52:53.167 AM com.apple.launchd.peruser.501[441]: Background: Aqua: Registering new GUI session.
    9/27/14 7:52:53.242 AM com.apple.launchd.peruser.501[441]: (com.apple.EscrowSecurityAlert) Unknown key: seatbelt-profiles
    9/27/14 7:52:53.243 AM com.apple.launchd.peruser.501[441]: (com.apple.ReportCrash) Falling back to default Mach exception handler. Could not find: com.apple.ReportCrash.Self
    9/27/14 7:52:54.847 AM com.apple.InputMethodKit.UserDictionary[4560]: -[PFUbiquitySwitchboardEntryMetadata setUseLocalStorage:](760): CoreData: Ubiquity:  jeremy~35E89389-9660-58FF-A64E-D6C36A4336EC:UserDictionary
    Using local storage: 1
    9/27/14 7:52:55.891 AM com.apple.InputMethodKit.UserDictionary[4560]: -[PFUbiquitySwitchboardEntryMetadata setUseLocalStorage:](760): CoreData: Ubiquity:  jeremy~35E89389-9660-58FF-A64E-D6C36A4336EC:UserDictionary
    Using local storage: 1
    9/27/14 7:52:55.999 AM SystemUIServer[5676]: Cannot find executable for CFBundle 0x7fd7a076d370 </System/Library/CoreServices/Menu Extras/Clock.menu> (not loaded)
    9/27/14 7:52:58.105 AM SystemUIServer[5676]: Cannot find executable for CFBundle 0x7fd7a0573ee0 </System/Library/CoreServices/Menu Extras/Volume.menu> (not loaded)
    9/27/14 7:52:58.387 AM Dock[5673]: LaunchPad: <LPRoot: 0x7fb570c7a980 2 children> has bad children layout. Fixing.
    9/27/14 7:52:59.473 AM DLconnectMonitor[5719]: DLconnectMonitor 5.7.2.17412 © 2013 Koninklijke Philips Electronics N.V. All rights reserved.
    9/27/14 7:53:00.285 AM WiFiKeychainProxy[5704]: [NO client logger] <Nov 10 2013 18:30:13> WIFICLOUDSYNC WiFiCloudSyncEngineCreate: created...
    9/27/14 7:53:00.286 AM WiFiKeychainProxy[5704]: [NO client logger] <Nov 10 2013 18:30:13> WIFICLOUDSYNC WiFiCloudSyncEngineRegisterCallbacks: WiFiCloudSyncEngineCallbacks version - 0, bundle id - com.apple.wifi.WiFiKeychainProxy
    9/27/14 7:53:02.893 AM com.apple.launchd.peruser.501[441]: (com.apple.mrt.uiagent[5708]) Exited with code: 255
    9/27/14 7:53:17.458 AM syncdefaultsd[5693]: [AOSAccounts] : IAAppProvider::CopyAccountUIDForUser Timed out waiting
    9/27/14 7:53:18.577 AM com.apple.InputMethodKit.UserDictionary[4560]: -[PFUbiquitySwitchboardEntryMetadata setUseLocalStorage:](760): CoreData: Ubiquity:  jeremy~35E89389-9660-58FF-A64E-D6C36A4336EC:UserDictionary
    Using local storage: 0
    9/27/14 7:53:32.763 AM com.apple.imfoundation.IMRemoteURLConnectionAgent[5752]: ERROR: __CFURLCache:CreateTablesAndIndexes version create - database is locked. ErrCode: 5.
    9/27/14 7:53:32.764 AM com.apple.imfoundation.IMRemoteURLConnectionAgent[5752]: __CFURLCache:RecreateEmptyPersistentStoreOnDiskAndOpen: create tables and index failed.
    9/27/14 7:53:34.087 AM com.apple.NotesMigratorService[2033]: Joined Aqua audit session
    9/27/14 7:53:34.861 AM com.apple.internetaccounts[5701]: An instance 0x7fe9c483d9d0 of class IMAPMailbox was deallocated while key value observers were still registered with it. Observation info was leaked, and may even become mistakenly attached to some other object. Set a breakpoint on NSKVODeallocateBreak to stop here in the debugger. Here's the current observation info:
    <NSKeyValueObservationInfo 0x7fe9c483f480> (
    <NSKeyValueObservance 0x7fe9c483f290: Observer: 0x7fe9c483ab60, Key path: uidNext, Options: <New: NO, Old: NO, Prior: NO> Context: 0x7fff8ebea43b, Property: 0x7fe9c483eb50>
    9/27/14 7:53:40.468 AM Google Drive[5729]: PyObjCPointer created: at 0xa1661438 of type {__CFBoolean=}
    9/27/14 7:53:40.469 AM Google Drive[5729]: PyObjCPointer created: at 0xa1661430 of type {__CFBoolean=}
    9/27/14 7:53:40.470 AM Google Drive[5729]: PyObjCPointer created: at 0xa1661440 of type {__CFNumber=}
    9/27/14 7:53:40.471 AM Google Drive[5729]: PyObjCPointer created: at 0xa1661450 of type {__CFNumber=}
    9/27/14 7:53:40.471 AM Google Drive[5729]: PyObjCPointer created: at 0xa1661460 of type {__CFNumber=}
    9/27/14 7:53:44.368 AM com.apple.dock.extra[5748]: <NSXPCConnection: 0x7fb573e28050>: received an undecodable message (no exported object to receive message). Dropping message.
    9/27/14 7:54:08.678 AM Google Drive[5729]: GsyncAppDeletegate.py : Finder debug level logs : False
    9/27/14 7:54:10.614 AM Dropbox[5724]: PyObjCPointer created: at 0xafdfc88 of type {OpaqueJSContext=}
    9/27/14 7:54:16.576 AM Google Drive[5729]: CoreText performance note: Client called CTFontCreateWithName() using name ".Lucida Grande UI" and got font with PostScript name ".LucidaGrandeUI". For best performance, only use PostScript names when calling this API.
    9/27/14 7:54:16.577 AM Google Drive[5729]: CoreText performance note: Set a breakpoint on CTFontLogSuboptimalRequest to debug.
    9/27/14 7:54:16.580 AM Google Drive[5729]: CoreText performance note: Client called CTFontCreateWithName() using name "Open Sans" and got font with PostScript name "OpenSans-Light". For best performance, only use PostScript names when calling this API.
    9/27/14 7:54:17.614 AM System Events[5804]: .sdef warning for part of complex type 'any | number | boolean | date | list | record | text | data' used in suite 'Property List Suite': 'data' is not a valid type name.
    9/27/14 7:54:17.615 AM System Events[5804]: .sdef warning for type 'text | missing value | any' attribute 'uniqueID' of class 'XML element' in suite 'XML Suite': AppleScript ID references may not work for this property because its type is not NSNumber- or NSString-derived.
    9/27/14 7:54:29.324 AM Google Drive[5836]: PyObjCPointer created: at 0xa1661438 of type {__CFBoolean=}
    9/27/14 7:54:29.324 AM Google Drive[5836]: PyObjCPointer created: at 0xa1661430 of type {__CFBoolean=}
    9/27/14 7:54:29.326 AM Google Drive[5836]: PyObjCPointer created: at 0xa1661440 of type {__CFNumber=}
    9/27/14 7:54:29.326 AM Google Drive[5836]: PyObjCPointer created: at 0xa1661450 of type {__CFNumber=}
    9/27/14 7:54:29.326 AM Google Drive[5836]: PyObjCPointer created: at 0xa1661460 of type {__CFNumber=}
    9/27/14 7:54:30.405 AM Google Drive[5836]: GsyncAppDeletegate.py : Finder debug level logs : False
    9/27/14 7:54:30.569 AM Google Drive[5836]: CoreText performance note: Client called CTFontCreateWithName() using name ".Lucida Grande UI" and got font with PostScript name ".LucidaGrandeUI". For best performance, only use PostScript names when calling this API.
    9/27/14 7:54:30.569 AM Google Drive[5836]: CoreText performance note: Set a breakpoint on CTFontLogSuboptimalRequest to debug.
    9/27/14 7:54:30.573 AM Google Drive[5836]: CoreText performance note: Client called CTFontCreateWithName() using name "Open Sans" and got font with PostScript name "OpenSans-Light". For best performance, only use PostScript names when calling this API.
    9/27/14 8:23:50.228 AM com.apple.launchd.peruser.501[441]: (com.apple.AirPlayUIAgent[5869]) Exited: Killed: 9
    9/27/14 8:23:50.228 AM com.apple.launchd.peruser.501[441]: (com.apple.EscrowSecurityAlert[5857]) Exited: Killed: 9
    9/27/14 8:23:50.229 AM com.apple.launchd.peruser.501[441]: (com.apple.universalaccessAuthWarn[5831]) Exited: Killed: 9
    9/27/14 8:23:50.237 AM com.apple.launchd.peruser.501[441]: (com.hp.devicemonitor[5703]) Exited: Killed: 9
    9/27/14 8:23:50.251 AM com.apple.launchd.peruser.501[441]: (com.apple.iTunesHelper.9536[5723]) Exited with code: 1
    9/27/14 8:23:50.251 AM com.apple.launchd.peruser.501[441]: (com.apple.ImageCaptureExtension2.61456[5803]) Exited: Killed: 9
    9/27/14 12:17:41.896 PM com.apple.InputMethodKit.UserDictionary[4560]: -[PFUbiquitySwitchboardEntryMetadata setUseLocalStorage:](760): CoreData: Ubiquity:  jeremy~35E89389-9660-58FF-A64E-D6C36A4336EC:UserDictionary
    Using local storage: 1
    9/27/14 12:53:58.964 PM com.apple.internetaccounts[6188]: [com.apple.calendar.agentLink.xpc] [Could not create an agent proxy object for connection: Error Domain=NSCocoaErrorDomain Code=4099 "Couldn’t communicate with a helper application." (The connection was invalidated.) UserInfo=0x7fa403604cd0 {NSDebugDescription=The connection was invalidated.} - (
      0   CalendarAgentLink                   0x00007fff8ff34fc1 -[CalAgentLink agentWithErrorBlock:] + 45
      1   CalendarPersistence                 0x00007fff93f2e332 +[CalPersistence _startCoreDataXPCServer:] + 202
      2   CalendarPersistence                 0x00007fff93f2ecb0 __87+[CalPersistence asyncConnectToPersistenceWithClientXPCWaitingOnGroup:completionBlock:]_block_in voke326 + 125
      3   libdispatch.dylib                   0x00007fff901ea1bb _dispatch_call_block_and_release + 12
      4   libdispatch.dylib                   0x00007fff901e728d _dispatch_client_callout + 8
      5   libdispatch.dylib                   0x00007fff901eb7e3 _dispatch_async_redirect_invoke + 154
      6   libdispatch.dylib                   0x00007fff901e728d _dispatch_client_callout + 8
      7   libdispatch.dylib                   0x00007fff901e9082 _dispatch_root_queue_drain + 326
      8   libdispatch.dylib                   0x00007fff901ea177 _dispatch_worker_thread2 + 40
      9   libsystem_pthread.dylib             0x00007fff90820ef8 _pthread_wqthread + 314
      10  libsystem_pthread.dylib             0x00007fff90823fb9 start_wqthread + 13
    9/27/14 12:53:58.966 PM com.apple.internetaccounts[6188]: [com.apple.calendar.agentLink.xpc] [Tearing down invalid agent link]
    9/27/14 12:53:58.966 PM com.apple.internetaccounts[6188]: [com.apple.calendar.store.log] [Tried to connect to XPC persistence, but connection was invalidated, retrying...]
    9/27/14 12:53:58.966 PM com.apple.internetaccounts[6188]: [com.apple.calendar.store.log] [Retry Attempt 1]
    9/27/14 12:53:58.967 PM com.apple.internetaccounts[6188]: [com.apple.calendar.agentLink.xpc] [Could not create an agent proxy object for connection: Error Domain=NSCocoaErrorDomain Code=4099 "Couldn’t communicate with a helper application." (The connection was invalidated.) UserInfo=0x7fa40370c6f0 {NSDebugDescription=The connection was invalidated.} - (
      0   CalendarAgentLink                   0x00007fff8ff34fc1 -[CalAgentLink agentWithErrorBlock:] + 45
      1   CalendarPersistence                 0x00007fff93f2e332 +[CalPersistence _startCoreDataXPCServer:] + 202
      2   CalendarPersistence                 0x00007fff93f2e4c5 +[CalPersistence _startCoreDataXPCServer:] + 605
      3   CalendarPersistence                 0x00007fff93f2ecb0 __87+[CalPersistence asyncConnectToPersistenceWithClientXPCWaitingOnGroup:completionBlock:]_block_in voke326 + 125
      4   libdispatch.dylib                   0x00007fff901ea1bb _dispatch_call_block_and_release + 12
      5   libdispatch.dylib                   0x00007fff901e728d _dispatch_client_callout + 8
      6   libdispatch.dylib                   0x00007fff901eb7e3 _dispatch_async_redirect_invoke + 154
      7   libdispatch.dylib                   0x00007fff901e728d _dispatch_client_callout + 8
      8   libdispatch.dylib                   0x00007fff901e9082 _dispatch_root_queue_drain + 326
      9   libdispatch.dylib                   0x00007fff901ea177 _dispatch_worker_thread2 + 40
      10  libsystem_pthread.dylib             0x00007fff90820ef8 _pthread_wqthread + 314
      11  libsystem_pthread.dylib             0x00007fff90823fb9 start_wqthread + 13
    9/27/14 12:53:58.968 PM com.apple.internetaccounts[6188]: [com.apple.calendar.agentLink.xpc] [Tearing down invalid agent link]
    9/27/14 12:53:58.968 PM com.apple.internetaccounts[6188]: [com.apple.calendar.store.log] [Tried to connect to XPC persistence, but connection was invalidated, retrying...]
    9/27/14 12:53:58.968 PM com.apple.internetaccounts[6188]: [com.apple.calendar.store.log] [Retry Attempt 2]
    9/27/14 12:53:59.019 PM com.apple.internetaccounts[6188]: [com.apple.calendar.agentLink.xpc] [Could not create an agent proxy object for connection: Error Domain=NSCocoaErrorDomain Code=4099 "Couldn’t communicate with a helper application." (The connection was invalidated from the other process or the connection name was invalid.) UserInfo=0x7fa403711570 {NSDebugDescription=The connection was invalidated from the other process or the connection name was invalid.} - (
      0   CalendarAgentLink                   0x00007fff8ff34fc1 -[CalAgentLink agentWithErrorBlock:] + 45
      1   CalendarPersistence                 0x00007fff93f2e332 +[CalPersistence _startCoreDataXPCServer:] + 202
      2   CalendarPersistence                 0x00007fff93f2e5af +[CalPersistence _startCoreDataXPCServer:] + 839
      3   CalendarPersistence                 0x00007fff93f2e4c5 +[CalPersistence _startCoreDataXPCServer:] + 605
      4   CalendarPersistence                 0x00007fff93f2ecb0 __87+[CalPersistence asyncConnectToPersistenceWithClientXPCWaitingOnGroup:completionBlock:]_block_in voke326 + 125
      5   libdispatch.dylib                   0x00007fff901ea1bb _dispatch_call_block_and_release + 12
      6   libdispatch.dylib                   0x00007fff901e728d _dispatch_client_callout + 8
      7   libdispatch.dylib                   0x00007fff901eb7e3 _dispatch_async_redirect_invoke + 154
      8   libdispatch.dylib                   0x00007fff901e728d _dispatch_client_callout + 8
      9   libdispatch.dylib                   0x00007fff901e9082 _dispatch_root_queue_drain + 326
      10  libdispatch.dylib                   0x00007fff901ea177 _dispatch_worker_thread2 + 40
      11  libsystem_pthread.dylib             0x00007fff90820ef8 _pthread_wqthread + 314
      12  libsystem_pthread.dylib             0x00007fff90823fb9 start_wqthread + 13
    9/27/14 12:53:59.020 PM com.apple.internetaccounts[6188]: [com.apple.calendar.agentLink.xpc] [Tearing down invalid agent link]
    9/27/14 12:53:59.021 PM com.apple.internetaccounts[6188]: [com.apple.calendar.store.log] [Tried to connect to XPC persistence, but connection was invalidated, retrying...]
    9/27/14 12:53:59.021 PM com.apple.internetaccounts[6188]: [com.apple.calendar.store.log] [Retried Attempt 3]
    9/27/14 12:53:59.522 PM com.apple.internetaccounts[6188]: [com.apple.calendar.agentLink.xpc] [Could not create an agent proxy object for connection: Error Domain=NSCocoaErrorDomain Code=4099 "Couldn’t communicate with a helper application." (The connection was invalidated from the other process or the connection name was invalid.) UserInfo=0x7fa403613670 {NSDebugDescription=The connection was invalidated from the other process or the connection name was invalid.} - (
      0   CalendarAgentLink                   0x00007fff8ff34fc1 -[CalAgentLink agentWithErrorBlock:] + 45
      1   CalendarPersistence                 0x00007fff93f2e332 +[CalPersistence _startCoreDataXPCServer:] + 202
      2   CalendarPersistence                 0x00007fff93f2e5fc +[CalPersistence _startCoreDataXPCServer:] + 916
      3   CalendarPersistence                 0x00007fff93f2e5af +[CalPersistence _startCoreDataXPCServer:] + 839
      4   CalendarPersistence                 0x00007fff93f2e4c5 +[CalPersistence _startCoreDataXPCServer:] + 605
      5   CalendarPersistence                 0x00007fff93f2ecb0 __87+[CalPersistence asyncConnectToPersistenceWithClientXPCWaitingOnGroup:completionBlock:]_block_in voke326 + 125
      6   libdispatch.dylib                   0x00007fff901ea1bb _dispatch_call_block_and_release + 12
      7   libdispatch.dylib                   0x00007fff901e728d _dispatch_client_callout + 8
      8   libdispatch.dylib                   0x00007fff901eb7e3 _dispatch_async_redirect_invoke + 154
      9   libdispatch.dylib                   0x00007fff901e728d _dispatch_client_callout + 8
      10  libdispatch.dylib                   0x00007fff901e9082 _dispatch_root_queue_drain + 326
      11  libdispatch.dylib                   0x00007fff901ea177 _dispatch_worker_thread2 + 40
      12  libsystem_pthread.dylib             0x00007fff90820ef8 _pthread_wqthread + 314
      13  libsystem_pthread.dylib             0x00007fff90823fb9 start_wqthread + 13
    9/27/14 12:53:59.523 PM com.apple.internetaccounts[6188]: [com.apple.calendar.agentLink.xpc] [Tearing down invalid agent link]
    9/27/14 12:53:59.523 PM com.apple.internetaccounts[6188]: [com.apple.calendar.store.log] [Tried to connect to XPC persistence, but connection was invalidated, retrying...]
    9/27/14 12:53:59.524 PM com.apple.internetaccounts[6188]: [com.apple.calendar.store.log] [Retried Attempt 4]
    9/27/14 12:54:01.029 PM com.apple.internetaccounts[6188]: [com.apple.calendar.agentLink.xpc] [Could not create an agent proxy object for connection: Error Domain=NSCocoaErrorDomain Code=4099 "Couldn’t communicate with a helper application." (The connection was invalidated from the other process or the connection name was invalid.) UserInfo=0x7fa4034be0f0 {NSDebugDescription=The connection was invalidated from the other process or the connection name was invalid.} - (
      0   CalendarAgentLink                   0x00007fff8ff34fc1 -[CalAgentLink agentWithErrorBlock:] + 45
      1   CalendarPersistence                 0x00007fff93f2e332 +[CalPersistence _startCoreDataXPCServer:] + 202
      2   CalendarPersistence                 0x00007fff93f2e649 +[CalPersistence _startCoreDataXPCServer:] + 993
      3   CalendarPersistence                 0x00007fff93f2e5fc +[CalPersistence _startCoreDataXPCServer:] + 916
      4   CalendarPersistence                 0x00007fff93f2e5af +[CalPersistence _startCoreDataXPCServer:] + 839
      5   CalendarPersistence                 0x00007fff93f2e4c5 +[CalPersistence _startCoreDataXPCServer:] + 605
      6   CalendarPersistence                 0x00007fff93f2ecb0 __87+[CalPersistence asyncConnectToPersistenceWithClientXPCWaitingOnGroup:completionBlock:]_block_in voke326 + 125
      7   libdispatch.dylib                   0x00007fff901ea1bb _dispatch_call_block_and_release + 12
      8   libdispatch.dylib                   0x00007fff901e728d _dispatch_client_callout + 8
      9   libdispatch.dylib                   0x00007fff901eb7e3 _dispatch_async_redirect_invoke + 154
      10  libdispatch.dylib                   0x00007fff901e728d _dispatch_client_callout + 8
      11  libdispatch.dylib                   0x00007fff901e9082 _dispatch_root_queue_drain + 326
      12  libdispatch.dylib                   0x00007fff901ea177 _dispatch_worker_thread2 + 40
      13  libsystem_pthread.dylib             0x00007fff90820ef8 _pthread_wqthread + 314
      14  libsystem_pthread.dylib             0x00007fff90823fb9 start_wqthread + 13
    9/27/14 12:54:01.033 PM com.apple.internetaccounts[6188]: [com.apple.calendar.agentLink.xpc] [Tearing down invalid agent link]
    9/27/14 12:54:01.034 PM com.apple.internetaccounts[6188]: [com.apple.calendar.store.log] [Tried to connect to XPC persistence, but connection was invalidated, retrying...]
    9/27/14 12:54:01.034 PM com.apple.internetaccounts[6188]: [com.apple.calendar.store.log] [Retried Attempt 5, reloading launchd job]
    9/27/14 12:54:01.035 PM com.apple.internetaccounts[6188]: [com.apple.calendar.store.log] [CalendarAgentLauncher error when sending message: Connection invalid]
    9/27/14 12:54:01.035 PM com.apple.internetaccounts[6188]: [com.apple.calendar.agentLink.xpc] [Could not create an agent proxy object for connection: Error Domain=NSCocoaErrorDomain Code=4099 "Couldn’t communicate with a helper application." (The connection was invalidated from the other process or the connection name was invalid.) UserInfo=0x7fa403734130 {NSDebugDescription=The connection was invalidated from the other process or the connection name was invalid.} - (
      0   CalendarAgentLink                   0x00007fff8ff34fc1 -[CalAgentLink agentWithErrorBlock:] + 45
      1   CalendarPersistence                 0x00007fff93f2e332 +[CalPersistence _startCoreDataXPCServer:] + 202
      2   CalendarPersistence                 0x00007fff93f2e6cf +[CalPersistence _startCoreDataXPCServer:] + 1127
      3   CalendarPersistence                 0x00007fff93f2e649 +[CalPersistence _startCoreDataXPCServer:] + 993
      4   CalendarPersistence                 0x00007fff93f2e5fc +[CalPersistence _startCoreDataXPCServer:] + 916
      5   CalendarPersistence                 0x00007fff93f2e5af +[CalPersistence _startCoreDataXPCServer:] + 839
      6   CalendarPersistence                 0x00007fff93f2e4c5 +[CalPersistence _startCoreDataXPCServer:] + 605
      7   CalendarPersistence                 0x00007fff93f2ecb0 __87+[CalPersistence asyncConnectToPersistenceWithClientXPCWaitingOnGroup:completionBlock:]_block_in voke326 + 125
      8   libdispatch.dylib                   0x00007fff901ea1bb _dispatch_call_block_and_release + 12
      9   libdispatch.dylib                   0x00007fff901e728d _dispatch_client_callout + 8
      10  libdispatch.dylib                   0x00007fff901eb7e3 _dispatch_async_redirect_invoke + 154
      11  libdispatch.dylib                   0x00007fff901e728d _dispatch_client_callout + 8
      12  libdispatch.dylib                   0x00007fff901e9082 _dispatch_root_queue_drain + 326
      13  libdispatch.dylib                   0x00007fff901ea177 _dispatch_worker_thread2 + 40
      14  libsystem_pthread.dylib             0x00007fff90820ef8 _pthread_wqthread + 314
      15  libsystem_pthread.dylib             0x00007fff90823fb9 start_wqthread + 13
    9/27/14 12:54:01.036 PM com.apple.internetaccounts[6188]: [com.apple.calendar.agentLink.xpc] [Tearing down invalid agent link]
    9/27/14 12:54:01.036 PM com.apple.internetaccounts[6188]: [com.apple.calendar.store.log] [Tried to connect to XPC persistence, but connection was invalidated, retrying...]
    9/27/14 12:54:01.037 PM com.apple.internetaccounts[6188]: [com.apple.calendar.store.log] [Retried too many times, giving up.]
    9/27/14 12:54:01.037 PM com.apple.internetaccounts[6188]: [com.apple.calendar.store.log] [Couldn't start the XPC store server.]
    9/27/14 12:54:01.803 PM com.apple.NotesMigratorService[2033]: Joined Aqua audit session
    9/27/14 12:54:01.847 PM com.apple.internetaccounts[6188]: An instance 0x7fa405825bb0 of class IMAPMailbox was deallocated while key value observers were still registered with it. Observation info was leaked, and may even become mistakenly attached to some other object. Set a breakpoint on NSKVODeallocateBreak to stop here in the debugger. Here's the current observation info:
    <NSKeyValueObservationInfo 0x7fa405826a70> (
    <NSKeyValueObservance 0x7fa405826ba0: Observer: 0x7fa405822af0, Key path: uidNext, Options: <New: NO, Old: NO, Prior: NO> Context: 0x7fff8ebea43b, Property: 0x7fa405826a40>
    9/27/14 12:54:01.954 PM com.apple.internetaccounts[6188]: Could not create calendar store!
    9/27/14 12:54:01.954 PM com.apple.internetaccounts[6188]: [com.apple.calendar.agentLink.xpc] [Could not create an agent proxy object for connection: Error Domain=NSCocoaErrorDomain Code=4099 "Couldn’t communicate with a helper application." (The connection was invalidated from the other process or the connection name was invalid.) UserInfo=0x7fa403719de0 {NSDebugDescription=The connection was invalidated from the other process or the connection name was invalid.} - (
      0   CalendarAgentLink                   0x00007fff8ff34fc1 -[CalAgentLink agentWithErrorBlock:] + 45
      1   CalendarPersistence                 0x00007fff93f2e332 +[CalPersistence _startCoreDataXPCServer:] + 202
      2   CalendarPersistence                 0x00007fff93d719c3 +[CalPersistence setupCalendarPersistence:andCreateDefaultCalendarsIfNeeded:withSetupGroup:] + 216
      3   CalendarPersistence                 0x00007fff93def286 +[CalPersistence defaultCalendarPersistence] + 70
      4   CalendarStore                       0x00007fff8f91e749 +[CalCalendarStore defaultCalendarStore] + 182
      5   Calendar                            0x000000010c269511 Calendar + 9489
      6   com.apple.internetaccounts          0x000000010947b377 main + 8309
      7   com.apple.internetaccounts          0x000000010947a339 main + 4151
      8   libdispatch.dylib                   0x00007fff901ea1bb _dispatch_call_block_and_release + 12
      9   libdispatch.dylib                   0x00007fff901e728d _dispatch_client_callout + 8
      10  libdispatch.dylib                   0x00007fff901e9082 _dispatch_root_queue_drain + 326
      11  libdispatch.dylib                   0x00007fff901ea177 _dispatch_worker_thread2 + 40
      12  libsystem_pthread.dylib             0x00007fff90820ef8 _pthread_wqthread + 314
      13  libsystem_pthread.dylib             0x00007fff90823fb9 start_wqthread + 13
    9/27/14 12:54:01.956 PM com.apple.internetaccounts[6188]: [com.apple.calendar.agentLink.xpc] [Tearing down invalid agent link]
    9/27/14 12:54:01.956 PM com.apple.internetaccounts[6188]: [com.apple.calendar.store.log] [Tried to connect to XPC persistence, but connection was invalidated, retrying...]
    9/27/14 12:54:01.957 PM com.apple.internetaccounts[6188]: [com.apple.calendar.store.log] [Retried too many times, giving up.]
    9/27/14 12:54:01.957 PM com.apple.internetaccounts[6188]: Could not create calendar store!
    9/27/14 12:54:01.957 PM com.apple.internetaccounts[6188]: [com.apple.calendar.store.log] [Couldn't start the XPC store server. [Error Domain=CalPersistenceCreationDomain Code=3 "Could not create XPC connection to the CalendarAgent, connection interrupted or invalidated more than 5 times" UserInfo=0x7fa403525ad0 {NSLocalizedDescription=Could not create XPC connection to the CalendarAgent, connection interrupted or invalidated more than 5 times}]]
    9/27/14 12:54:01.958 PM com.apple.internetaccounts[6188]: [com.apple.calendar.agentLink.xpc] [Could not create an agent proxy object for connection: Error Domain=NSCocoaErrorDomain Code=4099 "Couldn’t communicate with a helper application." (The connection was invalidated from the other process or the connection name was invalid.) UserInfo=0x7fa403532480 {NSDebugDescription=The connection was invalidated from the other process or the connection name was invalid.} - (
      0   CalendarAgentLink                   0x00007fff8ff34fc1 -[CalAgentLink agentWithErrorBlock:] + 45
      1   CalendarPersistence                 0x00007fff93f2e332 +[CalPersistence _startCoreDataXPCServer:] + 202
      2   CalendarPersistence                 0x00007fff93d719c3 +[CalPersistence setupCalendarPersistence:andCreateDefaultCalendarsIfNeeded:withSetupGroup:] + 216
      3   CalendarPersistence                 0x00007fff93def286 +[CalPersistence defaultCalendarPersistence] + 70
      4   CalendarStore                       0x00007fff8f91e749 +[CalCalendarStore defaultCalendarStore] + 182
      5   Reminders                           0x000000010c3015b1 Reminders + 9649
      6   com.apple.internetaccounts          0x000000010947b377 main + 8309
      7   com.apple.internetaccounts          0x000000010947a339 main + 4151
      8   libdispatch.dylib                   0x00007fff901ea1bb _dispatch_call_block_and_release + 12
      9   libdispatch.dylib                   0x00007fff901e728d _dispatch_client_callout + 8
      10  libdispatch.dylib                   0x00007fff901e9082 _dispatch_root_queue_drain + 326
      11  libdispatch.dylib                   0x00007fff901ea177 _dispatch_worker_thread2 + 40
      12  libsystem_pthread.dylib             0x00007fff90820ef8 _pthread_wqthread + 314
      13  libsystem_pthread.dylib             0x00007fff90823fb9 start_wqthread + 13
    9/27/14 12:54:01.959 PM com.apple.internetaccounts[6188]: [com.apple.calendar.agentLink.xpc] [Tearing down invalid agent link]
    9/27/14 12:54:01.959 PM com.apple.internetaccounts[6188]: [com.apple.calendar.store.log] [Tried to connect to XPC persistence, but connection was invalidated, retrying...]
    9/27/14 12:54:01.959 PM com.apple.internetaccounts[6188]: [com.apple.calendar.store.log] [Retried too many times, giving up.]
    9/27/14 12:54:01.959 PM com.apple.internetaccounts[6188]: [com.apple.calendar.store.log] [Couldn't start the XPC store server. [Error Domain=CalPersistenceCreationDomain Code=3 "Could not create XPC connection to the CalendarAgent, connection interrupted or invalidated more than 5 times" UserInfo=0x7fa4036004b0 {NSLocalizedDescription=Could not create XPC connection to the CalendarAgent, connection interrupted or invalidated more than 5 times}]]
    9/27/14 12:54:02.145 PM com.apple.internetaccounts[6188]: ACXPCProxyHelper: Received error from accountsd connection. Attempting to call any reply handler.
    9/27/14 12:54:02.147 PM com.apple.internetaccounts[6188]: *** accountTypeWithAccountTypeIdentifier:com.apple.flickr returned nil
    9/27/14 12:54:02.147 PM com.apple.internetaccounts[6188]: ACXPCProxyHelper: Received error from accountsd connection. Attempting to call any reply handler.
    9/27/14 12:54:02.148 PM com.apple.internetaccounts[6188]: *** accountTypeWithAccountTypeIdentifier:com.apple.vimeo returned nil
    9/27/14 12:54:02.148 PM com.apple.internetaccounts[6188]: ACXPCProxyHelper: Received error from accountsd connection. Attempting to call any reply handler.
    9/27/14 12:54:02.149 PM com.apple.internetaccounts[6188]: *** accountTypeWithAccountTypeIdentifier:com.apple.youku returned nil
    9/27/14 12:54:02.149 PM com.apple.internetaccounts[6188]: ACXPCProxyHelper: Received error from accountsd connection. Attempting to call any reply handler.
    9/27/14 12:54:02.150 PM com.apple.internetaccounts[6188]: *** accountTypeWithAccountTypeIdentifier:com.apple.tudou returned nil
    9/27/14 12:54:02.150 PM com.apple.internetaccounts[6188]: ACXPCProxyHelper: Received error from accountsd connection. Attempting to call any reply handler.
    9/27/14 12:54:02.151 PM com.apple.internetaccounts[6188]: *** accountTypeWithAccountTypeIdentifier:com.apple.facebook returned nil
    9/27/14 12:54:02.151 PM com.apple.internetaccounts[6188]: ACXPCProxyHelper: Received error from accountsd connection. Attempting to call any reply handler.
    9/27/14 12:54:02.152 PM com.apple.internetaccounts[6188]: *** accountTypeWithAccountTypeIdentifier:com.apple.twitter returned nil
    9/27/14 12:54:02.152 PM com.apple.internetaccounts[6188]: ACXPCProxyHelper: Received error from accountsd connection. Attempting to call any reply handler.
    9/27/14 12:54:02.152 PM com.apple.internetaccounts[6188]: *** accountTypeWithAccountTypeIdentifier:com.apple.sinaweibo returned nil
    9/27/14 12:54:02.153 PM com.apple.internetaccounts[6188]: ACXPCProxyHelper: Received error from accountsd connection. Attempting to call any reply handler.
    9/27/14 12:54:02.153 PM com.apple.internetaccounts[6188]: *** accountTypeWithAccountTypeIdentifier:com.apple.linkedin returned nil
    9/27/14 12:54:02.154 PM com.apple.internetaccounts[6188]: ACXPCProxyHelper: Received error from accountsd connection. Attempting to call any reply handler.
    9/27/14 12:54:02.154 PM com.apple.internetaccounts[6188]: *** accountTypeWithAccountTypeIdentifier:com.apple.account.tencentweibo returned nil
    9/27/14 12:55:36.377 PM com.apple.internetaccounts[6188]: HIToolbox: received notification of WindowServer event port death.
    9/27/14 12:55:36.383 PM com.apple.internetaccounts[6188]: port matched the WindowServer port created in BindCGSToRunLoop
    9/27/14 12:55:52.627 PM com.apple.launchd.peruser.501[441]: Background: Aqua: Registering new GUI session.
    9/27/14 12:55:52.743 PM com.apple.launchd.peruser.501[441]: (com.apple.EscrowSecurityAlert) Unknown key: seatbelt-profiles
    9/27/14 12:55:52.745 PM com.apple.launchd.peruser.501[441]: (com.apple.ReportCrash) Falling back to default Mach exception handler. Could not find: com.apple.ReportCrash.Self
    9/27/14 12:55:55.681 PM com.apple.InputMethodKit.UserDictionary[4560]: -[PFUbiquitySwitchboardEntryMetadata setUseLocalStorage:](760): CoreData: Ubiquity:  jeremy~35E89389-9660-58FF-A64E-D6C36A4336EC:UserDictionary
    Using local storage: 1
    9/27/14 12:55:56.425 PM com.apple.InputMethodKit.UserDictionary[4560]: -[PFUbiquitySwitchboardEntryMetadata setUseLocalStorage:](760): CoreData: Ubiquity:  jeremy~35E89389-9660-58FF-A64E-D6C36A4336EC:UserDictionary
    Using local storage: 1
    9/27/14 12:55:57.200 PM SystemUIServer[6238]: Cannot find executable for CFBundle 0x7fdba1615770 </System/Library/CoreServices/Menu Extras/Clock.menu> (not loaded)
    9/27/14 12:55:57.598 PM SystemUIServer[6238]: Cannot find executable for CFBundle 0x7fdba1745050 </System/Library/CoreServices/Menu Extras/Volume.menu> (not loaded)
    9/27/14 12:55:57.919 PM Dock[6236]: LaunchPad: <LPRoot: 0x7fda13f4b8f0 2 children> has bad children layout. Fixing.
    9/27/14 12:55:59.043 PM DLconnectMonitor[6283]: DLconnectMonitor 5.7.2.17412 © 2013 Koninklijke Philips Electronics N.V. All rights reserved.
    9/27/14 12:55:59.080 PM WiFiKeychainProxy[6266]: [NO client logger] <Nov 10 2013 18:30:13> WIFICLOUDSYNC WiFiCloudSyncEngineCreate: created...
    9/27/14 12:55:59.080 PM WiFiKeychainProxy[6266]: [NO client logger] <Nov 10 2013 18:30:13> WIFICLOUDSYNC WiFiCloudSyncEngineRegisterCallbacks: WiFiCloudSyncEngineCallbacks version - 0, bundle id - com.apple.wifi.WiFiKeychainProxy
    9/27/14 12:56:01.074 PM com.apple.launchd.peruser.501[441]: (com.apple.appleseed.seedusaged) Throttling respawn: Will start in 7 seconds
    9/27/14 12:56:05.143 PM com.apple.launchd.peruser.501[441]: (com.apple.mrt.uiagent[6272]) Exited with code: 255
    9/27/14 12:56:09.063 PM com.apple.InputMethodKit.UserDictionary[4560]: -[PFUbiquitySwitchboardEntryMetadata setUseLocalStorage:](760): CoreData: Ubiquity:  jeremy~35E89389-9660-58FF-A64E-D6C36A4336EC:UserDictionary
    Using local storage: 0
    9/27/14 12:56:24.614 PM syncdefaultsd[6288]: Fixing push token
    9/27/14 12:56:29.382 PM SafariDAVClient[6293]: CFNetwork SSLHandshake failed (-9846)
    9/27/14 12:56:36.323 PM com.apple.dock.extra[6301]: <NSXPCConnection: 0x7fd9cad34e50>: received an undecodable message (no exported object to receive message). Dropping message.
    9/27/14 12:56:40.772 PM Google Drive[6290]: PyObjCPointer created: at 0xa1661438 of type {__CFBoolean=}
    9/27/14 12:56:40.772 PM Google Drive[6290]: PyObjCPointer created: at 0xa1661430 of type {__CFBoolean=}
    9/27/14 12:56:40.774 PM Google Drive[6290]: PyObjCPointer created: at 0xa1661440 of type {__CFNumber=}
    9/27/14 12:56:40.774 PM Google Drive[6290]: PyObjCPointer created: at 0xa1661450 of type {__CFNumber=}
    9/27/14 12:56:40.774 PM Google Drive[6290]: PyObjCPointer created: at 0xa1661460 of type {__CFNumber=}
    9/27/14 12:56:48.586 PM Dropbox[6287]: PyObjCPointer created: at 0xa27fc88 of type {OpaqueJSContext=}
    9/27/14 12:57:01.653 PM Google Drive[6290]: GsyncAppDeletegate.py : Finder debug level logs : False
    9/27/14 12:57:03.981 PM System Events[6370]: .sdef warning for part of complex type 'any | number | boolean | date | list | record | text | data' used in suite 'Property List Suite': 'data' is not a valid type name.
    9/27/14 12:57:03.981 PM System Events[6370]: .sdef warning for type 'text | missing value | any' attribute 'uniqueID' of class 'XML element' in suite 'XML Suite': AppleScript ID references may not work for this property because its type is not NSNumber- or NSString-derived.
    9/27/14 12:57:10.124 PM Google Drive[6290]: CoreText performance note: Client called CTFontCreateWithName() using name ".Lucida Grande UI" and got font with PostScript name ".LucidaGrandeUI". For best performance, only use PostScript names when calling this API.
    9/27/14 12:57:10.124 PM Google Drive[6290]: CoreText performance note: Set a breakpoint on CTFontLogSuboptimalRequest to debug.
    9/27/14 12:57:10.128 PM Google Drive[6290]: CoreText performance note: Client called CTFontCreateWithName() using name "Open Sans" and got font with PostScript name "OpenSans-Light". For best performance, only use PostScript names when calling this API.
    9/27/14 12:57:21.944 PM Google Drive[6419]: PyObjCPointer created: at 0xa1661438 of type {__CFBoolean=}
    9/27/14 12:57:21.945 PM Google Drive[6419]: PyObjCPointer created: at 0xa1661430 of type {__CFBoolean=}
    9/27/14 12:57:21.946 PM Google Drive[6419]: PyObjCPointer created: at 0xa1661440 of type {__CFNumber=}
    9/27/14 12:57:21.946 PM Google Drive[6419]: PyObjCPointer created: at 0xa1661450 of type {__CFNumber=}
    9/27/14 12:57:21.947 PM Google Drive[6419]: PyObjCPointer created: at 0xa1661460 of type {__CFNumber=}
    9/27/14 12:57:23.040 PM Google Drive[6419]: GsyncAppDeletegate.py : Finder debug level logs : False
    9/27/14 12:57:23.216 PM Google Drive[6419]: CoreText performance note: Client called CTFontCreateWithName() using name ".Lucida Grande UI" and got font with PostScript name ".LucidaGrandeUI". For best performance, only use PostScript names when calling this API.
    9/27/14 12:57:23.216 PM Google Drive[6419]: CoreText performance note: Set a breakpoint on CTFontLogSuboptimalRequest to debug.
    9/27/14 12:57:23.220 PM Google Drive[6419]: CoreText performance note: Client called CTFontCreateWithName() using name "Open Sans" and got font with PostScript name "OpenSans-Light". For best performance, only use PostScript names when calling this API.
    9/27/14 12:58:14.605 PM Console[6437]: setPresentationOptions called with NSApplicationPresentationFullScreen when there is no visible fullscreen window; this call will be ignored.
    9/27/14 1:07:03.587 PM YNAB 4[6466]: CoreText performance note: Client called CTFontCreateWithName() using name "Times Roman" and got font with PostScript name "Times-Roman". For best performance, only use PostScript names when calling this API.
    9/27/14 1:07:03.587 PM YNAB 4[6466]: CoreText performance note: Set a breakpoint on CTFontLogSuboptimalRequest to debug.
    9/27/14 1:07:44.350 PM PluginProcess[6481]: CoreText performance note: Client called CTFontCreateWithName() using name "Times Roman" and got font with PostScript name "Times-Roman". For best performance, only use PostScript names when calling this API.
    9/27/14 1:07:44.350 PM PluginProcess[6481]: CoreText performance note: Set a breakpoint on CTFontLogSuboptimalRequest to debug.
    9/27/14 1:07:44.977 PM PluginProcess[6481]: CoreText performance note: Client called CTFontCreateWithName() using name "Arial" and got font with PostScript name "ArialMT". For best performance, only use PostScript names when calling this API.

  • Quote Report - Performance

    I have created a quote report with narratives around the opportunity, opportunity-product, and account information. The report contains a pivot table.
    I'm getting very hit or miss performance results on the report. Sometimes the report runs faster for all opportunities compared to when its prompted with an opty id from a web link.
    Any thoughts? There doesn't seem to be one column that makes a difference.
    Also this is not an analytical report as the quotes need to be generated same day.

    Hi Shaik,
    Please remove all the join select queries and use 'for all entries' varaiant of the select query. Check whether you can create and use indexes in ur queries.
    Thanks and Regards,
    Saurabh Chhatre

  • IS NOT NULL and performance

    I have a performance issue with a query - it would be something like -
    select col1,col2, sum(col3), get_val(col_4)
    from table1
    where
    get_val(col_4) is not null
    group by col1,col2, get_val(col_4)
    I have simplified this but it is something similar. This works great - performance is great. Now I commented out the where clause as I needed to populate null values - and that's it the query does not retrieve the resultset - it keeps running forever. With the where clause it comes back in 60 seconds. There is only one row out of 560 rows that has null value for col_4 which i need to display.
    Any help is appreciated.

    The only difference I notice between the two sqls is HASH(UNIQUE) -
    with IS NOT NULL in where clause -
    SELECT STATEMENT     ALL_ROWS     1598     1     209
    HASH(UNIQUE)          1598     1     209
    HASH(GROUP BY)          1598     1     209
    When is not null is removed from the where clause -
    SELECT STATEMENT     ALL_ROWS     1598     1     206
    HASH(GROUP BY)          1598     1     206          
    I'm guessing that the index is being used in the first scenario and not in the second. Any idea/suggestion as to how to over come this?          
    Thanks

  • Issues with WebForm performance

    Hi,
    We had migrated a new application from UAT to PROD and we encounter webform performance issues with the following actions..
    After login, the first form you open it is
    always slow. After this you can switch from one form to another without a
    delay.
    Then once you change any data – the next time
    you access a form it gets delayed.
    The point to be noted is, it doesnt have any performance issues in the UAT environment and the configuration settings,essbase cache settings are all the same. We did try to move the EPM system to a new server to see if this is a hardware issue but no luck, the performance issues still exist. The consumption of the CPU/memory has been checked and it is proved that the form opening delay has nothing to do with lack of memory.
    The JVM head settings is set up at 4GB which is infact higher than that of the UAT environment(2GB).
    runs on Windows server2008,11.1.2.1.600 EPM serve, has planning,reporting,foundation on one server (32GB ram) and essbase on another server (32GB ram). Any help is appreciated.
    Please find attached the planning logs below and there is nothing mentioned in the hyperionplanning error logs.-----------------------------------------------------------------------------------------------------------------------------------------------------------------
    <Nov 5, 2013 8:05:43 PM CET> <Info> <Security> <BEA-090905> <Disabling CryptoJ JCE Provider self-integrity check for better startup performance. To enable this check, specify -Dweblogic.security.allowCryptoJDefaultJCEVerification=true>
    <Nov 5, 2013 8:05:43 PM CET> <Info> <Security> <BEA-090906> <Changing the default Random Number Generator in RSA CryptoJ from ECDRBG to FIPS186PRNG. To disable this change, specify -Dweblogic.security.allowCryptoJDefaultPRNG=true>
    <Nov 5, 2013 8:05:44 PM CET> <Info> <WebLogicServer> <BEA-000377> <Starting WebLogic Server with Oracle JRockit(R) Version R28.0.2-11-135406-1.6.0_20-20100624-2119-windows-x86_64 from Oracle Corporation>
    <Nov 5, 2013 8:05:46 PM CET> <Info> <Management> <BEA-141107> <Version: WebLogic Server 10.3.4.0  Fri Dec 17 20:47:33 PST 2010 1384255 >
    <Nov 5, 2013 8:05:48 PM CET> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to STARTING>
    <Nov 5, 2013 8:05:48 PM CET> <Info> <WorkManager> <BEA-002900> <Initializing self-tuning thread pool>
    <Nov 5, 2013 8:05:48 PM CET> <Notice> <Log Management> <BEA-170019> <The server log file C:\Oracle\Middleware\user_projects\domains\EPMSystem\servers\Planning0\logs\Planning0.log is opened. All server side log events will be written to this file.>
    <Nov 5, 2013 8:06:22 PM CET> <Notice> <Security> <BEA-090082> <Security initializing using security realm myrealm.>
    <Nov 5, 2013 8:06:28 PM CET> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to STANDBY>
    <Nov 5, 2013 8:06:28 PM CET> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to STARTING>
    Calling getConnection()
      return weblogic.management.jmx.mbeanserver.WLSMBeanServer@327b36fb
    Calling getDomainConfiguration()
    Calling getConnection()
      return weblogic.management.jmx.mbeanserver.WLSMBeanServer@327b36fb
    Calling getRuntimeService()
    Calling getConnection()
      return weblogic.management.jmx.mbeanserver.WLSMBeanServer@327b36fb
      return com.bea:Name=RuntimeService,Type=weblogic.management.mbeanservers.runtime.RuntimeServiceMBean
      return com.bea:Name=EPMSystem,Type=Domain
    Calling getConnection()
      return weblogic.management.jmx.mbeanserver.WLSMBeanServer@327b36fb
    Domain location is 'C:\Oracle\Middleware\user_projects\domains\EPMSystem'
    Calling getRuntimeService()
      return com.bea:Name=RuntimeService,Type=weblogic.management.mbeanservers.runtime.RuntimeServiceMBean
    Calling getConnection()
      return weblogic.management.jmx.mbeanserver.WLSMBeanServer@327b36fb
    Calling getConnection()
      return weblogic.management.jmx.mbeanserver.WLSMBeanServer@327b36fb
    Calling getConnection()
      return weblogic.management.jmx.mbeanserver.WLSMBeanServer@327b36fb
    Calling getConnection()
      return weblogic.management.jmx.mbeanserver.WLSMBeanServer@327b36fb
    Checking C:\Oracle\Middleware\user_projects\domains\EPMSystem\servers\Planning0\registry_update.xml file
    EPM_ORACLE_HOME: C:\Oracle\Middleware\EPMSystem11R1
    Template for PLANNING#11.1.2.0: C:\Oracle\Middleware\EPMSystem11R1\common\templates\applications\epm_planning_11.1.2.1.jar
    Dependencies for C:\Oracle\Middleware\EPMSystem11R1\common\templates\applications\epm_planning_11.1.2.1.jar: []
    BPMUI shared webapp not referenced from PLANNING#11.1.2.0
    Application name: PLANNING#11.1.2.0
    Application source: HyperionPlanning.ear
    Server name: Planning0
    Server port: 8300
    Server SSL port: 8343
    Application context: HyperionPlanning
    Registry product type: PLANNING_PRODUCT
    Registry physical web application type: PLANNING_WEBAPP
    weblogic.Name property is 'Planning0', seems to be WebLogic mode
    registry.isRegistryDatabaseCreated()true
    Registry was initialized sucessfully
    Executing pre custom update for PLANNING#11.1.2.0
    EPM_ORACLE_INSTANCE: C:\Oracle\Middleware\user_projects\epmsystem1
    Physical Web App found
    Web app already linked to some application server: false
    The registry was not modifyed because it already containse all sturctures
    Web app is already linked to the logical web app
    No needs to run custom updater for PLANNING#11.1.2.0
    loggingUpdatePLANNING.block file exist or the system is running in the Fusion mode, skipping logging.xml configuration
    Planning locale: en_US
    <Nov 5, 2013 8:06:39 PM CET> <Notice> <Log Management> <BEA-170027> <The Server has established connection with the Domain level Diagnostic Service successfully.>
    <Nov 5, 2013 8:06:39 PM CET> <Notice> <Cluster> <BEA-000197> <Listening for announcements from cluster using unicast cluster messaging>
    <Nov 5, 2013 8:06:39 PM CET> <Notice> <Cluster> <BEA-000133> <Waiting to synchronize with other running members of Planning.>
    <Nov 5, 2013 8:07:09 PM CET> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to ADMIN>
    <Nov 5, 2013 8:07:09 PM CET> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to RESUMING>
    <Nov 5, 2013 8:07:09 PM CET> <Notice> <Cluster> <BEA-000162> <Starting "async" replication service with remote cluster address "null">
    <Nov 5, 2013 8:07:10 PM CET> <Notice> <Security> <BEA-090171> <Loading the identity certificate and private key stored under the alias DemoIdentity from the jks keystore file C:\Oracle\MIDDLE~1\WLSERV~1.3\server\lib\DemoIdentity.jks.>
    <Nov 5, 2013 8:07:10 PM CET> <Notice> <Security> <BEA-090169> <Loading trusted certificates from the jks keystore file C:\Oracle\MIDDLE~1\WLSERV~1.3\server\lib\DemoTrust.jks.>
    <Nov 5, 2013 8:07:10 PM CET> <Notice> <Security> <BEA-090169> <Loading trusted certificates from the jks keystore file C:\Oracle\Middleware\jrockit_160_20\jre\lib\security\cacerts.>
    <Nov 5, 2013 8:07:10 PM CET> <Alert> <Security> <BEA-090152> <Demo trusted CA certificate is being used in production mode: [
      Version: V3
      Subject: CN=CACERT, OU=FOR TESTING ONLY, O=MyOrganization, L=MyTown, ST=MyState, C=US
      Signature Algorithm: MD5withRSA, OID = 1.2.840.113549.1.1.4
      Key:  Sun RSA public key, 512 bits
      modulus: 9550192877869244258838480703390456015046425375252278279190673063544122510925482179963329236052146047356415957587628011282484772458983977898996276815440753
      public exponent: 65537
      Validity: [From: Thu Mar 21 21:12:27 CET 2002,
                   To: Tue Mar 22 21:12:27 CET 2022]
      Issuer: CN=CACERT, OU=FOR TESTING ONLY, O=MyOrganization, L=MyTown, ST=MyState, C=US
      SerialNumber: [    33f10648 fcde0deb 4199921f d64537f4]
    Certificate Extensions: 1
    [1]: ObjectId: 2.5.29.15 Criticality=true
    KeyUsage [
      Key_CertSign
      Algorithm: [MD5withRSA]
      Signature:
    0000: 9D 26 4C 29 C8 91 C3 A7   06 C3 24 6F AE B4 F8 82  .&L)......$o....
    0010: 80 4D AA CB 7C 79 46 84   81 C4 66 95 F4 1E D8 C4  .M...yF...f.....
    0020: E9 B7 D9 7C E2 23 33 A4   B7 21 E0 AA 54 2B 4A FF  .....#3..!..T+J.
    0030: CB 21 20 88 81 21 DB AC   90 54 D8 7D 79 63 23 3C  .! ..!...T..yc#<
    ] The system is vulnerable to security attacks, since it trusts certificates signed by the demo trusted CA.>
    <Nov 5, 2013 8:07:10 PM CET> <Notice> <Security> <BEA-090898> <Ignoring the trusted CA certificate "CN=thawte Primary Root CA - G3,OU=(c) 2008 thawte\, Inc. - For authorized use only,OU=Certification Services Division,O=thawte\, Inc.,C=US". The loading of the trusted certificate list raised a certificate parsing exception PKIX: Unsupported OID in the AlgorithmIdentifier object: 1.2.840.113549.1.1.11.>
    <Nov 5, 2013 8:07:10 PM CET> <Notice> <Security> <BEA-090898> <Ignoring the trusted CA certificate "CN=T-TeleSec GlobalRoot Class 3,OU=T-Systems Trust Center,O=T-Systems Enterprise Services GmbH,C=DE". The loading of the trusted certificate list raised a certificate parsing exception PKIX: Unsupported OID in the AlgorithmIdentifier object: 1.2.840.113549.1.1.11.>
    <Nov 5, 2013 8:07:10 PM CET> <Notice> <Security> <BEA-090898> <Ignoring the trusted CA certificate "CN=T-TeleSec GlobalRoot Class 2,OU=T-Systems Trust Center,O=T-Systems Enterprise Services GmbH,C=DE". The loading of the trusted certificate list raised a certificate parsing exception PKIX: Unsupported OID in the AlgorithmIdentifier object: 1.2.840.113549.1.1.11.>
    <Nov 5, 2013 8:07:10 PM CET> <Notice> <Security> <BEA-090898> <Ignoring the trusted CA certificate "CN=GlobalSign,O=GlobalSign,OU=GlobalSign Root CA - R3". The loading of the trusted certificate list raised a certificate parsing exception PKIX: Unsupported OID in the AlgorithmIdentifier object: 1.2.840.113549.1.1.11.>
    <Nov 5, 2013 8:07:10 PM CET> <Notice> <Security> <BEA-090898> <Ignoring the trusted CA certificate "OU=Security Communication RootCA2,O=SECOM Trust Systems CO.\,LTD.,C=JP". The loading of the trusted certificate list raised a certificate parsing exception PKIX: Unsupported OID in the AlgorithmIdentifier object: 1.2.840.113549.1.1.11.>
    <Nov 5, 2013 8:07:10 PM CET> <Notice> <Security> <BEA-090898> <Ignoring the trusted CA certificate "CN=VeriSign Universal Root Certification Authority,OU=(c) 2008 VeriSign\, Inc. - For authorized use only,OU=VeriSign Trust Network,O=VeriSign\, Inc.,C=US". The loading of the trusted certificate list raised a certificate parsing exception PKIX: Unsupported OID in the AlgorithmIdentifier object: 1.2.840.113549.1.1.11.>
    <Nov 5, 2013 8:07:10 PM CET> <Notice> <Security> <BEA-090898> <Ignoring the trusted CA certificate "CN=KEYNECTIS ROOT CA,OU=ROOT,O=KEYNECTIS,C=FR". The loading of the trusted certificate list raised a certificate parsing exception PKIX: Unsupported OID in the AlgorithmIdentifier object: 1.2.840.113549.1.1.11.>
    <Nov 5, 2013 8:07:10 PM CET> <Notice> <Security> <BEA-090898> <Ignoring the trusted CA certificate "CN=GeoTrust Primary Certification Authority - G3,OU=(c) 2008 GeoTrust Inc. - For authorized use only,O=GeoTrust Inc.,C=US". The loading of the trusted certificate list raised a certificate parsing exception PKIX: Unsupported OID in the AlgorithmIdentifier object: 1.2.840.113549.1.1.11.>
    <Nov 5, 2013 8:07:10 PM CET> <Notice> <Server> <BEA-002613> <Channel "DefaultSecure[3]" is now listening on 127.0.0.1:8343 for protocols iiops, t3s, CLUSTER-BROADCAST-SECURE, ldaps, https.>
    <Nov 5, 2013 8:07:10 PM CET> <Notice> <Server> <BEA-002613> <Channel "DefaultSecure[1]" is now listening on fe80:0:0:0:0:5efe:a53:4816:8343 for protocols iiops, t3s, CLUSTER-BROADCAST-SECURE, ldaps, https.>
    <Nov 5, 2013 8:07:10 PM CET> <Notice> <Server> <BEA-002613> <Channel "DefaultSecure[4]" is now listening on 0:0:0:0:0:0:0:1:8343 for protocols iiops, t3s, CLUSTER-BROADCAST-SECURE, ldaps, https.>
    <Nov 5, 2013 8:07:10 PM CET> <Notice> <Server> <BEA-002613> <Channel "Default" is now listening on 10.83.72.22:8300 for protocols iiop, t3, CLUSTER-BROADCAST, ldap, snmp, http.>
    <Nov 5, 2013 8:07:10 PM CET> <Notice> <Server> <BEA-002613> <Channel "Default[3]" is now listening on 127.0.0.1:8300 for protocols iiop, t3, CLUSTER-BROADCAST, ldap, snmp, http.>
    <Nov 5, 2013 8:07:10 PM CET> <Notice> <Server> <BEA-002613> <Channel "Default[4]" is now listening on 0:0:0:0:0:0:0:1:8300 for protocols iiop, t3, CLUSTER-BROADCAST, ldap, snmp, http.>
    <Nov 5, 2013 8:07:10 PM CET> <Notice> <Server> <BEA-002613> <Channel "Default[2]" is now listening on fe80:0:0:0:0:ffff:ffff:fffe:8300 for protocols iiop, t3, CLUSTER-BROADCAST, ldap, snmp, http.>
    <Nov 5, 2013 8:07:10 PM CET> <Notice> <Server> <BEA-002613> <Channel "Default[1]" is now listening on fe80:0:0:0:0:5efe:a53:4816:8300 for protocols iiop, t3, CLUSTER-BROADCAST, ldap, snmp, http.>
    <Nov 5, 2013 8:07:10 PM CET> <Notice> <Server> <BEA-002613> <Channel "DefaultSecure[2]" is now listening on fe80:0:0:0:0:ffff:ffff:fffe:8343 for protocols iiops, t3s, CLUSTER-BROADCAST-SECURE, ldaps, https.>
    <Nov 5, 2013 8:07:10 PM CET> <Notice> <Server> <BEA-002613> <Channel "DefaultSecure" is now listening on 10.83.72.22:8343 for protocols iiops, t3s, CLUSTER-BROADCAST-SECURE, ldaps, https.>
    <Nov 5, 2013 8:07:10 PM CET> <Warning> <Server> <BEA-002611> <Hostname "WIPLPRD01.svc.unicc.org", maps to multiple IP addresses: 10.83.72.22, 0:0:0:0:0:0:0:1>
    <Nov 5, 2013 8:07:10 PM CET> <Notice> <WebLogicServer> <BEA-000330> <Started WebLogic Managed Server "Planning0" for domain "EPMSystem" running in Production Mode>
    <Nov 5, 2013 8:07:12 PM CET> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to RUNNING>
    <Nov 5, 2013 8:07:12 PM CET> <Notice> <WebLogicServer> <BEA-000360> <Server started in RUNNING mode>
    using java.library.path: C:\Oracle\Middleware\EPMSystem11R1/products/Planning/lib64;C:\Oracle\Middleware\EPMSystem11R1/bin;C:\Oracle\Middleware\EPMSystem11R1/common/EssbaseRTC-64/11.1.2.0/bin;C:\Oracle\MIDDLE~1\patch_wls1034\profiles\default\native;C:\Oracle\MIDDLE~1\WLSERV~1.3\server\native\win\x64;C:\Oracle\MIDDLE~1\WLSERV~1.3\server\bin;C:\Oracle\MIDDLE~1\modules\ORGAPA~1.1\bin;C:\Oracle\MIDDLE~1\JROCKI~1\jre\bin;C:\Oracle\MIDDLE~1\JROCKI~1\bin;C:\Oracle\MIDDLE~1\WLSERV~1.3\server\native\win\x64\oci920_8
    EPM_ORACLE_HOME (C:\Oracle\Middleware\EPMSystem11R1) is set from JVM property "EPM_ORACLE_HOME".
    using Java property for Hyperion Home C:\Oracle\Middleware\EPMSystem11R1
    EPM_ORACLE_INSTANCE (C:\Oracle\Middleware\user_projects\epmsystem1) is set from JVM property[EPM_ORACLE_INSTANCE].
    Reaquired task list lease: Tue Nov 05 20:11:49 CET 2013: 1383678709156
    Seeking ESAPI.properties
      Found in 'org.owasp.esapi.resources' directory: C:\Oracle\Middleware\EPMSystem11R1\products\Planning\config\esapi\ESAPI.properties
    Loaded 'ESAPI.properties' properties file
    Seeking validation.properties
      Found in 'org.owasp.esapi.resources' directory: C:\Oracle\Middleware\EPMSystem11R1\products\Planning\config\esapi\validation.properties
    Loaded 'validation.properties' properties file
    Seeking antisamy-esapi.xml
      Found in 'org.owasp.esapi.resources' directory: C:\Oracle\Middleware\EPMSystem11R1\products\Planning\config\esapi\antisamy-esapi.xml
    EnterData_Inner Processing Time:424
    2013-11-05 20:14:47,454 INFO Thread-51 calcmgr.launch - Date/Time Started: 2013/11/05:20:14:47.452 CET Server/Application/Database: localhost/1415_WP/AWP Business Rule Name: WPA_Count By Planning user: wipoadmin Values entered for run-time prompts: [Variable] Wrk_Scenario:"Work_Plan_2014"[Variable] Funds:"Regular"[Variable] Units:"0001"
    - Date/Time Started: 2013/11/05:20:14:47.452 CET Server/Application/Database: localhost/1415_WP/AWP Business Rule Name: WPA_Count By Planning user: wipoadmin Values entered for run-time prompts: [Variable] Wrk_Scenario:"Work_Plan_2014"[Variable] Funds:"Regular"[Variable] Units:"0001"
    2013-11-05 20:14:54,066 INFO Thread-51 calcmgr.launch - Date/Time Ended: 2013/11/05:20:14:54.066 CET Server/Application/Database: localhost/1415_WP/AWP Business Rule Name: WPA_Count By Planning user: wipoadmin.
    - Date/Time Ended: 2013/11/05:20:14:54.066 CET Server/Application/Database: localhost/1415_WP/AWP Business Rule Name: WPA_Count By Planning user: wipoadmin.
    EnterData_Inner Processing Time:64
    EnterData_Inner Processing Time:15
    EnterData_Inner Processing Time:359
    EnterData_Inner Processing Time:2
    EnterData_Inner Processing Time:53
    EnterData_Inner Processing Time:4
    EnterData_Inner Processing Time:7
    EPM_ORACLE_INSTANCE (C:\Oracle\Middleware\user_projects\epmsystem1) is set from JVM property[EPM_ORACLE_INSTANCE].
    EPM_ORACLE_INSTANCE (C:\Oracle\Middleware\user_projects\epmsystem1) is set from JVM property[EPM_ORACLE_INSTANCE].
    EPM_ORACLE_INSTANCE (C:\Oracle\Middleware\user_projects\epmsystem1) is set from JVM property[EPM_ORACLE_INSTANCE].
    Setting HBR Mode to: 2
    In lookupBRLWA()
    Found HBR product = ESSBASE_PRODUCT
    Found HBR product = ESSBASE_PRODUCT
    Found HBR product = ESSBASE_PRODUCT
    HBR LWA Component = Default
    Default HBR = http://WIPLPRD01.svc.unicc.org:19000/eas
    In getDBDetails()
    Found HBR product = ESSBASE_PRODUCT
    In lookupBRLWA()
    Found HBR product = ESSBASE_PRODUCT
    Found HBR product = ESSBASE_PRODUCT
    =2013-11-05 20:35:08,234 WARN [ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)' com.hyperion.hbr.security.HbrSecurityAPI - Error retrieving user by identity
    - Error retrieving user by identity
    Embedded HBR initialized.
    EnterData_Inner Processing Time:6
    EnterData_Inner Processing Time:867
    [Tue Nov 05 20:35:33 CET 2013] Planning successfully notified HBR repository.
    EnterData_Inner Processing Time:7
    2013-11-05 20:40:38,613 INFO Thread-67 calcmgr.launch - Date/Time Started: 2013/11/05:20:40:38.606 CET Server/Application/Database: localhost/1415_WP/AWP Business Rule Name: NonPersonnel_Calc By Planning user: wipoadmin Values entered for run-time prompts: [Variable] Funds:"Regular"[Variable] Units:"0001"[Variable] Wrk_Scenario:"Work_Plan_2014"
    - Date/Time Started: 2013/11/05:20:40:38.606 CET Server/Application/Database: localhost/1415_WP/AWP Business Rule Name: NonPersonnel_Calc By Planning user: wipoadmin Values entered for run-time prompts: [Variable] Funds:"Regular"[Variable] Units:"0001"[Variable] Wrk_Scenario:"Work_Plan_2014"
    2013-11-05 20:40:47,241 INFO Thread-67 calcmgr.launch - Date/Time Ended: 2013/11/05:20:40:47.241 CET Server/Application/Database: localhost/1415_WP/AWP Business Rule Name: NonPersonnel_Calc By Planning user: wipoadmin.
    - Date/Time Ended: 2013/11/05:20:40:47.241 CET Server/Application/Database: localhost/1415_WP/AWP Business Rule Name: NonPersonnel_Calc By Planning user: wipoadmin.
    EnterData_Inner Processing Time:44
    EnterData_Inner Processing Time:2
    EnterData_Inner Processing Time:525
    EnterData_Inner Processing Time:1
    Reaquired task list lease: Tue Nov 05 20:41:49 CET 2013: 1383680509246

    I already replied there but it seems no moderator is willing to approve my reply so it never shows up.
    So I'll try replying in here instead:
    I never thought it could be an emulator issue, I thought I had done something wrong to begin with. So I take having performance issues with tiled layer is not a common problem I suppose?
    I'm using MOTODEV SDK platform, A1200 model (motorola).

  • Apple DVI to Video Adapter performance issues in Lion

    I'm an active Apple DVI to Video Adapter user for a couple of years already and everything worked perfectly well until I've upgraded to Lion.
    Everything on my TV screen is lagging now, even mouse pointer, and there is no change to watch any movie like that.
    Does anyone have the same issue? Maybe someone could give me an advice of what could I do in order to improve graphics performance on TV screen using Apple DVI to Video Adapter? I'm using late 2007 MBP with 8600M GT video adapter.

    I am having the exact same problem.  I have a late 2007 MBP. I use it everyday where I teach.  I use the adapter to project on a large white screen using S-Video.  SInce the Lion update, it is very slow and has even completely crashed my computer a few times.  I realize the MBP is getting a bit dated, but the difference between Snow Leopard & Lion is remarkable.

  • Vendor performance report

    hai
    how to create an vendor performance report which display purchase order issued to a vendor, material supplied delivery times, payment terms, prices during a period of time.
        for this report what are the tables and fields we have to use pls give me sample report..
                  thank you..

    Hi,
    Against the RFQ's vendor submit quotations and the Based on the RFQ's data we have to compare the different Vendors with the respective data like terms and prices
    Fetch the data of all RFQ's from EKKO and EKPO tables
    and take the EKKO-KNUMV field and pass to KONV table and fetch the different prices based on the Condition types  for each RFQ and put it in a tabular format  and compare.
    see the sample code
    *& Report  ZRFQ_COMP
    *& Quotation Comparison Report
    REPORT  ZRFQ_COMP no standard page heading line-size 187 line-count 35.
    *&Tables
    Tables : ekko,
             ekpo,
             konp,
             a016.
    *&Data Decleration
    Data : v_pos type i value 19.
    Data : begin of it_rfq occurs 0,
            ebeln type ekko-ebeln,
            ekorg type ekko-ekorg,
            lifnr type ekko-lifnr,
            matnr type ekpo-matnr,
            WERKS type ekpo-WERKS,
           end of it_rfq.
    Data : begin of it_a016 occurs 0,
            ebeln type ekko-ebeln,
            knumh type knumh,
           end of it_a016.
    Data : begin of it_a363 occurs 0,
            werks type werks,
            lifnr type lifnr,
            matnr type matnr,
            knumh type knumh,
           end of it_a363.
    Data : begin of it_pr_details occurs 0,
            knumh type knumh,
            kschl type kschl,
            kbetr type kwert,
           end of it_pr_details.
    Data : begin of it_final occurs 0,
            ebeln type ebeln,
            lifnr type lifnr,
            name1 type lfa1-name1,
            pb00  type kbetr,
            zpac  type kbetr,
            zb00  type kbetr,
            ZIN1  type kbetr,
            JEC1  type kbetr,
            JHX1  type kbetr,
            JMOP  type kbetr,
            JMX1  type kbetr,
            JMX3  type kbetr,
            JSEP  TYPE KBETR,
            JVRD  type kbetr,
           end of it_final.
    Data : begin of it_vendorname occurs 0,
            lifnr type lifnr,
            name1 type lfa1-name1,
           end of it_vendorname.
    *&Selection Screen
    Selection-screen: begin of block blk1 with frame title text-001.
      parameters     : p_matnr like ekpo-matnr obligatory.
      select-options : s_ebeln for ekko-ebeln,
                       s_ekorg for ekko-ekorg,
                       s_lifnr for ekko-lifnr.
    Selection-screen: end of block blk1.
    *&Start-of-Selection.
    Start-of-selection.
      Select ekko~ebeln
             ekko~ekorg
             ekko~lifnr
             ekpo~matnr
             ekpo~werks
        into table it_rfq
        from ekko
       inner join ekpo
          on ekkoebeln eq ekpoebeln
        where ekko~ebeln in s_ebeln
          and ekko~ekorg in s_ekorg
          and ekko~lifnr in s_lifnr
          and ekpo~matnr eq p_matnr
          and ekko~bstyp eq 'A'.
      if sy-subrc eq 0.
    *--> Condition number from A tables.
      Perform get_connum.
    *--> Getting the Pricing Details from Konp Table.
      Perform get_prices.
    *--> Populate Vendor Name.
      Perform pop_vendor_name.
    *--> Populating the Final Internal table for Report.
      Perform pop_final_tab.
      else.
       message 'Purchase Document does not exist' type 'E'.
      endif.
    *&End-of-Selection.
    End-of-Selection.
    write :/ sy-vline,
           2 'Vendor Number',
           19 sy-vline.
    v_pos = 19.
    loop at it_final.
      write at v_pos sy-vline.
      v_pos = v_pos + 1.
      write at v_pos it_final-lifnr.
      v_pos = v_pos + 35.
    endloop.
    write at: v_pos sy-vline,
              /(v_pos) sy-uline.
    write :/ sy-vline,
           2 'Gross Price',
           19 sy-vline.
    v_pos = 19.
    loop at it_final.
      write at v_pos sy-vline.
      v_pos = v_pos + 20.
      write at v_pos it_final-pb00.
      v_pos = v_pos + 16.
    endloop.
    write at: v_pos sy-vline,
              /(v_pos) sy-uline.
    write :/ sy-vline,
           2 'Packing & Forward',
           19 sy-vline.
    v_pos = 19.
    loop at it_final.
      write at v_pos sy-vline.
      v_pos = v_pos + 20.
      write at v_pos it_final-zpac.
      v_pos = v_pos + 16.
    endloop.
    write at: v_pos sy-vline,
              /(v_pos) sy-uline.
    write :/ sy-vline,
           2 'Surcharge',
           19 sy-vline.
    v_pos = 19.
    loop at it_final.
      write at v_pos sy-vline.
      v_pos = v_pos + 20.
      write at v_pos it_final-zb00.
      v_pos = v_pos + 16.
    endloop.
    write at: v_pos sy-vline,
              /(v_pos) sy-uline.
    write :/ sy-vline,
           2 'Installation',
           19 sy-vline.
    v_pos = 19.
    loop at it_final.
      write at v_pos sy-vline.
      v_pos = v_pos + 20.
      write at v_pos it_final-zin1.
      v_pos = v_pos + 16.
    endloop.
    write at: v_pos sy-vline,
              /(v_pos) sy-uline.
    write :/ sy-vline,
           2 'Ed cess on BED%',
           19 sy-vline.
    v_pos = 19.
    loop at it_final.
      write at v_pos sy-vline.
      v_pos = v_pos + 20.
      write at v_pos it_final-jec1.
      v_pos = v_pos + 16.
    endloop.
    write at: v_pos sy-vline,
              /(v_pos) sy-uline.
    write :/ sy-vline,
           2 'A/P Secess set off',
           19 sy-vline.
    v_pos = 19.
    loop at it_final.
      write at v_pos sy-vline.
      v_pos = v_pos + 20.
      write at v_pos it_final-jhx1.
      v_pos = v_pos + 16.
    endloop.
    write at: v_pos sy-vline,
              /(v_pos) sy-uline.
    write :/ sy-vline,
           2 'Basic Excise Duty',
           19 sy-vline.
    v_pos = 19.
    loop at it_final.
      write at v_pos sy-vline.
      v_pos = v_pos + 20.
      write at v_pos it_final-zpac.
      v_pos = v_pos + 16.
    endloop.
    write at: v_pos sy-vline,
              /(v_pos) sy-uline.
    write :/ sy-vline,
           2 'A/P BED set off',
           19 sy-vline.
    v_pos = 19.
    loop at it_final.
      write at v_pos sy-vline.
      v_pos = v_pos + 20.
      write at v_pos it_final-jmx1.
      v_pos = v_pos + 16.
    endloop.
    write at: v_pos sy-vline,
              /(v_pos) sy-uline.
    write :/ sy-vline,
           2 'Ecess % set off',
           19 sy-vline.
    v_pos = 19.
    loop at it_final.
      write at v_pos sy-vline.
      v_pos = v_pos + 20.
      write at v_pos it_final-jmx3.
      v_pos = v_pos + 16.
    endloop.
    write at: v_pos sy-vline,
              /(v_pos) sy-uline.
    write :/ sy-vline,
           2 'Sec ED Cess on BED',
           19 sy-vline.
    v_pos = 19.
    loop at it_final.
      write at v_pos sy-vline.
      v_pos = v_pos + 20.
      write at v_pos it_final-jsep.
      v_pos = v_pos + 16.
    endloop.
    write at: v_pos sy-vline,
              /(v_pos) sy-uline.
    write :/ sy-vline,
           2 'VAT%',
           19 sy-vline.
    v_pos = 19.
    loop at it_final.
      write at v_pos sy-vline.
      v_pos = v_pos + 20.
      write at v_pos it_final-jvrd.
      v_pos = v_pos + 16.
    endloop.
    write at: v_pos sy-vline,
              /(v_pos) sy-uline.
    *&Top-of-Page.
    Top-of-Page.
    format color 1.
    Write: 'Material Number :' color 1, p_matnr color 1.
    loop at it_final.
      v_pos = v_pos + 1.
      v_pos = v_pos + 35.
    endloop.
    write at: /(v_pos) sy-uline,/ sy-vline,2 'Vendor Name'.
    v_pos = 19.
    loop at it_final.
      write at v_pos sy-vline.
      v_pos = v_pos + 1.
      write at v_pos it_final-name1.
      v_pos = v_pos + 35.
    endloop.
    write at: v_pos sy-vline,
              /(v_pos) sy-uline.
    *&      Form  get_connum
          Condition number from A tables
    form get_connum .
        Select EVRTN
               knumh
          from a016
          into table it_a016
           for all entries in it_rfq
         where EVRTN eq it_rfq-ebeln.
        Select werks
               lifnr
               matnr
               knumh
          from a363
          into table it_a363
           for all entries in it_rfq
         where werks eq it_rfq-werks
           and lifnr eq it_rfq-lifnr
           and matnr eq it_rfq-matnr.
    endform.                    " get_connum
    *&      Form  get_prices
          Getting the Pricing Details from Konp Table.
    form get_prices .
      if not it_a016[] is initial.
        select knumh
               kschl
               kbetr
          from konp
          into table it_pr_details
           for all entries in it_a016
         where knumh eq it_a016-knumh.
      endif.
      if not it_a363[] is initial.
        select knumh
               kschl
               kbetr
          from konp
    appending table it_pr_details
           for all entries in it_a016
         where knumh eq it_a016-knumh.
      endif.
    endform.                    " get_prices
    *&      Form  pop_final_tab
          Populating the Final Internal table for Report
    form pop_final_tab .
    data : l_subrc like sy-subrc.
      sort it_a016 by ebeln.
      loop at it_rfq.
        clear l_subrc.
        read table it_a016 with key ebeln = it_rfq-ebeln
        binary search.
        if sy-subrc eq 0.
          loop at it_pr_details where knumh eq it_a016-knumh.
            it_final-ebeln = it_rfq-ebeln.
            it_final-lifnr = it_rfq-lifnr.
            read table it_vendorname with
            key lifnr = it_rfq-lifnr.
            it_final-name1 = it_vendorname-name1.
            case it_pr_details-kschl.
            when 'PBOO'.
              it_final-pb00 = it_pr_details-kbetr.
              if it_pr_details-kbetr eq 0.
               clear it_final.
               continue.
              endif.
            when 'ZPAC'.
              it_final-zpac = it_pr_details-kbetr.
            when 'ZB00'.
              it_final-ZB00 = it_pr_details-kbetr.
            when 'ZIN1'.
              it_final-ZIN1 = it_pr_details-kbetr.
            endcase.
          endloop.
        else.
          l_subrc = sy-subrc.
        endif.
        read table it_a363 with key lifnr = it_rfq-lifnr
                                    werks = it_rfq-werks
                                    matnr = it_rfq-matnr.
        if sy-subrc eq 0.
          loop at it_pr_details where knumh eq it_a016-knumh.
            it_final-ebeln = it_rfq-ebeln.
            it_final-lifnr = it_rfq-lifnr.
            read table it_vendorname with
            key lifnr = it_rfq-lifnr.
            it_final-name1 = it_vendorname-name1.
            case it_pr_details-kschl.
            when 'JEC1'.
              it_final-JEC1 = it_pr_details-kbetr.
            when 'JHX1'.
              it_final-JHX1 = it_pr_details-kbetr.
            when 'JMOP'.
              it_final-JMOP = it_pr_details-kbetr.
            when 'JMX1'.
              it_final-JMX1 = it_pr_details-kbetr.
            when 'JMX3'.
              it_final-JMX3 = it_pr_details-kbetr.
            when 'JSEP'.
              it_final-JSEP = it_pr_details-kbetr.
            when 'JVRD'.
              it_final-JVRD = it_pr_details-kbetr.
            endcase.
          endloop.
        elseif l_subrc ne 0.
       continue.
        endif.
        append it_final.
        clear  it_final.
      endloop.
    endform.                    " pop_final_tab
    *&      Form  pop_vendor_name
          Populate Vendor Name
    form pop_vendor_name .
      if not it_rfq[] is initial.
      Select lifnr
             name1
        from lfa1
        into table it_vendorname
       where lifnr eq it_rfq-lifnr.
      endif.
    endform.                    " pop_vendor_name
    Reward points if useful
    Regards
    Anji

  • FI-CA events to improve performance

    Hello experts,
    Does anybody use the FI-CA events to improve the extraction performance for datasources 0FC_OP_01 and 0FC_CI_01 (open and cleared items)?
    It seems that this specific exits associated to BW events have been developped especially to improve performance.
    Any documentation, guide should be appreciate.
    Thanks.
    Thibaud.

    Thanks to all for the replies
    @Sybrand
    Please answer first whether the column is stored in a separate lobsegment.
    No. Table,Index,LOB,LOB index uses the same TS. I missed adding this point( moving to separate TS) as part of table modifications.
    @Hemant
    There's a famous paper / blog post about CLOBs and Database Flashback. If I find it, I'll post the URL.
    Is this the one you are referring to
    http://laimisnd.wordpress.com/2011/03/25/lobs-and-flashback-database-performance/
    By moving the CLOB column to different block size , I will test the performance improvement it gives and will share the results.
    We dont need any data from this table. XML file contains details about finger prints and once the application server completes the job , XML data is deleted from this table.
    So no need of backup/recovery operations for this table. Client will be able to replay the transactions if any problem occurs.
    @Billy
    We are not performing XML parsing on DB side. Gets the XML data from client -> insert into table -> client selects from table -> Upon successful completion of the Job from client ,XML data gets deleted.
    Regarding binding of LOB from client side, will check on that side also to reduce round trips.
    By changing the blocksize, I can keep db_32K_cache_size=2G and keep this table in CACHE. If I directly put my table to CACHE, it will age out all other operation from buffer which makes things worse for us.
    This insert is part of transaction( Registration of a finger print) and this is the only statement taking time as of now compared to other statements in the transaction.
    Thanks,
    Arun

  • Report performance is very slow

    Hi all,
    I have a table with 25 million rows. I create a report on this table in which i need to use the following expression
    ifnull(abc_accr_int_val,0)+ifnull(xyz_mar_val_lcy,0)
    and this experession is group by asset description but the report output time is very high.Further there is no index on these columns in the database.
    Please guide me that did my approach is right ??? if no what is the right approach
    Regards

    Hi,
    Thanks for such a beautiful and informative answers I really appriciated it.
    I catch the problem and now want to share with U. As u know my prompt is on Date Column but I dont want to show this coloumn in my report.I only want that a user give a date and two columns are shown in report 1) asset_desc 2) total sum (which is sum of 2 columns as i discussed in this thread).
    Now before...after creating the prompt on Date field I edit the report view and delete this coloumn (Date) because I only want above 2 colomns and not Date column in my report. But all sorting is performed on date bec it is in prompt (where clause). When I add Date column in my report (to show date col) the speed of the report is like sql and data fetching speed same like sql. Now tell me is there any way that I delete this col from my report but it exist in answer criteria table ??????
    I have 19 Asset Desc which return by sql and answers request.
    Regards

  • Report Performance is slow

    Hi
    In our production one report is running very slow, for one moth its taking 10 to 12 min earlier it was took only 2 min for month data, we are confused why itu2019s happening. Query is running on multiprovider. On cube we are using only one aggregate and in the query designer we are using Hierarchy(Active) & virtual key figure.
    We have not changed anything recently on the query, why this suddenly report running very slow.
    Please advice 
    Thanks,
    Manu.

    Hi,
    Check whether the Aggregate is up-to-date and whether it is being used by your query or not?
    Also check the number of records as well, if the output is huge then it is obvious that the queries can take more time to run. As you are using Virtual Keyfigure, this generally degrades the query performance.
    Regards,
    rik

  • Report  performance with Hierarchies

    Hi
    How to improve query performance with hierarchies. We have to do lot of navigation's in the query and the volume of data size very big.
    Thanks
    P G

    HI,
    chk this:
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/1955ba90-0201-0010-d3aa-8b2a4ef6bbb2
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/ce7fb368-0601-0010-64ba-fadc985a1f94
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/4c0ab590-0201-0010-bd9a-8332d8b4f09c
    Query Performance – Is "Aggregates" the way out for me?
    /people/vikash.agrawal/blog/2006/04/17/query-performance-150-is-aggregates-the-way-out-for-me
    ° the OLAP cache is architected to store query result sets and to give all users access to those result sets.
    If a user executes a query, the result set for that query’s request can be stored in the OLAP cache; if that same query (or a derivative) is then executed by another user, the subsequent query request can be filled by accessing the result set already stored in the OLAP cache.
    In this way, a query request filled from the OLAP cache is significantly faster than queries that receive their result set from database access
    ° The indexes that are created in the fact table for each dimension allow you to easily find and select the data
    see http://help.sap.com/saphelp_nw04/helpdata/en/80/1a6473e07211d2acb80000e829fbfe/content.htm
    ° when you load data into the InfoCube, each request has its own request ID, which is included in the fact table in the packet dimension.
    This (besides giving the possibility to manage/delete single request) increases the volume of data, and reduces performance in reporting, as the system has to aggregate with the request ID every time you execute a query. Using compressing, you can eliminate these disadvantages, and bring data from different requests together into one single request (request ID 0).
    This function is critical, as the compressed data can no longer be deleted from the InfoCube using its request IDs and, logically, you must be absolutely certain that the data loaded into the InfoCube is correct.
    see http://help.sap.com/saphelp_nw04/helpdata/en/ca/aa6437e7a4080ee10000009b38f842/content.htm
    ° by using partitioning you can split up the whole dataset for an InfoCube into several, smaller, physically independent and redundancy-free units. Thanks to this separation, performance is increased when reporting, or also when deleting data from the InfoCube.
    see http://help.sap.com/saphelp_nw04/helpdata/en/33/dc2038aa3bcd23e10000009b38f8cf/content.htm
    Hope it helps!
    tHAK YOU,
    dst

  • Report performance problem

    Hi
    My problem is with performance in reports. The reports I use is 'Reports From SQL Query' and I have the following select statement.
    select * from lagffastadr
    where kommun like :bind_kommun
    and adrniva3 like :bind_adrniva3
    and adrnr like :bind_adrnr
    and adrlitt like :bind_adrlit
    and :bind_show = 1
    this works fine, but I have one big problem. The user may use wildcard to select all, %, this give me a new problem. The table I use contains NULL values. Then we don't get all the rows by using %, we get all that have a value. This can be solved by adding
    where (kommun like :bind_kommun OR kommun IS NULL)
    this will give me all the rows. But, then this will take a long time to evaluate since the sql query don't use the index that I have created. Is there another way to solve this or do I have to change all the NULL values in my database? (I rather not).
    thanks
    /Jvrgen Swensen

    It looks more like a query tuning problem. Please try the SQL, PL/SQL forum.
    You can expect a better answer there.
    Thanx,
    Chetan.

  • Report Performance Issue and Strange Execution Log Data

    Today we have had a report suddenly start taking a long time to execute.
    Looking at the Report Server executionLog3 table/view we have the following information for the query in question. 
     <Connection>
          <ConnectionOpenTime>1</ConnectionOpenTime>
          <DataSets>
            <DataSet>
              <Name>ReportDataset</Name>
              <RowsRead>7</RowsRead>
              <TotalTimeDataRetrieval>150013</TotalTimeDataRetrieval>
              <ExecuteReaderTime>3</ExecuteReaderTime>
            </DataSet>
          </DataSets>
        </Connection>
    Supposedly the time taken to retrieve the data is around 150 seconds.  However, running a profiler trace while running the report in SSRS shows the query executing in under 1 second.  
    Indeed running a profiler trace for anything on the server with a duration greater than 60 seconds isn't returning anything.  I can only assume the above data is wrong when it says 150 seconds to retrieve the data.  IT IS taking that long to run
    the report though - so the question is - where is the time going? 
    Why can't I find a slow query on the server but SSRS thinks there is? 
    LucasF
    EDIT: This was fixed by restarting the report server.  Any ideas on why this might occur? 

    Hi Lucas,
    According to your description, you find the <TotalTimeDataRetrieval> in ExecutionLog3 is larger than the profiler trace time.
    In Reporting Services, to analyze the performance of the report, we usually check the TimeDataRetrieval to find the time we spend on retrieving the data. It’s the time needed for SQL Server to retrieve the data of all datasets in your report. So in your
    scenario, please check if the TimeDataRetrieval is equal to the time in profiler trace.
    Reference:
    More tips to improve performance of SSRS reports
    If you have any question, please feel free to ask.
    Best regards,
    Qiuyun Yu
    Qiuyun Yu
    TechNet Community Support

  • Report Performance with Bind Variable

    Getting some very odd behaviour with a report in APEX v 3.2.1.00.10
    I have a complex query that takes 5 seconds to return via TOAD, but takes from 5 to 10 minutes in an APEX report.
    I've narrowed it down to one particular bind. If I hard code the date in it returns in 6 seconds, but if I let the date be passed in from a parameter it takes 5+ minutes again.
    Relevant part of the query (an inline view) is:
    ,(select rglr_lect lect
    ,sum(tpm) mtr_tpm
    ,sum(enrols) mtr_enrols
    from ops_dash_meetings_report
    where meet_ev_date between to_date(:P35_END_DATE,'DD/MM/YYYY') - 363 and to_date(:P35_END_DATE,'DD/MM/YYYY')
    group by rglr_lect) RPV
    I've tried replacing the "to_date(:P35_END_DATE,'DD/MM/YYYY') - 363" with another item which is populated with the date required (and verified by checking session state). If I replace the :P35_END_DATE with an actual date the performance is fine again.
    The weird thing is that a trace file shows me exactly the same Explain Plan as the TOAD Explain where it runs in 5 seconds.
    Another odd thing is that another page in my application has the same inline view and doesn't hit the performance problem.
    The trace file did show some control characters (circumflex M) after each line of this report's query where these weren't anywhere else on the trace queries. I wondered if there was some sort of corruption in the source?
    No problems due to pagination as the result set is only 31 records and all being displayed.
    Really stumped here. Any advice or pointers would be most welcome.
    Jon.

    Don't worry about the Time column, the cost and cardinality are more important to see whther the CBO is making different decisions for whatever reason.
    Remember that the explain plan shows the expected execution plan and a trace shows the actual execution plan. So what you want to do is compare the query with bind variables from an APEX page trace to a trace from TOAD (or sqlplus or whatever). You can do this outside APEX like this...
    ALTER SESSION SET EVENTS '10046 trace name context forever, level 1';Enter and run your SQL statement...;
    ALTER SESSION SET sql_trace=FALSE;This will create a a trace file in the directory returned by...
    SELECT value FROM v$parameter WHERE name = 'user_dump_dest' Which you can use tkprof to format.
    I am assuming that your not going over DB links or anything else slightly unusual?
    Cheers
    Ben

Maybe you are looking for

  • How to convert .doc files to .docx in a sharepoint library programmatically.

    Is there any possibility to Convert .doc files to .docx in a sharepoint document library. I have thousands and lakhs of .doc files and I need to automate to convert those .doc files to .docx with an automation script or powershell script or doing it

  • Does dismissViewControllerAnimated:completion: retain previous view controllers?

    I am having memory leaks and crashes in my app and I would like to know if they could be due to the way my container View Controller switches between View Controllers. The app should allow the user to navigate a long series of pages. Each page is lai

  • Mail-Best way to recover

    Hi I used Time Machine to Backup. I then wiped drive and reinstalled. Leopard. Not wishing to reinstall buggy apps I dragged selected files back. Everything except Mail is behaving as expected. Mail only restored 1 out of 3 accounts. When I dragged t

  • Installing Oracle EPM 11.1.1

    Hi I have downloaded Foundation Services(all the 3 parts), Essbase and Planning from edelivery site. But I am not able to start with the installation as all zip files have assembly.dat files. I cannot find any setup files. How should I go about the i

  • SmoothCam

    I am gettimng "tearing" on verticals in a clip treated with Smooth Cam when I create QT movie (H264). Where SmoothCam hasn't been used i don't have the problem. The tearing is only evident on the exported QT file, not in the FCP canvas so unsure wher