Select statement takes very long to run with order by clause.

Hi all,
I have a select statement which when I run without the order by clause takes arround 2 minutes to run. But with the order by clause it goes on for ever. I am trying to access the database server through a network which is not too fast.
The select statement is based on 9 views which are again based on some views. It also has inline views and outer joins. These views and inline views can not be done away with.
When selected without the order by clause it gives 3215 records.
Anything like 2 to 3 minutes will be Ok.
Thanks.
--Malay                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

The select statement is as follows :-
SELECT f.system_name,
a.signal_type,
f.sys_signal_name,
a.bus_desc,
b.vl_ident,
b.vl_name,
b.src_mac,
b.src_mac_addr,
b.dest_mac,
b.dest_mac_addr,
b.network,
bb.bufr_size_in_bytes,
bb.bag_in_ms,
bb.is_rma_used,
bb.is_ic_used,
bb.sub_vl_cnt,
bb.skew_max_in_ns,
cc.msg_name,
c.src_ip,
c.src_ip_addr,
c.src_port,
c.dest_ip,
c.dest_ip_addr,
c.dest_port,
cc.rate_in_ms,
cc.tx_mode,
cc.protocol,
cc.port_type,
cc.msg_length_in_bytes,
d.mnemonic,
d.start_addr32,
d.lsb,
d.end_addr32,
d.msb,
d.format,
d.init_value,
d.fs_mnemonic,
d.fs_afdx_data_id,
d.digital_data_id,
DECODE(
d.digital_datatype,
NULL, '',
'UNUSED', '',
api$util.concat_column_data(
'api_'
|| d.digital_datatype,
'digital_data_id',
d.digital_data_id,
bool.FALSE
) AS data_details,
f.connection_id
|| '_'
|| a.digital_bus_id
|| '_'
|| b.afdx_vl_id
|| '_'
|| bb.afdx_output_id
|| '_'
|| c.afdx_frame_id
|| '_'
|| cc.afdx_msg_id
|| '_'
|| d.afdx_data_id AS KEY
FROM api_afdx a,
api_afdx_vl b,
api_afdx_output bb,
api_afdx_frame c,
api_afdx_msg cc,
api_afdx_data d,
vf_signal e,
(SELECT DISTINCT aa.signal_id,
cc.system_name,
bb.connection_id,
bb.sys_signal_name
FROM vf_nodes aa,
vf_connections bb,
vf_system cc
WHERE aa.connection_id = bb.connection_id
AND bb.system_id = cc.system_id) f
WHERE e.signal_id = f.signal_id(+)
AND e.digital_bus_id = a.digital_bus_id
               AND a.digital_bus_id = bb.digital_bus_id(+)
AND bb.afdx_output_id = b.afdx_output_id(+)
               AND b.afdx_vl_id = c.afdx_vl_id(+)
AND bb.afdx_output_id = cc.afdx_output_id(+)
AND cc.afdx_msg_id = d.afdx_msg_id(+)
ORDER BY f.system_name,
a.signal_type,
f.sys_signal_name,
b.vl_name,
cc.msg_name,
d.start_addr32,
d.lsb;
Where api_afdx ,
api_afdx_vl ,
api_afdx_output ,
api_afdx_frame ,
api_afdx_msg ,
api_afdx_data ,
vf_signal ,
vf_nodes ,
vf_connections ,
vf_system
are all views.

Similar Messages

  • Select statement takes very long

    Hello from Germany,
    how comes that from one week to another my select-statement "select MAX(PRIMARYKEY) from mytable t where t.IntegerColumn = 5" takes 20times longer (25s) than before (0,4s)?
    The RowCount of myTable is 89899.
    Best Regards
    Marlon

    Hi all together,
    a "select * from all_tables" shows me or my table following facts:
    PCT_free 0
    PCT_used 0
    INI_TRANS 0
    MAX_TRANS 0
    INITIAL_EXTENT 409600000
    NEXT_EXTENT 5120000
    MIN_EXTENT 1
    MAX_EXTENT 2147483645
    PCT_INCREASE 0
    FREE_LISTS 1
    NUM_ROWS 60829
    BLOCKS 41559
    Other facts needed?
    Hope You can help me?!
    Marlon

  • ABAP select statements takes too long

    Hi,
    I have a select statement as shown below.
    SELECT * FROM BSEG INTO TABLE ITAB_BSEG
                         WHERE  BUKRS = CO_CODE
                         AND    BELNR IN W_DOCNO
                         AND    GJAHR = THISYEAR
                         AND    AUGBL NE SPACE.
    This select statement runs fine in all of R/3 systems except for 1. The problem that is shown with this particular system is that the query takes very long ( up to an hour for if W_DOCNO consists of 5 entries). Sometimes, before the query can complete, an ABAP runtime error is encountered as shown below:
    <b>Database error text........: "ORA-01555: snapshot too old: rollback segment   
    number 7 with name "PRS_5" too small?"                                       
    Internal call code.........: "[RSQL/FTCH/BSEG ]"                              
    Please check the entries in the system log (Transaction SM21).  </b> 
    Please help me on this issue. However, do not give me suggestions about selecting from a smaller table (bsik, bsak) as my situation does not permit it.
    I will reward points.

    dont use select * ....
    instead u declare ur itab with the required fields and then in select refer to the fields in the select .
    data : begin of itab,
             f1
             f2
             f3
             f4
             end of itab.
    select f1 f2 f3 f4 ..
         into table itab
    from bseg where ...
    . this improves the performance .
    select * is not advised .
    regards,
    vijay

  • Update statement takes too long to run

    Hello,
    I am running this simple update statement, but it takes too long to run. It was running for 16 hours and then I cancelled it. It was not even finished. The destination table that I am updating has 2.6 million records, but I am only updating 206K records. If add ROWNUM <20 to the update statement works just fine and updates the right column with the right information. Do you have any ideas what could be wrong in my update statement? I am also using a DB link since CAP.ESS_LOOKUP table resides in different db from the destination table. We are running 11g Oracle Db.
    UPDATE DEV_OCS.DOCMETA IPM
    SET IPM.XIPM_APP_2_17 = (SELECT DISTINCT LKP.DOC_STATUS
    FROM [email protected] LKP
    WHERE LKP.DOC_NUM = IPM.XIPM_APP_2_1 AND
    IPM.XIPMSYS_APP_ID = 2
    WHERE
    IPM.XIPMSYS_APP_ID = 2;
    Thanks,
    Ilya

    matthew_morris wrote:
    In the first SQL, the SELECT against the remote table was a correlated subquery. the 'WHERE LKP.DOC_NUM = IPM.XIPM_APP_2_1 AND IPM.XIPMSYS_APP_ID = 2" means that the subquery had to run once for each row of DEV_OCS.DOCMETA being evaluated. This might have meant thousands of iterations, meaning a great deal of network traffic (not to mention each performing a DISTINCT operation). Queries where the data is split between two or more databases are much more expensive than queries using only tables in a single database.Sorry to disappoint you again, but with clause by itself doesn't prevent from "subquery had to run once for each row of DEV_OCS.DOCMETA being evaluated". For example:
    {code}
    SQL> set linesize 132
    SQL> explain plan for
    2 update emp e
    3 set deptno = (select t.deptno from dept@sol10 t where e.deptno = t.deptno)
    4 /
    Explained.
    SQL> @?\rdbms\admin\utlxpls
    PLAN_TABLE_OUTPUT
    Plan hash value: 3247731149
    | Id | Operation | Name | Rows | Bytes | Cost (%CPU)| Time | Inst |IN-OUT|
    | 0 | UPDATE STATEMENT | | 14 | 42 | 17 (83)| 00:00:01 | | |
    | 1 | UPDATE | EMP | | | | | | |
    | 2 | TABLE ACCESS FULL| EMP | 14 | 42 | 3 (0)| 00:00:01 | | |
    | 3 | REMOTE | DEPT | 1 | 13 | 0 (0)| 00:00:01 | SOL10 | R->S |
    PLAN_TABLE_OUTPUT
    Remote SQL Information (identified by operation id):
    3 - SELECT "DEPTNO" FROM "DEPT" "T" WHERE "DEPTNO"=:1 (accessing 'SOL10' )
    16 rows selected.
    SQL> explain plan for
    2 update emp e
    3 set deptno = (with t as (select * from dept@sol10) select t.deptno from t where e.deptno = t.deptno)
    4 /
    Explained.
    SQL> @?\rdbms\admin\utlxpls
    PLAN_TABLE_OUTPUT
    Plan hash value: 3247731149
    | Id | Operation | Name | Rows | Bytes | Cost (%CPU)| Time | Inst |IN-OUT|
    | 0 | UPDATE STATEMENT | | 14 | 42 | 17 (83)| 00:00:01 | | |
    | 1 | UPDATE | EMP | | | | | | |
    | 2 | TABLE ACCESS FULL| EMP | 14 | 42 | 3 (0)| 00:00:01 | | |
    | 3 | REMOTE | DEPT | 1 | 13 | 0 (0)| 00:00:01 | SOL10 | R->S |
    PLAN_TABLE_OUTPUT
    Remote SQL Information (identified by operation id):
    3 - SELECT "DEPTNO" FROM "DEPT" "DEPT" WHERE "DEPTNO"=:1 (accessing 'SOL10' )
    16 rows selected.
    SQL>
    {code}
    As you can see, WITH clause by itself guaranties nothing. We must force optimizer to materialize it:
    {code}
    SQL> explain plan for
    2 update emp e
    3 set deptno = (with t as (select /*+ materialize */ * from dept@sol10) select t.deptno from t where e.deptno = t.deptno
    4 /
    Explained.
    SQL> @?\rdbms\admin\utlxpls
    PLAN_TABLE_OUTPUT
    Plan hash value: 3568118945
    | Id | Operation | Name | Rows | Bytes | Cost (%CPU)| Time | Inst |IN-OUT|
    | 0 | UPDATE STATEMENT | | 14 | 42 | 87 (17)| 00:00:02 | | |
    | 1 | UPDATE | EMP | | | | | | |
    | 2 | TABLE ACCESS FULL | EMP | 14 | 42 | 3 (0)| 00:00:01 | | |
    | 3 | TEMP TABLE TRANSFORMATION | | | | | | | |
    | 4 | LOAD AS SELECT | SYS_TEMP_0FD9D6603_1CEEEBC | | | | | | |
    | 5 | REMOTE | DEPT | 4 | 80 | 3 (0)| 00:00:01 | SOL10 | R->S |
    PLAN_TABLE_OUTPUT
    |* 6 | VIEW | | 4 | 52 | 2 (0)| 00:00:01 | | |
    | 7 | TABLE ACCESS FULL | SYS_TEMP_0FD9D6603_1CEEEBC | 4 | 80 | 2 (0)| 00:00:01 | | |
    Predicate Information (identified by operation id):
    6 - filter("T"."DEPTNO"=:B1)
    Remote SQL Information (identified by operation id):
    PLAN_TABLE_OUTPUT
    5 - SELECT "DEPTNO","DNAME","LOC" FROM "DEPT" "DEPT" (accessing 'SOL10' )
    25 rows selected.
    SQL>
    {code}
    I do know hint materialize is not documented, but I don't know any other way besides splitting statement in two to materialize it.
    SY.

  • SELECT statement takes long time

    Hi All,
    In the following code, if the T_QMIH-EQUNR contains blank or space values ,SELECT statement takes longer time to acess the data from OBJK table. If it T_QMIH-EQUNR contains values other than blank, performance is good and it fetches data very fast.
    Already we have indexes for EQUNR in OBJK table.
    Only for blank entries , it takes much time.Can anybody tell why it behaves for balnk entries?
    if not T_QMIH[] IS INITIAL.
            SORT T_QMIH BY EQUNR.
            REFRESH T_OBJK.
            SELECT EQUNR OBKNR
              FROM OBJK INTO TABLE T_OBJK
              FOR ALL ENTRIES IN T_QMIH
              WHERE OBJK~TASER = 'SER01' AND
             OBJK~EQUNR = T_QMIH-EQUNR.
    Thanks
    Ajay

    Hi
    You can use the field QMIH-QMNUM with OBJK-IHNUM
    in QMIH table, EQUNR is not primary key, it will have multiple entries
    so to improve the performance use one dummy internal table for QMIH  and sort it on EQUNR
    delete adjacent duplicates from d_qmih and use the same in for all entries
    this will improve the performance.
    Also use the fields in sequence of the index and primary keys also in select
    if not T_QMIH[] IS INITIAL.
    SORT T_QMIH BY EQUNR.
    REFRESH T_OBJK.
    SELECT EQUNR OBKNR
    FROM OBJK INTO TABLE T_OBJK
    FOR ALL ENTRIES IN T_QMIH
    WHERE  IHNUM =  T_QMIH-QMNUM
    OBJK~TASER = 'SER01' AND
    OBJK~EQUNR = T_QMIH-EQUNR.
    try this and let me know
    regards
    Shiva

  • Crystal report with prompts takes very long time to open in infoview BOXI3.

    Crystal report with prompts takes very long time to open in infoview BOXI3.1?
    Is there any way to increase the performance.

    Ramsudhakar,
    There are several items that could cause these slow down problems. Without knowing more about the way your environment is setup, I could cause more problems, by giving out performance tips. You would need to be more specific in your post.
    What we know. BOXI3.1
    What we don't know.
    O/S
    App. Server
    Hardware Spec's
    ETC.
    I see that this post has been out here for some time. So if this is still a problem for you I'll try and help, if you provide more information.
    Thanks
    Bill

  • IMAC takes very long to boot and and shut down.

    My iMAC 21" takes very long (15-20 mts) to boot up and become responsive. It also takes More than 5 mts to shut down. The HW test and disk utility do not report any issue. I have Erased the disk and re-installed OS X 10.9.2 two times. On the second re-install, I deliberately did not restore the backup from the time machine. It works well after it settles down. I changed the mouse and have cheked the Apple wireless keyboard.
    The problems began after the last security update to the best of my recollection. Since there does not appear to be any HW issue and I have re-installed the software, I am unable to determine what else I can do to resolve the issue.

    Hello. Thank you for responding to my message.
    I have shut down the system at 8.28am local time (took about 2 mts which is not bad). I then restarted and it took more than 10 mts to reach the login prompt. After login, it took several more minutes until all the icons were displayed at the bottom. After clicking on Safari and reaching the top hits pages also took an unresonable amount of time considering it is a quad core MAC and I am on a fibre internet connection. (Other computers at home respond quickly). I have to add that I am experiencing intermittent performane issues even when the MAC settles down after the long startup time. i.e. get to see the coloured spinning wheel several times.
    I have tried my best to cut down the log size but found many unique lines as the boot took so long. So, apologies for the length of the log. The System diagnostics section in the Console app is blank with no reports at all.
    2/5/14 8:28:23.982 am com.apple.launchd.peruser.501[179]: (com.apple.PackageKit.InstallStatus) Throttling respawn: Will start in 5 seconds
    2/5/14 8:28:25.782 am WindowServer[83]: disable_update_timeout: UI updates were forcibly disabled by application "loginwindow" for over 1.00 seconds. Server has re-enabled them.
    2/5/14 8:28:26.416 am WindowServer[83]: common_reenable_update: UI updates were finally reenabled by application "loginwindow" after 1.63 seconds (server forcibly re-enabled them after 1.00 seconds)
    2/5/14 8:28:26.424 am WindowServer[83]: CGXGetConnectionProperty: Invalid connection 51715
    2/5/14 8:28:26.431 am com.apple.launchd[1]: (com.apple.ShareKitHelper[252]) Exited: Killed: 9
    2/5/14 8:28:26.431 am com.apple.launchd.peruser.501[179]: (com.apple.AirPlayUIAgent[219]) Exited: Killed: 9
    2/5/14 8:28:26.437 am com.apple.launchd.peruser.501[179]: ([0x0-0x17017].com.apple.AppleSpell[310]) Exited: Killed: 9
    2/5/14 8:28:32.476 am sessionlogoutd[379]: sessionlogoutd Launched
    2/5/14 8:28:32.483 am sessionlogoutd[379]: DEAD_PROCESS: 41 console
    2/5/14 8:28:32.504 am airportd[63]: _doAutoJoin: Already associated to “Star-7789”. Bailing on auto-join.
    2/5/14 8:28:47.258 am shutdown[380]: halt by _coreaudiod:
    2/5/14 8:28:47.000 am kernel[0]: Kext loading now disabled.
    2/5/14 8:28:47.000 am kernel[0]: Kext unloading now disabled.
    2/5/14 8:28:47.000 am kernel[0]: Kext autounloading now disabled.
    2/5/14 8:28:47.000 am kernel[0]: Kernel requests now disabled.
    2/5/14 8:28:47.258 am shutdown[380]: SHUTDOWN_TIME: 1398990527 258440
    2/5/14 8:30:30.000 am bootlog[0]: BOOT_TIME 1398990630 0
    2/5/14 8:31:56.000 am syslogd[19]: Configuration Notice:
    ASL Module "com.apple.appstore" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    2/5/14 8:31:56.000 am syslogd[19]: Configuration Notice:
    ASL Module "com.apple.authd" sharing output destination "/var/log/system.log" with ASL Module "com.apple.asl".
    Output parameters from ASL Module "com.apple.asl" override any specified in ASL Module "com.apple.authd".
    2/5/14 8:31:56.000 am syslogd[19]: Configuration Notice:
    ASL Module "com.apple.authd" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    2/5/14 8:31:56.000 am syslogd[19]: Configuration Notice:
    ASL Module "com.apple.performance" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    2/5/14 8:31:56.000 am syslogd[19]: Configuration Notice:
    ASL Module "com.apple.securityd" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    2/5/14 8:31:56.000 am syslogd[19]: Configuration Notice:
    ASL Module "com.apple.securityd" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    2/5/14 8:31:56.000 am kernel[0]: Longterm timer threshold: 1000 ms
    2/5/14 8:31:56.000 am kernel[0]: PMAP: PCID enabled
    2/5/14 8:31:56.000 am kernel[0]: PMAP: Supervisor Mode Execute Protection enabled
    2/5/14 8:31:56.000 am kernel[0]: Darwin Kernel Version 13.1.0: Wed Apr  2 23:52:02 PDT 2014; root:xnu-2422.92.1~2/RELEASE_X86_64
    2/5/14 8:31:56.000 am kernel[0]: vm_page_bootstrap: 1861432 free pages and 219336 wired pages
    2/5/14 8:31:56.000 am kernel[0]: kext submap [0xffffff7f807a5000 - 0xffffff8000000000], kernel text [0xffffff8000200000 - 0xffffff80007a5000]
    2/5/14 8:31:56.000 am kernel[0]: zone leak detection enabled
    2/5/14 8:31:56.000 am kernel[0]: "vm_compressor_mode" is 4
    2/5/14 8:31:56.000 am kernel[0]: standard timeslicing quantum is 10000 us
    2/5/14 8:31:56.000 am kernel[0]: standard background quantum is 2500 us
    2/5/14 8:31:56.000 am kernel[0]: mig_table_max_displ = 74
    2/5/14 8:31:56.000 am kernel[0]: TSC Deadline Timer supported and enabled
    2/5/14 8:31:56.000 am kernel[0]: AppleACPICPU: ProcessorId=1 LocalApicId=0 Enabled
    2/5/14 8:31:56.000 am kernel[0]: AppleACPICPU: ProcessorId=2 LocalApicId=2 Enabled
    2/5/14 8:31:56.000 am kernel[0]: AppleACPICPU: ProcessorId=3 LocalApicId=4 Enabled
    2/5/14 8:31:56.000 am kernel[0]: AppleACPICPU: ProcessorId=4 LocalApicId=6 Enabled
    2/5/14 8:31:56.000 am kernel[0]: calling mpo_policy_init for TMSafetyNet
    2/5/14 8:31:56.000 am kernel[0]: Security policy loaded: Safety net for Time Machine (TMSafetyNet)
    2/5/14 8:31:56.000 am kernel[0]: calling mpo_policy_init for Sandbox
    2/5/14 8:31:56.000 am kernel[0]: Security policy loaded: Seatbelt sandbox policy (Sandbox)
    2/5/14 8:31:56.000 am kernel[0]: calling mpo_policy_init for Quarantine
    2/5/14 8:31:56.000 am kernel[0]: Security policy loaded: Quarantine policy (Quarantine)
    2/5/14 8:31:56.000 am kernel[0]: Copyright (c) 1982, 1986, 1989, 1991, 1993
    2/5/14 8:31:56.000 am kernel[0]: The Regents of the University of California. All rights reserved.
    2/5/14 8:31:56.000 am kernel[0]: MAC Framework successfully initialized
    2/5/14 8:31:56.000 am kernel[0]: using 16384 buffer headers and 10240 cluster IO buffer headers
    2/5/14 8:31:56.000 am kernel[0]: AppleKeyStore starting (BUILT: Jan 16 2014 20:19:00)
    2/5/14 8:31:56.000 am kernel[0]: IOAPIC: Version 0x20 Vectors 64:87
    2/5/14 8:31:56.000 am kernel[0]: ACPI: sleep states S3 S4 S5
    2/5/14 8:31:56.000 am kernel[0]: AppleIntelCPUPowerManagement: Turbo Ratios 3467
    2/5/14 8:31:56.000 am kernel[0]: AppleIntelCPUPowerManagement: (built 19:46:50 Jan 16 2014) initialization complete
    2/5/14 8:31:56.000 am kernel[0]: pci (build 20:00:24 Jan 16 2014), flags 0x63008, pfm64 (36 cpu) 0xf80000000, 0x80000000
    2/5/14 8:31:56.000 am kernel[0]: [ PCI configuration begin ]
    2/5/14 8:31:56.000 am kernel[0]: console relocated to 0xf80020000
    2/5/14 8:31:56.000 am kernel[0]: [ PCI configuration end, bridges 13, devices 16 ]
    2/5/14 8:31:56.000 am kernel[0]: AppleThunderboltNHIType2::setupPowerSavings - GPE based runtime power management
    2/5/14 8:31:56.000 am kernel[0]: mcache: 4 CPU(s), 64 bytes CPU cache line size
    2/5/14 8:31:56.000 am kernel[0]: mbinit: done [96 MB total pool size, (64/32) split]
    2/5/14 8:31:56.000 am kernel[0]: Pthread support ABORTS when sync kernel primitives misused
    2/5/14 8:31:56.000 am kernel[0]: rooting via boot-uuid from /chosen: BAEA055B-14AD-3566-B5E1-7009F2439E7E
    2/5/14 8:31:56.000 am kernel[0]: Waiting on <dict ID="0"><key>IOProviderClass</key><string ID="1">IOResources</string><key>IOResourceMatch</key><string ID="2">boot-uuid-media</string></dict>
    2/5/14 8:31:56.000 am kernel[0]: com.apple.AppleFSCompressionTypeZlib kmod start
    2/5/14 8:31:56.000 am kernel[0]: com.apple.AppleFSCompressionTypeDataless kmod start
    2/5/14 8:31:56.000 am kernel[0]: com.apple.AppleFSCompressionTypeZlib load succeeded
    2/5/14 8:31:56.000 am kernel[0]: com.apple.AppleFSCompressionTypeDataless load succeeded
    2/5/14 8:31:56.000 am kernel[0]: AppleIntelCPUPowerManagementClient: ready
    2/5/14 8:31:56.000 am kernel[0]: Got boot device = IOService:/AppleACPIPlatformExpert/PCI0@0/AppleACPIPCI/SATA@1F,2/AppleIntelPchS eriesAHCI/PRT0@0/IOAHCIDevice@0/AppleAHCIDiskDriver/IOAHCIBlockStorageDevice/IOB lockStorageDriver/APPLE HDD ST1000LM024 Media/IOGUIDPartitionScheme/Customer@2
    2/5/14 8:31:56.000 am kernel[0]: BSD root: disk0s2, major 1, minor 3
    2/5/14 8:31:56.000 am kernel[0]: BTCOEXIST off
    2/5/14 8:31:56.000 am kernel[0]: BRCM tunables:
    2/5/14 8:31:56.000 am kernel[0]: pullmode[1] txringsize[  256] txsendqsize[1024] reapmin[   32] reapcount[  128]
    2/5/14 8:31:56.000 am kernel[0]: Thunderbolt Self-Reset Count = 0xedefbe00
    2/5/14 8:31:56.000 am kernel[0]: IOThunderboltSwitch<0xffffff8038947200>(0x0)::listenerCallback - Thunderbolt HPD packet for route = 0x0 port = 11 unplug = 0
    2/5/14 8:31:56.000 am kernel[0]: IOThunderboltSwitch<0xffffff8038947200>(0x0)::listenerCallback - Thunderbolt HPD packet for route = 0x0 port = 12 unplug = 0
    2/5/14 8:31:56.000 am kernel[0]: hfs: mounted Macintosh HD on device root_device
    2/5/14 8:31:56.000 am kernel[0]: pci pause: SDXC
    2/5/14 8:30:55.844 am com.apple.launchd[1]: *** launchd[1] has started up. ***
    2/5/14 8:30:55.844 am com.apple.launchd[1]: *** Shutdown logging is enabled. ***
    2/5/14 8:31:54.439 am com.apple.SecurityServer[14]: Session 100000 created
    2/5/14 8:31:56.000 am kernel[0]: Waiting for DSMOS...
    2/5/14 8:31:56.589 am hidd[48]: void __IOHIDPlugInLoadBundles(): Loaded 0 HID plugins
    2/5/14 8:31:56.590 am hidd[48]: Posting 'com.apple.iokit.hid.displayStatus' notifyState=1
    2/5/14 8:31:56.000 am kernel[0]: VM Swap Subsystem is ON
    2/5/14 8:31:59.855 am distnoted[20]: assertion failed: 13C1021: liblaunch.dylib + 25164 [38D1AB2C-A476-385F-8EA8-7AB604CA1F89]: 0x25
    2/5/14 8:31:59.000 am kernel[0]: IO80211Controller::dataLinkLayerAttachComplete():  adding AppleEFINVRAM notification
    2/5/14 8:31:59.000 am kernel[0]: IO80211Interface::efiNVRAMPublished(): 
    2/5/14 8:32:01.000 am kernel[0]: IOBluetoothUSBDFU::probe
    2/5/14 8:32:01.000 am kernel[0]: IOBluetoothUSBDFU::probe ProductID - 0x828B FirmwareVersion - 0x0079
    2/5/14 8:32:01.000 am kernel[0]: **** [IOBluetoothHostControllerUSBTransport][start] -- completed -- result = TRUE -- 0xb400 ****
    2/5/14 8:32:01.000 am kernel[0]: **** [BroadcomBluetoothHostControllerUSBTransport][start] -- Completed -- 0xb400 ****
    2/5/14 8:32:01.000 am kernel[0]: SMC::smcReadKeyAction ERROR: smcReadData8 failed for key LsNM (kSMCKeyNotFound)
    2/5/14 8:32:01.000 am kernel[0]: SMC::smcReadKeyAction ERROR LsNM kSMCKeyNotFound(0x84) fKeyHashTable=0x0
    2/5/14 8:32:01.000 am kernel[0]: SMC::smcGetLightshowVers ERROR: smcReadKey LsNM failed (kSMCKeyNotFound)
    2/5/14 8:32:01.000 am kernel[0]: SMC::smcPublishLightshowVersion ERROR: smcGetLightshowVers failed (kSMCKeyNotFound)
    2/5/14 8:32:01.000 am kernel[0]: SMC::smcInitHelper ERROR: smcPublishLightshowVersion failed (kSMCKeyNotFound)
    2/5/14 8:32:01.000 am kernel[0]: Previous Shutdown Cause: 5
    2/5/14 8:32:01.000 am kernel[0]: NVDAStartup: Official
    2/5/14 8:32:01.000 am kernel[0]: init
    2/5/14 8:32:01.000 am kernel[0]: probe
    2/5/14 8:32:01.000 am kernel[0]: start
    2/5/14 8:32:01.000 am kernel[0]: [IOBluetoothHCIController][staticBluetoothHCIControllerTransportShowsUp] -- Received Bluetooth Controller register service notification -- 0xb400
    2/5/14 8:32:01.000 am kernel[0]: [IOBluetoothHCIController][start] -- completed
    2/5/14 8:32:01.000 am kernel[0]: NVDAGK100HAL loaded and registered
    2/5/14 8:32:01.000 am kernel[0]: [IOBluetoothHCIController::setConfigState] calling registerService
    2/5/14 8:32:01.000 am kernel[0]: **** [IOBluetoothHCIController][protectedBluetoothHCIControllerTransportShowsUp] -- Connected to the transport successfully -- 0xab00 -- 0x1800 -- 0xb400 ****
    2/5/14 8:32:01.000 am kernel[0]: DSMOS has arrived
    2/5/14 8:32:01.965 am com.apple.usbmuxd[26]: usbmuxd-327.4 on Feb 12 2014 at 14:54:33, running 64 bit
    2/5/14 8:32:02.000 am kernel[0]: AirPort: Link Down on en1. Reason 8 (Disassociated because station leaving).
    2/5/14 8:32:04.345 am configd[17]: dhcp_arp_router: en1 SSID unavailable
    2/5/14 8:32:04.354 am configd[17]: setting hostname to "Johns-iMac.local"
    2/5/14 8:32:04.357 am configd[17]: network changed.
    2/5/14 8:32:11.163 am stackshot[29]: Timed out waiting for IOKit to finish matching.
    2/5/14 8:32:21.000 am kernel[0]: flow_divert_kctl_disconnect (0): disconnecting group 1
    2/5/14 8:32:21.654 am com.apple.SecurityServer[14]: Entering service
    2/5/14 8:32:24.752 am loginwindow[43]: Login Window Application Started
    2/5/14 8:32:24.752 am awacsd[60]: Starting awacsd connectivity_executables-97 (Aug 24 2013 23:49:23)
    2/5/14 8:32:24.758 am awacsd[60]: InnerStore CopyAllZones: no info in Dynamic Store
    2/5/14 8:32:24.760 am digest-service[65]: label: default
    2/5/14 8:32:24.760 am digest-service[65]:           dbname: od:/Local/Default
    2/5/14 8:32:24.760 am digest-service[65]:           mkey_file: /var/db/krb5kdc/m-key
    2/5/14 8:32:24.760 am digest-service[65]:           acl_file: /var/db/krb5kdc/kadmind.acl
    2/5/14 8:32:24.762 am digest-service[65]: digest-request: uid=0
    2/5/14 8:32:24.768 am UserEventAgent[11]: Failed to copy info dictionary for bundle /System/Library/UserEventPlugins/alfUIplugin.plugin
    2/5/14 8:32:24.775 am mDNSResponder[40]: mDNSResponder mDNSResponder-522.90.2 (Nov  3 2013 18:51:09) starting OSXVers 13
    2/5/14 8:32:24.784 am UserEventAgent[11]: Captive: CNPluginHandler en1: Inactive
    2/5/14 8:32:24.803 am digest-service[65]: digest-request: netr probe 0
    2/5/14 8:32:24.803 am digest-service[65]: digest-request: init request
    2/5/14 8:32:24.810 am digest-service[65]: digest-request: init return domain: BUILTIN server: JohnS-IMAC indomain was: <NULL>
    2/5/14 8:32:24.844 am mDNSResponder[40]: D2D_IPC: Loaded
    2/5/14 8:32:24.844 am mDNSResponder[40]: D2DInitialize succeeded
    2/5/14 8:32:24.847 am mDNSResponder[40]:   4: Listening for incoming Unix Domain Socket client requests
    2/5/14 8:32:24.864 am systemkeychain[83]: done file: /var/run/systemkeychaincheck.done
    2/5/14 8:32:39.821 am awacsd[60]: Exiting
    2/5/14 8:32:59.919 am configd[17]: InterfaceNamer: timed out waiting for IOKit to quiesce
    2/5/14 8:32:59.919 am configd[17]: Busy services :
    2/5/14 8:32:59.919 am configd[17]:   iMac13,1 [1, 150166 ms]
    2/5/14 8:32:59.919 am configd[17]:   iMac13,1/AppleACPIPlatformExpert [1, 61878 ms]
    2/5/14 8:32:59.919 am configd[17]:   iMac13,1/AppleACPIPlatformExpert/CPU0@0 [1, 58697 ms]
    2/5/14 8:32:59.920 am configd[17]:   iMac13,1/AppleACPIPlatformExpert/CPU0@0/AppleACPICPU [1, 58692 ms]
    2/5/14 8:32:59.920 am configd[17]:   iMac13,1/AppleACPIPlatformExpert/CPU0@0/AppleACPICPU/X86PlatformPlugin [!registered, !matched, 1, 58622 ms]
    2/5/14 8:32:59.000 am kernel[0]: en2: promiscuous mode enable succeeded
    2/5/14 8:32:59.000 am kernel[0]: en3: promiscuous mode enable succeeded
    2/5/14 8:33:07.391 am airportd[64]: airportdProcessDLILEvent: en1 attached (up)
    2/5/14 8:33:07.000 am kernel[0]: createVirtIf(): ifRole = 1
    2/5/14 8:33:07.000 am kernel[0]: in func createVirtualInterface ifRole = 1
    2/5/14 8:33:07.000 am kernel[0]: AirPort_Brcm4331_P2PInterface::init name <p2p0> role 1
    2/5/14 8:33:07.000 am kernel[0]: AirPort_Brcm4331_P2PInterface::init() <p2p> role 1
    2/5/14 8:33:07.000 am kernel[0]: Created virtif 0xffffff803932dc00 p2p0
    2/5/14 8:33:07.812 am configd[17]: network changed: DNS*
    2/5/14 8:33:19.050 am apsd[62]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1102)
    2/5/14 8:33:23.440 am networkd[102]: networkd.102 built Aug 24 2013 22:08:46
    2/5/14 8:33:24.805 am mds[39]: (Normal) FMW: FMW 0 0
    2/5/14 8:33:29.103 am apsd[62]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1102)
    2/5/14 8:33:35.862 am warmd[25]: [warmctl_evt_timer_bc_activation_timeout:287] BC activation bcstop timer fired!
    2/5/14 8:33:36.000 am kernel[0]: IOPPF: AppleIntelCPUPowerManagement mode
    2/5/14 8:33:36.000 am kernel[0]: [AGPM Controller] build GPUDict by Vendor10deDevice0fd5
    2/5/14 8:34:09.979 am _networkd[116]: /usr/libexec/ntpd-wrapper: scutil key State:/Network/Global/DNS not present after 30 seconds
    2/5/14 8:34:14.131 am _networkd[119]: Unable to resolve hostname(s)
    2/5/14 8:34:14.354 am ntpd[109]: proto: precision = 1.000 usec
    2/5/14 8:34:15.055 am WindowServer[84]: Server is starting up
    2/5/14 8:34:15.117 am WindowServer[84]: Session 256 retained (2 references)
    2/5/14 8:34:15.117 am WindowServer[84]: Session 256 released (1 references)
    2/5/14 8:34:15.127 am WindowServer[84]: Session 256 retained (2 references)
    2/5/14 8:34:15.128 am WindowServer[84]: init_page_flip: page flip mode is on
    2/5/14 8:34:15.610 am locationd[45]: NBB-Could not get UDID for stable refill timing, falling back on random
    2/5/14 8:34:15.612 am locationd[45]: could not create intermediate property list - Cannot parse a NULL or zero-length data
    2/5/14 8:34:15.612 am locationd[45]: could not deserialize property list from /var/db/locationd/clients.plist
    2/5/14 8:34:15.676 am WindowServer[84]: Found 51 modes for display 0x00000000 [27, 24]
    2/5/14 8:34:16.000 am kernel[0]: en1: 802.11d country code set to 'SG'.
    2/5/14 8:34:16.000 am kernel[0]: en1: Supported channels 1 2 3 4 5 6 7 8 9 10 11 12 13 36 40 44 48 52 56 60 64 100 104 108 112 116 120 124 128 132 136 140 149 153 157 161 165
    2/5/14 8:34:17.000 am kernel[0]: MacAuthEvent en1   Auth result for: 98:2c:be:74:e5:be  MAC AUTH succeeded
    2/5/14 8:34:17.000 am kernel[0]: wlEvent: en1 en1 Link UP virtIf = 0
    2/5/14 8:34:17.000 am kernel[0]: AirPort: Link Up on en1
    2/5/14 8:34:17.000 am kernel[0]: en1: BSSID changed to 98:2c:be:74:e5:be
    2/5/14 8:34:17.050 am WindowServer[84]: Found 1 modes for display 0x00000000 [1, 0]
    2/5/14 8:34:17.053 am WindowServer[84]: Found 1 modes for display 0x00000000 [1, 0]
    2/5/14 8:34:17.054 am WindowServer[84]: mux_initialize: Couldn't find any matches
    2/5/14 8:34:17.055 am WindowServer[84]: Found 51 modes for display 0x00000000 [27, 24]
    2/5/14 8:34:17.058 am WindowServer[84]: Found 1 modes for display 0x00000000 [1, 0]
    2/5/14 8:34:17.058 am WindowServer[84]: Found 1 modes for display 0x00000000 [1, 0]
    2/5/14 8:34:17.071 am locationd[45]: Location icon should now be in state 'Inactive'
    2/5/14 8:34:17.000 am kernel[0]: AirPort: RSN handshake complete on en1
    2/5/14 8:34:17.208 am WindowServer[84]: WSMachineUsesNewStyleMirroring: true
    2/5/14 8:34:17.208 am WindowServer[84]: Display 0x04280480: GL mask 0x1; bounds (0, 0)[1920 x 1080], 51 modes available
    Main, Active, on-line, enabled, built-in, boot, Vendor 610, Model a012, S/N 0, Unit 0, Rotation 0
    UUID 0x2838c3dda39478c14a5e57649bbc5643
    2/5/14 8:34:17.209 am WindowServer[84]: Display 0x003f003f: GL mask 0x8; bounds (0, 0)[3840 x 2160], 2 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 3, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    2/5/14 8:34:17.209 am WindowServer[84]: Display 0x003f003e: GL mask 0x4; bounds (0, 0)[0 x 0], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 2, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    2/5/14 8:34:17.209 am WindowServer[84]: Display 0x003f003d: GL mask 0x2; bounds (0, 0)[0 x 0], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 1, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    2/5/14 8:34:17.209 am WindowServer[84]: WSSetWindowTransform: Singular matrix
    2/5/14 8:34:17.209 am WindowServer[84]: WSSetWindowTransform: Singular matrix
    2/5/14 8:34:17.000 am kernel[0]: flow_divert_kctl_disconnect (0): disconnecting group 1
    2/5/14 8:34:19.342 am WindowServer[84]: Display 0x04280480: GL mask 0x1; bounds (0, 0)[1920 x 1080], 51 modes available
    Main, Active, on-line, enabled, built-in, boot, Vendor 610, Model a012, S/N 0, Unit 0, Rotation 0
    UUID 0x2838c3dda39478c14a5e57649bbc5643
    2/5/14 8:34:19.342 am WindowServer[84]: Display 0x003f003f: GL mask 0x8; bounds (2944, 0)[1 x 1], 2 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 3, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    2/5/14 8:34:19.342 am WindowServer[84]: Display 0x003f003e: GL mask 0x4; bounds (2945, 0)[1 x 1], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 2, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    2/5/14 8:34:19.342 am WindowServer[84]: Display 0x003f003d: GL mask 0x2; bounds (2946, 0)[1 x 1], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 1, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    2/5/14 8:34:19.343 am WindowServer[84]: CGXPerformInitialDisplayConfiguration
    2/5/14 8:34:19.343 am WindowServer[84]:   Display 0x04280480: Unit 0; Vendor 0x610 Model 0xa012 S/N 0 Dimensions 18.70 x 10.51; online enabled built-in, Bounds (0,0)[1920 x 1080], Rotation 0, Resolution 1
    2/5/14 8:34:19.343 am WindowServer[84]:   Display 0x003f003f: Unit 3; Vendor 0xffffffff Model 0xffffffff S/N -1 Dimensions 0.00 x 0.00; offline enabled, Bounds (2944,0)[1 x 1], Rotation 0, Resolution 1
    2/5/14 8:34:19.343 am WindowServer[84]:   Display 0x003f003e: Unit 2; Vendor 0xffffffff Model 0xffffffff S/N -1 Dimensions 0.00 x 0.00; offline enabled, Bounds (2945,0)[1 x 1], Rotation 0, Resolution 1
    2/5/14 8:34:19.343 am WindowServer[84]:   Display 0x003f003d: Unit 1; Vendor 0xffffffff Model 0xffffffff S/N -1 Dimensions 0.00 x 0.00; offline enabled, Bounds (2946,0)[1 x 1], Rotation 0, Resolution 1
    2/5/14 8:34:31.835 am UserEventAgent[11]: Captive: [CNInfoNetworkActive:1655] en1: SSID 'Star-7789' making interface primary (protected network)
    2/5/14 8:34:31.835 am configd[17]: network changed: DNS* Proxy
    2/5/14 8:34:31.835 am UserEventAgent[11]: Captive: CNPluginHandler en1: Evaluating
    2/5/14 8:34:31.835 am UserEventAgent[11]: Captive: en1: Probing 'Star-7789'
    2/5/14 8:34:31.838 am configd[17]: network changed: v4(en1!:192.168.1.98) DNS+ Proxy+ SMB
    2/5/14 8:34:32.937 am UserEventAgent[11]: Captive: CNPluginHandler en1: Authenticated
    2/5/14 8:34:35.953 am configd[17]: setting hostname to
    2/5/14 8:34:51.522 am digest-service[129]: label: default
    2/5/14 8:34:51.522 am digest-service[129]:           dbname: od:/Local/Default
    2/5/14 8:34:51.522 am digest-service[129]:           mkey_file: /var/db/krb5kdc/m-key
    2/5/14 8:34:51.522 am digest-service[129]:           acl_file: /var/db/krb5kdc/kadmind.acl
    2/5/14 8:34:51.523 am digest-service[129]: digest-request: uid=0
    2/5/14 8:34:51.525 am digest-service[129]: digest-request: netr probe 0
    2/5/14 8:34:51.525 am digest-service[129]: digest-request: init request
    2/5/14 8:34:51.528 am digest-service[129]: digest-request: init return domain:    -IMAC server: -IMAC indomain was: <NULL>
    2/5/14 8:34:52.906 am WindowServer[84]: GLCompositor: GL renderer id 0x01022727, GL mask 0x0000000f, accelerator 0x0000449b, unit 0, caps QEX|MIPMAP, vram 512 MB
    2/5/14 8:34:52.940 am digest-service[129]: digest-request: uid=0
    2/5/14 8:34:52.940 am digest-service[129]: digest-request: init request
    2/5/14 8:34:52.943 am digest-service[129]: digest-request: init return domain: JohnS-IMAC server: JohnS-IMAC indomain was: <NULL>
    2/5/14 8:34:52.991 am WindowServer[84]: GLCompositor: GL renderer id 0x01022727, GL mask 0x0000000f, texture max 16384, viewport max {16384, 16384}, extensions FPRG|NPOT|GLSL|FLOAT
    2/5/14 8:34:52.991 am WindowServer[84]: GLCompositor enabled for tile size [256 x 256]
    2/5/14 8:34:52.991 am WindowServer[84]: CGXGLInitMipMap: mip map mode is on
    2/5/14 8:34:53.030 am WindowServer[84]: **DMPROXY** (2) Found `/System/Library/CoreServices/DMProxy'.
    2/5/14 8:34:53.031 am com.apple.launchd[1]: (com.apple.netbiosd[121]) Exited abnormally: Hangup: 1
    2/5/14 8:34:53.063 am loginwindow[43]: **DMPROXY** Found `/System/Library/CoreServices/DMProxy'.
    2/5/14 8:34:56.004 am WindowServer[84]: MPAccessSurfaceForDisplayDevice: Set up page flip mode on display 0x04280480 device: 0x7fee2af174f0  isBackBuffered: 1 numComp: 3 numDisp: 3
    2/5/14 8:34:56.004 am WindowServer[84]: _CGXGLDisplayContextForDisplayDevice: acquired display context (0x7fee2af174f0) - enabling OpenGL
    2/5/14 8:34:57.999 am com.apple.launchd[1]: (com.apple.netbiosd[135]) Exited abnormally: Hangup: 1
    2/5/14 8:34:57.999 am com.apple.launchd[1]: (com.apple.netbiosd) Throttling respawn: Will start in 6 seconds
    2/5/14 8:35:23.873 am WindowServer[84]: Display 0x04280480: Unit 0; ColorProfile { 2, "iMac"}; TransferFormula (1.000000, 1.000000, 1.000000)
    2/5/14 8:35:24.617 am WindowServer[84]: Display 0x04280480: Unit 0; ColorProfile { 2, "iMac"}; TransferFormula (1.000000, 1.000000, 1.000000)
    2/5/14 8:35:24.624 am WindowServer[84]: Display 0x04280480: Unit 0; ColorProfile { 2, "iMac"}; TransferFormula (1.000000, 1.000000, 1.000000)
    2/5/14 8:35:25.802 am launchctl[142]: com.apple.findmymacmessenger: Already loaded
    2/5/14 8:35:26.179 am airportd[64]: _doAutoJoin: Already associated to “Star-”. Bailing on auto-join.
    2/5/14 8:35:26.420 am com.apple.SecurityServer[14]: Session 100005 created
    2/5/14 8:35:26.438 am loginwindow[43]: Setting the initial value of the magsave brightness level 1
    2/5/14 8:35:27.177 am loginwindow[43]: Login Window Started Security Agent
    2/5/14 8:35:27.329 am UserEventAgent[144]: Failed to copy info dictionary for bundle /System/Library/UserEventPlugins/alfUIplugin.plugin
    2/5/14 8:35:27.697 am SecurityAgent[151]: This is the first run
    2/5/14 8:35:27.697 am SecurityAgent[151]: MacBuddy was run = 0
    2/5/14 8:35:32.787 am locationd[45]: locationd was started after an unclean shutdown
    2/5/14 8:35:59.142 am SecurityAgent[151]: User info context values set for
    2/5/14 8:36:17.705 am SecurityAgent[151]: Login Window login proceeding
    2/5/14 8:36:20.463 am loginwindow[43]: Login Window - Returned from Security Agent
    2/5/14 8:36:20.488 am loginwindow[43]: USER_PROCESS: 43 console
    2/5/14 8:36:20.544 am airportd[64]: _doAutoJoin: Already associated to “Star-7789”. Bailing on auto-join.
    2/5/14 8:36:20.000 am kernel[0]: AppleKeyStore:Sending lock change 0
    2/5/14 8:36:20.704 am com.apple.launchd.peruser.501[171]: Background: Aqua: Registering new GUI session.
    2/5/14 8:36:20.720 am com.apple.launchd.peruser.501[171]: (com.apple.EscrowSecurityAlert) Unknown key: seatbelt-profiles
    2/5/14 8:36:20.720 am com.apple.launchd.peruser.501[171]: (com.apple.ReportCrash) Falling back to default Mach exception handler. Could not find: com.apple.ReportCrash.Self
    2/5/14 8:36:20.723 am launchctl[173]: com.apple.pluginkit.pkd: Already loaded
    2/5/14 8:36:20.723 am launchctl[173]: com.apple.sbd: Already loaded
    2/5/14 8:36:20.730 am distnoted[175]: # distnote server agent  absolute time: 351.096632167   civil time: Fri May  2 08:36:20 2014   pid: 175 uid: 501  root: no
    2/5/14 8:36:21.191 am com.apple.audio.DriverHelper[187]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class AMDRadeonX4000_AMDAccelDevice.
    2/5/14 8:36:21.191 am com.apple.audio.DriverHelper[187]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class AMDRadeonX4000_AMDAccelSharedUserClient.
    2/5/14 8:36:21.191 am com.apple.audio.DriverHelper[187]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class AMDSIVideoContext.
    2/5/14 8:36:21.191 am com.apple.audio.DriverHelper[187]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class Gen6DVDContext.
    2/5/14 8:36:21.191 am com.apple.audio.DriverHelper[187]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelDevice.
    2/5/14 8:36:21.192 am com.apple.audio.DriverHelper[187]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelSharedUserClient.
    2/5/14 8:36:21.192 am com.apple.audio.DriverHelper[187]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelVideoContextMain.
    2/5/14 8:36:21.192 am com.apple.audio.DriverHelper[187]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelVideoContextMedia.
    2/5/14 8:36:21.192 am com.apple.audio.DriverHelper[187]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelVideoContextVEBox.
    2/5/14 8:36:21.192 am com.apple.audio.DriverHelper[187]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IOBluetoothDeviceUserClient.
    2/5/14 8:36:21.192 am com.apple.audio.DriverHelper[187]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IOHIDParamUserClient.
    2/5/14 8:36:21.193 am com.apple.audio.DriverHelper[187]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IOSurfaceRootUserClient.
    2/5/14 8:36:21.193 am com.apple.audio.DriverHelper[187]: The plug-in named AirPlay.driver requires extending the sandbox for the mach service named com.apple.AirPlayXPCHelper.
    2/5/14 8:36:21.193 am com.apple.audio.DriverHelper[187]: The plug-in named AirPlay.driver requires extending the sandbox for the mach service named com.apple.blued.
    2/5/14 8:36:21.243 am com.apple.audio.DriverHelper[187]: The plug-in named BluetoothAudioPlugIn.driver requires extending the sandbox for the IOKit user-client class IOBluetoothDeviceUserClient.
    2/5/14 8:36:21.244 am com.apple.audio.DriverHelper[187]: The plug-in named BluetoothAudioPlugIn.driver requires extending the sandbox for the mach service named com.apple.blued.
    2/5/14 8:36:21.244 am com.apple.audio.DriverHelper[187]: The plug-in named BluetoothAudioPlugIn.driver requires extending the sandbox for the mach service named com.apple.bluetoothaudiod.
    2/5/14 8:36:21.278 am WindowServer[84]: **DMPROXY** (2) Found `/System/Library/CoreServices/DMProxy'.
    2/5/14 8:36:21.340 am WindowServer[84]: Display 0x04280480: Unit 0; ColorProfile { 2, "iMac"}; TransferFormula (1.000000, 1.000000, 1.000000)
    2/5/14 8:36:23.176 am UserEventAgent[174]: Failed to copy info dictionary for bundle /System/Library/UserEventPlugins/alfUIplugin.plugin
    2/5/14 8:36:23.391 am sharingd[202]: Starting Up...
    2/5/14 8:36:23.481 am xpcproxy[207]: assertion failed: 13C1021: xpcproxy + 3438 [D559FC96-E6B1-363A-B850-C7AC9734F210]: 0x2
    2/5/14 8:36:24.143 am WindowServer[84]: disable_update_timeout: UI updates were forcibly disabled by application "SystemUIServer" for over 1.00 seconds. Server has re-enabled them.
    2/5/14 8:36:24.771 am com.apple.iCloudHelper[207]: ApplePushService: Timed out making blocking call, failed to perform call via XPC connection to 'com.apple.apsd'
    2/5/14 8:36:28.783 am com.apple.iCloudHelper[207]: AOSKit WARN: APS timeout encountered (cxn initialization)
    2/5/14 8:36:28.783 am com.apple.iCloudHelper[207]: AOSKit WARN: Failed to get response from APSConnection's initialization method(s)
    2/5/14 8:36:29.021 am com.apple.iCloudHelper[207]: ApplePushService: Timed out making blocking call, failed to perform call via XPC connection to 'com.apple.apsd'
    2/5/14 8:36:30.083 am com.apple.iCloudHelper[207]: ApplePushService: Timed out making blocking call, failed to perform call via XPC connection to 'com.apple.apsd'
    2/5/14 8:36:38.144 am WindowServer[84]: disable_update_likely_unbalanced: UI updates still disabled by application "SystemUIServer" after 15.00 seconds (server forcibly re-enabled them after 1.00 seconds). Likely an unbalanced disableUpdate call.
    2/5/14 8:36:59.246 am com.apple.iCloudHelper[207]: ApplePushService: Connection timed out trying to communicate with apsd
    2/5/14 8:37:14.483 am com.apple.iCloudHelper[207]: ApplePushService: Connection timed out trying to communicate with apsd
    2/5/14 8:37:18.728 am com.apple.IconServicesAgent[213]: IconServicesAgent launched.
    2/5/14 8:37:20.971 am com.apple.launchd.peruser.501[171]: (com.brother.LOGINserver[229]) Job failed to exec(3). Setting up event to tell us when to try again: 2: No such file or directory
    2/5/14 8:37:20.971 am com.apple.launchd.peruser.501[171]: (com.brother.LOGINserver[229]) Job failed to exec(3) for weird reason: 2
    2/5/14 8:37:20.975 am com.apple.SecurityServer[14]: Session 100007 created
    2/5/14 8:37:21.162 am com.apple.SecurityServer[14]: Session 100008 created
    2/5/14 8:37:22.227 am WiFiKeychainProxy[215]: [NO client logger] <Nov 10 2013 18:30:13> WIFICLOUDSYNC WiFiCloudSyncEngineCreate: created...
    2/5/14 8:37:22.227 am WiFiKeychainProxy[215]: [NO client logger] <Nov 10 2013 18:30:13> WIFICLOUDSYNC WiFiCloudSyncEngineRegisterCallbacks: WiFiCloudSyncEngineCallbacks version - 0, bundle id - com.apple.wifi.WiFiKeychainProxy
    2/5/14 8:37:45.125 am com.apple.SecurityServer[14]: Session 100011 created
    2/5/14 8:37:47.000 am kernel[0]: CODE SIGNING: cs_invalid_page(0x1000): p=228[GoogleSoftwareUp] final status 0x0, allowing (remove VALID) page
    2/5/14 8:37:54.515 am accountsd[238]: assertion failed: 13C1021: liblaunch.dylib + 25164 [38D1AB2C-A476-385F-8EA8-7AB604CA1F89]: 0x25
    2/5/14 8:37:55.448 am apsd[210]: Unrecognized leaf certificate
    2/5/14 8:38:06.772 am WindowServer[84]: common_reenable_update: UI updates were finally reenabled by application "SystemUIServer" after 103.63 seconds (server forcibly re-enabled them after 1.00 seconds)
    2/5/14 8:38:08.154 am SystemUIServer[182]: void CGSUpdateManager::log() const: conn 0x8d2b: spurious update.
    2/5/14 8:38:13.536 am SystemUIServer[182]: Cannot find executable for CFBundle 0x7fb98ac35520 </System/Library/CoreServices/Menu Extras/Clock.menu> (not loaded)
    2/5/14 8:38:13.552 am SystemUIServer[182]: Cannot find executable for CFBundle 0x7fb98ac20800 </System/Library/CoreServices/Menu Extras/Volume.menu> (not loaded)
    2/5/14 8:38:19.690 am librariand[205]: [ERROR] [0.000s] default-qu framework_client.c:103 IPCSendMessageTimed() Could not send a message to ubd: Operation timed out
    2/5/14 8:38:19.690 am librariand[205]: [ERROR] [0.000s] default-qu framework_client.c:737 IPCSyncingEnabled() failed to contact ubd: -1
    2/5/14 8:38:34.789 am librariand[205]: [ERROR] [15.099s] default-qu framework_client.c:103 IPCSendMessageTimed() Could not send a message to ubd: Operation timed out
    2/5/14 8:38:34.789 am librariand[205]: [ERROR] [15.099s] default-qu framework_client.c:737 IPCSyncingEnabled() failed to contact ubd: -1
    2/5/14 8:39:11.229 am storeagent[241]: FCIsAppAllowedToLaunchExt [343] -- *** _FCMIGAppCanLaunch timed out. Returning false.
    2/5/14 8:39:12.674 am parentalcontrolsd[248]: StartObservingFSEvents [849:] -- *** StartObservingFSEvents started event stream
    2/5/14 8:39:13.288 am com.apple.time[174]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    2/5/14 8:39:14.535 am com.apple.SecurityServer[14]: Session 100013 created
    2/5/14 8:39:39.278 am com.apple.iCloudHelper[207]: AOSKit ERROR: Config request failed, url=https://setup.icloud.com/configurations/init, requestHeaders=
        "Accept-Language" = "en-us";
        "X-Mme-Client-Info" = "<iMac13,1> <Mac OS X;10.9.2;13C1021> <com.apple.AOSKit/176>";
        "X-Mme-Country" = SG;
        "X-Mme-Nac-Version" = 11A457;
        "X-Mme-Timezone" = "GMT+8";
    error=Error Domain=kCFErrorDomainCFNetwork Code=-1001 "The request timed out." UserInfo=0x7ff801e07250 {NSErrorFailingURLStringKey=https://setup.icloud.com/configurations/init, NSLocalizedDescription=The request timed out., NSErrorFailingURLKey=https://setup.icloud.com/configurations/init}, httpStatusCode=-1, responseHeaders=
    (null)
    2/5/14 8:39:39.479 am sandboxd[239]: ([226]) assistantd(226) deny file-read-data /Library/Frameworks/TSLicense.framework/Versions/A/TSLicense
    2/5/14 8:39:40.927 am sandboxd[239]: ([120]) ntpd(120) deny file-read-data /private/var/run/resolv.conf
    2/5/14 8:39:41.729 am sandboxd[239]: ([120]) ntpd(120) deny file-read-data /private/var/run/resolv.conf
    2/5/14 8:40:36.480 am LKDCHelper[256]: Starting (uid=501)
    2/5/14 8:40:39.379 am com.apple.iCloudHelper[207]: AOSKit ERROR: Config request failed, url=https://setup.icloud.com/configurations/init, requestHeaders=
        "Accept-Language" = "en-us";
        "X-Mme-Client-Info" = "<iMac13,1> <Mac OS X;10.9.2;13C1021> <com.apple.AOSKit/176>";
        "X-Mme-Country" = SG;
        "X-Mme-Nac-Version" = 11A457;
        "X-Mme-Timezone" = "GMT+8";
    error=Error Domain=kCFErrorDomainCFNetwork Code=-1001 "The request timed out." UserInfo=0x7ff801e10320 {NSErrorFailingURLStringKey=https://setup.icloud.com/configurations/init, NSLocalizedDescription=The request timed out., NSErrorFailingURLKey=https://setup.icloud.com/configurations/init}, httpStatusCode=-1, responseHeaders=
    (null)
    2/5/14 8:40:39.410 am com.apple.iCloudHelper[207]: AOSKit ERROR: Setup request failed, appleID=1331111818, url=(null), requestHeaders=
    (null),
    error=Error Domain=AOSErrorDomain Code=1000 "The operation couldn’t be completed. (AOSErrorDomain error 1000.)" UserInfo=0x7ff801e25270 {HttpStatusCode=0, DialogInfo={
        DialogType = Unknown;
    }}, httpStatusCode=0, responseHeaders=
    (null),
    responseBody=
    (null)
    2/5/14 8:40:40.002 am com.apple.time[174]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    2/5/14 8:40:40.262 am mds[39]: (Normal) Volume: volume:0x7faefc094000 ********** Bootstrapped Creating a default store:0 SpotLoc:(null) SpotVerLoc:(null) occlude:0 /Volumes/firmwaresyncd.GVtxu8
    2/5/14 8:40:53.113 am com.apple.dock.extra[250]: <NSXPCConnection: 0x7ff860f17f90>: received an undecodable message (no exported object to receive message). Dropping message.
    2/5/14 8:40:54.213 am secd[233]:  __EnsureFreshParameters_block_invoke_2 SOSCloudKeychainSynchronizeAndWait: The operation couldn’t be completed. (SyncedDefaults error 1025 - Remote error : No valid account for KVS)
    2/5/14 8:40:54.213 am secd[233]:  __talkWithKVS_block_invoke callback error: The operation couldn’t be completed. (SyncedDefaults error 1025 - Remote error : No valid account for KVS)
    2/5/14 8:40:54.372 am secd[233]:  CFPropertyListReadFromFile file file:///Users/Johndandekar/Library/Keychains/54F98C75-0DC3-5591-B434-1E7BF5D373 41/accountStatus.plist: The file “accountStatus.plist” couldn’t be opened because there is no such file.
    2/5/14 8:40:54.404 am secd[233]:  SecErrorGetOSStatus unknown error domain: com.apple.security.sos.error for error: The operation couldn’t be completed. (com.apple.security.sos.error error 2 - Public Key not available - failed to register before call)
    2/5/14 8:40:54.404 am secd[233]:  securityd_xpc_dictionary_handler WiFiKeychainProx[215] DeviceInCircle The operation couldn’t be completed. (com.apple.security.sos.error error 2 - Public Key not available - failed to register before call)
    2/5/14 8:41:06.693 am WindowServer[84]: disable_update_timeout: UI updates were forcibly disabled by application "Safari" for over 1.00 seconds. Server has re-enabled them.
    2/5/14 8:41:20.693 am WindowServer[84]: disable_update_likely_unbalanced: UI updates still disabled by application "Safari" after 15.00 seconds (server forcibly re-enabled them after 1.00 seconds). Likely an unbalanced disableUpdate call.
    2/5/14 8:42:06.685 am ntpd[109]: ntpd: time set +1.417472 s
    2/5/14 8:42:06.693 am com.apple.time[174]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    2/5/14 8:42:12.250 am WindowServer[84]: common_reenable_update: UI updates were finally reenabled by application "Safari" after 65.14 seconds (server forcibly re-enabled them after 1.00 seconds)
    2/5/14 8:44:32.201 am com.apple.SecurityServer[14]: Session 100014 created
    2/5/14 8:44:32.441 am imagent[214]: [Warning] Creating empty account: PlaceholderAccount for service: IMDService (iMessage)
    2/5/14 8:44:32.441 am imagent[214]: [Warning] Creating empty account: PlaceholderAccount for service: IMDService (iMessage)
    2/5/14 8:44:32.605 am soagent[208]: No active accounts, killing soagent in 10 seconds
    2/5/14 8:44:32.606 am soagent[208]: No active accounts, killing soagent in 10 seconds
    2/5/14 8:44:42.605 am soagent[208]: Killing soagent.
    2/5/14 8:44:42.606 am NotificationCenter[200]: SOHelperCenter main connection interrupted
    2/5/14 8:44:42.606 am com.apple.dock.extra[250]: SOHelperCenter main connection interrupted
    2/5/14 8:44:42.607 am imagent[214]: [Warning] Denying xpc connection, task does not have entitlement: com.apple.private.icfcallserver  (soagent:208)
    2/5/14 8:44:42.607 am imagent[214]: [Warning] Denying xpc connection, task does not have entitlement: com.apple.private.icfcallserver  (soagent:208)
    2/5/14 8:45:39.211 am ntpd[109]: FREQ state ignoring -0.000168 s
    2/5/14 8:45:42.272 am mdworker32[259]: CGSConnectionByID: 0 is not a valid connection ID.
    2/5/14 8:45:42.272 am mdworker32[259]: CGSGetSpaceManagementMode: No connection with id 0x       0
    2/5/14 8:46:48.521 am ntpd[109]: FREQ state ignoring +0.000861 s
    2/5/14 8:47:41.646 am xpcd[192]: restored permissions (100600 -> 100700) on /Users/Johndandekar/Library/Containers/com.apple.Notes/Container.plist
    2/5/14 8:47:53.961 am com.apple.SecurityServer[14]: Session 100015 created
    2/5/14 8:47:59.173 am WindowServer[84]: disable_update_timeout: UI updates were forcibly disabled by application "Notes" for over 1.00 seconds. Server has re-enabled them.
    2/5/14 8:48:02.756 am WindowServer[84]: common_reenable_update: UI updates were finally reenabled by application "Notes" after 4.58 seconds (server forcibly re-enabled them after 1.00 seconds)
    2/5/14 8:48:04.999 am com.apple.SecurityServer[14]: Session 100016 created
    2/5/14 8:48:22.828 am ntpd[109]: FREQ state ignoring -0.000677 s
    2/5/14 8:49:20.692 am sandboxd[239]: ([315]) mdworker(315) deny file-read-data /Applications/Microsoft Office 2011/Office/Media/Clipart/Bullets.localized/.localized ()

  • Firefox takes very long time to open and often crashes for some websites

    i have used firefox 3.6 with windows xp, vista and now windows 7. there is same problem i am facing at all after well usage of week. firefox takes very long time to open approx. 1 minute at first click. after refreshing computer when i click again, it becomes ready to use but meanwhile you re working firefox opens in another window perhaps for the first click. what is this please? i have reinstalled firefox but it is not fixing problem
    == Troubleshooting information ==
    how can firefox be ready for use at first click?

    Open Activity Monitor and kill this process - rapportd.
    Reinstalling OS X Without Erasing the Drive
    Boot to the Recovery HD: Restart the computer and after the chime press and hold down the COMMAND and R keys until the menu screen appears. Alternatively, restart the computer and after the chime press and hold down the OPTION key until the boot manager screen appears. Select the Recovery HD and click on the downward pointing arrow button.
    Reinstalling OS X Without Erasing the Drive
    Repair the Hard Drive and Permissions: Upon startup select Disk Utility from the main menu. Repair the Hard Drive and Permissions as follows.
    When the recovery menu appears select Disk Utility and press the Continue button. After Disk Utility loads select the Macintosh HD entry from the the left side list.  Click on the First Aid tab, then click on the Repair Disk button. If Disk Utility reports any errors that have been fixed, then re-run Repair Disk until no errors are reported. If no errors are reported click on the Repair Permissions button. Wait until the operation completes, then quit Disk Utility and return to the main menu.
    Reinstall OS X: Select Reinstall OS X and click on the Continue button.
    Note: You will need an active Internet connection. I suggest using Ethernet if possible because it is three times faster than wireless.
    Alternatively, see:
    Reinstall OS X Without Erasing the Drive
    Choose the version you have installed now:
    OS X Yosemite- Reinstall OS X
    OS X Mavericks- Reinstall OS X
    OS X Mountain Lion- Reinstall OS X
    OS X Lion- Reinstall Mac OS X
         Note: You will need an active Internet connection. I suggest using Ethernet
                     if possible because it is three times faster than wireless.

  • Retrieving free/busy information from the server takes very long time

    Hello, we are running Outlook 2010 32-bit in Windows 7 64.bit, and  have encountered a strange problem, whenever we want to book
    a resource (i.e. conference room) from Scheduling assistant, it takes very long time, sometimes even more than a minute to see the utilization of the room, it being stuck at "Updating schedule information. Retrieving free/busy information from the server"
    The interesting thing is that most newly deployed PCs exhibits this same behavior, while older machines with basically the same setup gets the availability information almost immediately.
    It is unclear whether this is a server setting or desktop issue, as all new Windows 7/Outlook machines that are deployed from the WDS-server exhibits the same slow behavior.
    Please advise any troubleshooting steps to investigate the very slow retrieval lookup of free/busy information from the Exchange server.

    Hi,
    Does this issue occur on OWA?
    If no, it means the issue is mainly related to the Outlook client.
    Regards,
    Simon Wu
    TechNet Community Support

  • Portege R100: FDISK and HDD format takes very long time

    I have Portege R100 and when I tried to run FDISK it take very long time to Create a DOS partion.
    After running FDISK I tried to do FORMAT the HD and is taking more than 6 hours to Format hard drive.
    After Format I tried to Load Win XP but it system just hanged with message Loading files...
    Could some one hep me out

    it's a known problem that FDisk cannot cope with the 1.8" hd in your R100
    Use the method described in this thread and you will succeed :
    http://forums.computers.toshiba-europe.com/forums/thread.jspa?threadID=19232

  • My os x mavericks got crashed accidentely while installing the windows 8 and I am trying to reinstall using recovery console, but its take very long time and forcing me to download OS X 8 from internet, is there any where can I get offline download of OS.

    My os x mavericks got crashed accidentely while installing the windows 8 and I am trying to reinstall using recovery console, but its take very long time and forcing me to download OS X mountain lion from internet, is there any where can I get offline download of OS file where I can install directely OS X Mavericks.

    Hi, original poster here. I did not realize this would generate more discussion so I never checked back. I still had my warranty, so I took it to the store and got it repaired. The original problem I had was a screen with this icon flashing when I attempted to boot it up:
    When I took it to the store, they told me that my computer was unable to communicate with the hard drive. I had this same problem three times in two months where this screen reappeared. Each time I went back to the store and they said the cause was different, but they were all hardware issues that physically made it impossible to communicate with the hard drive. After the third time, they simply replaced my laptop and I haven't had the same problem.
    So in short: The reason you can't reinstall or move anything when you encounter this screen appears to be because nothing can communicate with the hard drive in the first place. You can't reach the disk or anything on it. So I don't believe it's possible to do anything besides take it to a physical store and have it fixed.

  • Utlrp.sql takes very long (8 hours) while upgrade database from 9i to 10g

    1) Follow the note of 369693.1 ; and 362203.1 to upgrade database from 9.2.0.6 to 10.2.0.4 for e-business suite 11i (11.5.10.2)
    2) utlrp.sql takes very long (8 hours), even the job_queue_processes > 20.
    This is not acceptable for the upgrade in production environment which will take a long down time.
    Appreciate that any one can share tips on this, our database is about 400 GB, 4 CPU on production.

    in which our database has about 40,000 packages and 28,000 Virews. With this number of invalid objects, it is ok that utlrp.sql takes this time.
    using parallel worker of 4 for 2 CPUMake this 8 (4 * No. of CPUs).

  • Long run time with ORDER by clause

    Hi,
    I am having a query which is executing fine(in 2 mins) but when i am using order by clause in it, its taking around 13 mins.
    Can anyone suggest what could be th reason and how to execute the same query are get the ordered record?
    thanks.

    Sorry for not providing complet details.
    Database version id 10g.
    Below is the execution plan when using with order by clause.
    Execution Plan
    | Id  | Operation                              | Name              | Rows  | Bytes | Cost  |
    |   0 | SELECT STATEMENT                       |                   |     1 |   118 |  1538 |
    |   1 |  FILTER                                |                   |       |       |       |
    |   2 |   HASH JOIN                            |                   | 16657 |  1089K|    56 |
    |   3 |    TABLE ACCESS FULL                   | FILETYP           |     6 |    60 |     3 |
    |   4 |    TABLE ACCESS FULL                   | FILETYPSOURCEID   | 16657 |   927K|    52 |
    |   5 |   NESTED LOOPS                         |                   |     1 |    35 |     3 |
    |   6 |    TABLE ACCESS BY INDEX ROWID         | FILEWAREHOUSE     |     1 |    25 |     2 |
    |   7 |     INDEX RANGE SCAN                   | FILEWAREHOUSE_DX2 |     1 |       |     2 |
    |   8 |    TABLE ACCESS BY INDEX ROWID         | EXTFILE           |     1 |    10 |     1 |
    |   9 |     INDEX UNIQUE SCAN                  | PK_EXTFILE        |     1 |       |     1 |
    |  10 |  SORT ORDER BY                         |                   |     1 |   118 |  1538 |
    |  11 |   NESTED LOOPS                         |                   |     1 |   118 |  1534 |
    |  12 |    NESTED LOOPS OUTER                  |                   |     1 |   100 |  1533 |
    |  13 |     NESTED LOOPS OUTER                 |                   |     1 |    96 |  1532 |
    |  14 |      NESTED LOOPS                      |                   |     1 |    88 |  1531 |
    |  15 |       HASH JOIN                        |                   |     5 |   360 |  1524 |
    |  16 |        TABLE ACCESS BY INDEX ROWID     | RTXN              |     1 |    22 |     1 |
    |  17 |         NESTED LOOPS                   |                   |   117 |  5148 |  1518 |
    |  18 |          VIEW                          | VW_SQ_1           | 20869 |   448K|  1441 |
    |  19 |           HASH GROUP BY                |                   | 20869 |   427K|  1441 |
    |  20 |            FILTER                      |                   |       |       |       |
    |  21 |             TABLE ACCESS BY INDEX ROWID| RTXNSTATHIST      | 20869 |   427K|  1304 |
    |  22 |              INDEX RANGE SCAN          | RTXNSTATHIST_DX2  | 20869 |       |    29 |
    |  23 |          INDEX RANGE SCAN              | PK_RTXN           |     1 |       |     1 |
    |  24 |           NESTED LOOPS                 |                   |     1 |    24 |     3 |
    |  25 |            TABLE ACCESS BY INDEX ROWID | FILEWAREHOUSE     |     1 |    14 |     2 |
    |  26 |             INDEX RANGE SCAN           | FILEWAREHOUSE_DX2 |     1 |       |     2 |
    |  27 |            TABLE ACCESS BY INDEX ROWID | EXTFILE           |     1 |    10 |     1 |
    |  28 |             INDEX UNIQUE SCAN          | PK_EXTFILE        |     1 |       |     1 |
    |  29 |        TABLE ACCESS FULL               | RTXNTYP           |     1 |    28 |     5 |
    |  30 |       TABLE ACCESS BY INDEX ROWID      | RTXNSTATHIST      |     1 |    16 |     2 |
    |  31 |        INDEX RANGE SCAN                | PK_RTXNSTATHIST   |     1 |       |     1 |
    |  32 |      TABLE ACCESS BY INDEX ROWID       | NTWKNODE          |     1 |     8 |     1 |
    |  33 |       INDEX UNIQUE SCAN                | PK_NTWKNODE       |     1 |       |     1 |
    |  34 |     INDEX UNIQUE SCAN                  | PK_ORG            |     1 |     4 |     1 |
    |  35 |    TABLE ACCESS BY INDEX ROWID         | ACCT              |     1 |    18 |     1 |
    |  36 |     INDEX UNIQUE SCAN                  | PK_ACCT           |     1 |       |     1 |
    Below is the execution plan when running without ORDER BY clause...
    Execution Plan
    | Id  | Operation                             | Name              | Rows  | Bytes | Cost  |
    |   0 | SELECT STATEMENT                      |                   |     1 |   135 |  1537 |
    |   1 |  FILTER                               |                   |       |       |       |
    |   2 |   HASH JOIN                           |                   | 16657 |  1089K|    56 |
    |   3 |    TABLE ACCESS FULL                  | FILETYP           |     6 |    60 |     3 |
    |   4 |    TABLE ACCESS FULL                  | FILETYPSOURCEID   | 16657 |   927K|    52 |
    |   5 |   NESTED LOOPS                        |                   |     1 |    35 |     3 |
    |   6 |    TABLE ACCESS BY INDEX ROWID        | FILEWAREHOUSE     |     1 |    25 |     2 |
    |   7 |     INDEX RANGE SCAN                  | FILEWAREHOUSE_DX2 |     1 |       |     2 |
    |   8 |    TABLE ACCESS BY INDEX ROWID        | EXTFILE           |     1 |    10 |     1 |
    |   9 |     INDEX UNIQUE SCAN                 | PK_EXTFILE        |     1 |       |     1 |
    |  10 |  NESTED LOOPS                         |                   |     1 |   135 |  1534 |
    |  11 |   NESTED LOOPS OUTER                  |                   |     1 |   117 |  1533 |
    |  12 |    NESTED LOOPS OUTER                 |                   |     1 |   113 |  1532 |
    |  13 |     NESTED LOOPS                      |                   |     1 |   105 |  1531 |
    |  14 |      HASH JOIN                        |                   |     5 |   445 |  1524 |
    |  15 |       TABLE ACCESS FULL               | RTXNTYP           |     1 |    28 |     5 |
    |  16 |       TABLE ACCESS BY INDEX ROWID     | RTXN              |     1 |    22 |     1 |
    |  17 |        NESTED LOOPS                   |                   |   117 |  7137 |  1518 |
    |  18 |         VIEW                          | VW_SQ_1           | 20869 |   794K|  1441 |
    |  19 |          HASH GROUP BY                |                   | 20869 |   427K|  1441 |
    |  20 |           FILTER                      |                   |       |       |       |
    |  21 |            TABLE ACCESS BY INDEX ROWID| RTXNSTATHIST      | 20869 |   427K|  1304 |
    |  22 |             INDEX RANGE SCAN          | RTXNSTATHIST_DX2  | 20869 |       |    29 |
    |  23 |         INDEX RANGE SCAN              | PK_RTXN           |     1 |       |     1 |
    |  24 |          NESTED LOOPS                 |                   |     1 |    24 |     3 |
    |  25 |           TABLE ACCESS BY INDEX ROWID | FILEWAREHOUSE     |     1 |    14 |     2 |
    |  26 |            INDEX RANGE SCAN           | FILEWAREHOUSE_DX2 |     1 |       |     2 |
    |  27 |           TABLE ACCESS BY INDEX ROWID | EXTFILE           |     1 |    10 |     1 |
    |  28 |            INDEX UNIQUE SCAN          | PK_EXTFILE        |     1 |       |     1 |
    |  29 |      TABLE ACCESS BY INDEX ROWID      | RTXNSTATHIST      |     1 |    16 |     2 |
    |  30 |       INDEX RANGE SCAN                | PK_RTXNSTATHIST   |     1 |       |     1 |
    |  31 |     TABLE ACCESS BY INDEX ROWID       | NTWKNODE          |     1 |     8 |     1 |
    |  32 |      INDEX UNIQUE SCAN                | PK_NTWKNODE       |     1 |       |     1 |
    |  33 |    INDEX UNIQUE SCAN                  | PK_ORG            |     1 |     4 |     1 |
    |  34 |   TABLE ACCESS BY INDEX ROWID         | ACCT              |     1 |    18 |     1 |
    |  35 |    INDEX UNIQUE SCAN                  | PK_ACCT           |     1 |       |     1 |
    -------------------------------------------------------------------------------------------Edited by: user10754555 on Feb 5, 2010 6:02 PM

  • FOR UPDATE causing query to take very long to execute.. What can we do ??

    SELECT cell_data
    FROM csv_workfile
    WHERE cell_row = p_r
    AND cell_column = p_c
    FOR UPDATE;
    this is our query. it take very long to execute.
    wat can we do to get it working properly.
    this is real real urgent .
    Ragards

    Hi,
    first ask yourself if a SELECT FOR UPDATE is really necessary. If so, try to use an FOR UPDATE OF <attribute>. If there are many users accessing and updateing this table try NOWAIT Option. Your process will not be blocked on case of another lock. You will get error ORA-00054 and can do other things while waiting.
    Keep in mind that locks will only released after COMMIT.
    But remember to ask yourself. Row locking can be very time consuming. If you can avoid it.
    Bye,
    Holger

  • Failover of ASCS takes very long on a Windows Server 2008 Cluster

    Hello everybody,
    I have configured a ABAP SCS (NetWeaver 7.0) running on a Windows Server 2008 Cluster. The database runs on SQL Server 2008 which is also configured for use in the MSCS. The ASCS and the database run fine in the Cluster. So far so good.
    When I want to move the SAP Group which contains the ASCS from on node the other node, then the failover will take very long (approximately 2-3 minutes). The Service of the group will go offline in a few seconds, but the Instance needs about 1 minute to go offline and on the other node it needs more then one minute to become online.
    The failover of the databaseinstance will take only about 10 seconds.
    Have you got any ideas why the failover of the SAP Group will take so long?
    Thanks for your help in advance!
    Kind Regards,
    Wolfgang

    One minute would be somewhat long if you are running a faster server and just the ABAP environment. But I've seen ABAP/JAVA systems take up to 10 minutes to restart on a win 2005 clustered system.
    Have you looked through the developer traces?
    J. Haynes

Maybe you are looking for

  • How to create a table with 5 rows ready for user entry

    Hello All,   Can someone kindly advise on how can I achieve the above ? Everytime the table is created, the fields are not enabled for entry . I am trying to create a ytabel that consists of 8 columns. Of which 2 of them are date fields and another 2

  • A swf loader bug?

    It looks like I may have found a bug in the swf loader.  Before I submit this problem I want to make sure there is not something I'm missing in my code. I wrote this class to load a tutorial when the user first launches a sub application in a project

  • How do i down load my pictures in the best quality

    I want to download all my vacation photos from my thumb drive to my Mac.  It does not give me the option to download the pictures in the best possible quality.  How can I find that option and is it possible to use the best quality as a default when I

  • Render tab thumbnail (and output) is very different from the viewer in main color tab.

    I'm having a really strange issue with one of my projects. I can't seem to output my footage correctly as seen in the "color" tab in speedgrade. The result is much more blue in hue. Color tab main viewer: Render tab thumbnail: As you can see the thum

  • Animation software

    Can anyone suggest a good animation program for a beginner? The kind of work I have in mind is geometrical figures in transformation: one figure becomes another, either in 2D or 3D, or transitions from 2D to 3D. So, something to create the figures th