Event Ordering

I've got a button that I'm trying to attach 4 actions to under the click event. My problem is that on the first one or two clicks, it only executes two of the actions.
Here's what I'm trying to run from btnOpenWorkfile
_Checklist.addInstance(1);
parent.btnStatus.execEvent("click");
this.presence = "invisible";
xfa.host.importData();
btnStatus has the following script at the "click" event:
app.mailMsg(true, "", "", "", "Request", "Your request has been recieved.");
this.presence = "invisible";
The importData() and parent.btnStatus.execEvent("click") (and the action on that click) always happen right away. On the second click they happen again -and sometimes after a delay of several seconds the addInstance and this.presence = "invisible" actions happen. Sometimes those last two take another click.
Do certain actions always happen first/last? Is there a way to designate the order (and time delay) in which these actions occur? Or am I doing something completely wrong?
At one point I pulled some more of the scripting into extra invisible buttons to try to lighten the load on that one event -but it didn't work.
(In case it matters in someone's answer, the Checklist subform is in the same container as the parent subform of the btnOpenWorkfile.)
I really appreciate any help on this! I can create a workaround but it won't be as "clean" -and really, I really just want to know what I'm doing wrong!
Thanks,
Jennifer

Putting all actions on an event of an object in this case is a implementation issue. I suggest you to look at the business process flow in which which action is supposed to take place first.
For example: if the process is as follow:
1)You receive an order request from your client.
2)Send an confirmation email saying that you have gotten the request.
3)Open a new work file.
4)Import the submitted data.
5)Save and close.
If the above describe the flow of the process, then you might want to put the app.mailMsg() on the "initialize" event of your form. This way you will make sure the confirmation email is sent prior to starting a new workfile. Next, as soon as you send the email, your form is ready with the "button" that allow you to import the data.
Basically, the idea is to put your actions on different events of different form objects so you can control the process flow.

Similar Messages

  • Event Orders in CM25 not re-scheduling in correct sequence

    Hi, I have the following issue where I have a block of process orders dispatched which need to be rescheduled to a later date.  I can do this by selecting the group and dragging and dropping, but there are some event type (ZPE1) process orders which are used to capture changoevers in amongst standard process orders, and each time I reschedule the block, the event orders fall out of sequence and are pushed to the end.
    Would really appreciate any feedback on this as we are having to manually re-insert the event orders to the correct dates/times every time we reschedule

    Hi Alan
    Thanks for sharing the solution!
    BR
    Caetano

  • Event order in jTree

    Perhaps I post in wrong forum for my problem....
    http://forum.java.sun.com/thread.jspa?threadID=731052&tstart=0

    I don't understand what you want to say
    The Sun's response is a little light. In french : "Ils bottent en touche"
    "The developers shouldn't rely on event ordering because focus is now async"

  • Photo event order on iPhone not matching iPhoto Oder.  Help

    This has been driving me crazy.  I have all of my photos organized in events in iPhoto.  They show up in the right order.  When I go into iTunes I can see all of my events and they are still in the correct order.  But when I sync with my iPhone 4 or 5 events that are in the middle of the pack in iPhoto show up as the last albums in the photo albums on my iPhone.
    - I'm on Lion
    - I have new iPhone 4s
    - I'm using iPhoto '09 8.1.2

    , but when I copied them to iphone 6,
    How were you getting the photos onto your iPhone by copying them?

  • Confusing Event Order in Swing Thread

    hi,
    i've panel which contains a text field for entering number and a submit button
    sometimes new (updated) value can not be sent when i click the button (the previous value of the field is sent)
    in the debug mode, i see that sometimes AbstractButton.fireActionPerformed() is called (which gets the value of the field at that time and then submits) by event dispatch thread before JFormattedTextFiled.FocusLostHandler and JFormattedTextField.commitEdit() (which updates the value of the field) .
    i think jbutton event should have never been called before the text field loses the focus and updates its value
    any idea about the problem?
    i'm using xp-sp2 and java 1.6.0_06-b02

    @macrules2
    thanks, i'll take notice of your advice and please notice that it was my first post both at this forum and stackoverflow (which means i may have lack of some forum principles, sorry)
    @kevinaworkman
    if you really want to help someone, try to be less arrogant
    @BinaryDigit
    thanks for your reply. since it's part of an military project, i'm not allowed to give code samples (and all modifications are in the EDT).
    actually i'm interested in the cause of the problem rather than the solution
    there are two cases in the EventQueuehere are the events for case 1:
    MouseEvent (MOUSE_RELEASED)
    MouseEvent (MOUSE_CLICKED)
    InvocationEvent
    InvocationEvent
    InvocationEvent
    CausedFocusEvent (FOCUS_LOST; opposite: JButton; source: FormattedNumberField)
    CausedFocusEvent (FOCUS_GAINED; opposite: FormattedNumberField; source: JButton)
    InvocationEvent
    MouseEvent (MOUSE_MOVED)
    MouseEvent (MOUSE_EXITED)and here are the events for case 2:
    CausedFocusEvent (FOCUS_LOST; opposite: JButton; source: FormattedNumberField)
    CausedFocusEvent (FOCUS_GAINED; opposite: FormattedNumberField; source: JButton)
    InvocationEvent
    InvocationEvent
    MouseEvent (MOUSE_RELEASED)
    MouseEvent (MOUSE_CLICKED)
    InvocationEvent
    InvocationEvent
    MouseEvent (MOUSE_MOVED)
    MouseEvent (MOUSE_EXITED)maybe java does not guarantee the order of the events. if it's true it would be a common problem but it's an unusual and very rare situation. even i can't reproduce this problem in other gui panels. i wonder what may cause this problem.

  • [LV2013] Events ordering (mouse down vs. value changed) ?

    Hi,
    I've encountered a problem with my real-time behaving UI.
    The event distribution mechanism registers several events
    linked to various UI controls.
    Two of them are set this way :
    String control: value changed
    Tree control : mouse down
    The problem is that the String control is used both to display
    and modify values within the tree. Click an item, its name is
    displayed in the String control, modify the String control, the
    new value is reflected into the Tree control.
    The issue is when I edit a string inside the String control and
    click another item in the Tree Control, the first event fired is
    the Mouse down event on the Tree control. Then only the
    Value changed event is fired.
    What happens is that case is the value edited in the String
    control gets overwritten with the new clicked item's value,
    then it is saved inside the previous item's value.
    Is there a way to give a kind of priority on some events
    rather than others ?
    David Koch

    How is LabVIEW "nasty, nasty"?
    While it isn't doing what you want for your particular situation, it is doing exactly what it is supposed to do and is pretty logical.
    1.  You are in a control.
    2.  That control's value isn't update until you leave it.
    3.  Your method of leaving the control is by clicking on something else  (the mouse down).
    4.  The mouse down is what happens first, once LabVIEW detects the mouse down on another control, it then says, okay, now I need to take the focus from the first control and place it here.
    5.  It is the loss of focus from the first control that is what fires the value change event on the first control.
    So the precise order of events is:
    1.  Mouse Down event on control 2
    2.  Value change on control 1
    and that makes perfect sense.
    Your idea of reversing the order of events does not make sense to me.  I want LabVIEW to enqueue events as they happen, not rearrange them.  Supposed some other part of your VI is simultaneously issuing another value change event, or a user event.  Where should that event fall into the queue related to the other events you've had LabVIEW rearrange?
    From what I've seen from this message of yours and others in the past is you get quite upset when LabVIEW doesn't conform to your vision of the world and rather than figuring out how LabVIEW works and how to work with it, you try to fight how LabVIEW works and then take to the forums to complain.  If that is actually picture of you in your user icon, then that is exactly how I envision you while you are working on the computer.
     

  • Would the quality of my live HBO PPV EVENT order affected by a slowdown of my FIOS internet?

    I see that non-live On Demand streamed video are severely affected (animation are slow and the images are pixelating) but I'm not sure if a live sports broadcast will be affected.

    I believe that PPV is done using a QAM TV channel, not IP (like VOD).  If you are tuning to a channel for your PPV event then it has nothing to do with your Internet speed - it is carried on a totally different optical wavelength and not IP delivered.
    If a forum member gives an answer you like, give them the Kudos they deserve. If a member gives you the answer to your question, mark the answer as Accepted Solution so others can see the solution to the problem.

  • IMovie 10.0.2: how to order events by date?

    In the previous versions of iMovie it was possibile to have the events browser ordered by year and month.
    Now apparently only in alphabetical order, which to me is not useful.
    Any tips?
    Thanks, Alessandro

    Thanks Jim, but my problem is the order of events.
    Your answer confirms me that it's not possible to have events ordered alphabetically at the moment.
    Let's hope for an update.
    Regards

  • Syncing events in alphabetic order on my I pad as I have on my Mac

    I have organized my events in I photo in alphabetic order and have synced several times to my I pad but yet the event order on my I pad still does not match that of my Mac... (Is there a way to organize the events in alphabetic order on my I pad??)

    I don't have iPhoto on my iPad, so I can't help with that, but you must have looked at advice for a Mac computer? Maybe browse the iPhoto for iOS forum?
    https://discussions.apple.com/community/app_store/iphoto_for_ios?view=discussion s

  • Photo order within Events broken on iOS devices synchronized with iPhoto

    I have a Mac running OS X 10.8.2 with iPhoto 9.4.2 (710.42) and an iPhone and an iPad, both running iOS 6.0.1.
    In iPhoto, I import photos from a memory card that I use in various digital cameras and organize them by events. I view photos inside events ordered by date in ascending order. This is also the order that I want to see my synchronized photos on my iOS devices (and which I did see in the past). I sync my photos from iPhoto via iTunes by the option "Select albums, Events and Faces automatically".
    My most recently imported events cause some problems on my synchronized iOS devices. Now the photo order in the iOS "Photos" app is broken in the Events view. All photos that are taken in upright format appear BEHIND all photos taken in landscape format within an event. However, I want them to be sorted by date irrespective of the picture rotation, just as I see them in iPhoto on my Mac.
    Events that I had imported earlier (before ~ mid October) are still ordered as expected, just as I see them in iPhoto.
    According to this, the sorting of iPhoto should be preserved: http://support.apple.com/kb/HT4221
    I assume that photos of newly imported events are displayed on iOS devices in the order of modification date instead of creation date (EXIF) since iPhoto automatically rotates pictures that are taken in upright format by 90° and saves them as 'modified' files besides the 'original' files. I also assume that photos of my older events are displayed in correct order on my iPad since they had already been synchronized at a time when everything worked as expected. I also tried to re-synchronized these older events on my iPhone (to see what happens) by unchecking "Synchronize Photos" -> Apply -> checking "Synchronize Photos" -> Apply and on my iPhone, those older photos are also out of order now.
    Also note that my photos are ordered correctly in the "Albums -> Photo Library" view on iPhone and on the "Photos" tab on iPad. These are the same pictures as under Events. So the sorting is wrong in the Events view of newly imported events only.
    I know that there are some other discussions about the order of photos on iOS devices. I want this one to be specifically about problems with a synchronized iPhoto library. Anybody else experiencing this issue?

    Same issue. Ever since upgrading to iPhoto on my retina MBP to 9.4.2. Problem seen with BOTH my iPhone 5 on iOS 6.0.1 AND iPhone 4S on 5.1.1, so not an iOS issue. For me, it impacts both albums and events. In fact, sometimes you can't even see the event under iTunes->device->photo tab, until you exit iPhoto & iTunes and restart both with phone plugged in. There is a workaround for the album's mis-order: by manually sorting photos through dragging a photo to a new location within the album and then placing it back. However, this doesn't work for mis-ordered photos under events.  Right now, I just have to live with it....  I have even tried removing all photos, deleting iPod photo cache, and starting anew. Even 1 event with 30 photos have the same problem.....
    Really annoying as I like to see my event photos sorted by date.
    Somehow, such syncing problems always seem to occur EVERYTIME there's an iPhoto upgrade. Are apple's departments so siloed? Do they not work with one another to test a software before releasing it?
    Apple, please investigate and fix the issue ASAP!

  • Order of records - finding preceding and next records

    I have looked around a few forums for a similar question but I'm not really even sure what to search for!
    I have a table with some events, client names, timestamps for the event, and a category.  There are four steps in a cycle.
    CREATE TABLE #events (EventID INT IDENTITY(1, 1),
    Client VARCHAR(10),
    RecordTimestamp DATETIME,
    Step TINYINT)
    INSERT INTO #events (Client,
    RecordTimestamp,
    Step)
    VALUES ('Client A', '01-01-2014', 1),
    ('Client A', '01-02-2014', 2),
    ('Client A', '01-03-2014', 3),
    ('Client A', '01-04-2014', 4),
    ('Client A', '01-05-2014', 1),
    ('Client A', '01-06-2014', 2),
    ('Client B', '01-04-2014', 1),
    ('Client B', '01-06-2014', 2)
    SELECT *
    FROM #events
    ORDER BY RecordTimestamp, Client
    So let's assume that step 2 cannot start for a given client until step 1 completes, category 3 can't start until 2 completes, etc.  If today is 1/7/2014 we could say that Client A has completed one full cycle (steps 1-4), Client A is
    half way through cycle 2, and Client B is half way through its first cycle.
    I'm trying to identify all cycles that are in progress, meaning a step 1, 2, or 3 is present without a step 4 record (by client).  A query on the data above would return step 2 of Client A and Client B, both on 1/6.  I no longer care about the
    first cycle from Client A because another cycle has started.
    The table columns can be changed if necessary.  Can someone at least push me in the right direction?  It may involve a CTE and/or cursor, but I'm just not sure where to start.
    Thanks!

    >  I provided the example above as a slightly simplified version of what I'm working on
    Not good, you should provide a something closer to what you are working on.
    I read from your original post that "There are four steps in a cycle." and I see that you enumerate them 1 - 4 and also read that "So let's assume that step 2 cannot start
    for a given client until step 1 completes, category 3 can't start until 2 completes, etc.", so based on those facts I decided to enumerate all steps for each customer (rn1) and used the formula (rn - 1) / 4 to identify blocks
    of steps (groups of consecutive steps):
    row                                   rn1  (rn1 - 1) / 4  
    ('Client A', '01-01-2014', 1)  1    0
    ('Client A', '01-02-2014', 2)  2    0
    ('Client A', '01-03-2014', 3)  3    0
    ('Client A', '01-04-2014', 4)  4    0
    ('Client A', '01-05-2014', 1)  5    1
    ('Client A', '01-06-2014', 2)  6    1
    ('Client B', '01-04-2014', 1)  1    0
    ('Client B', '01-06-2014', 2)  2    0
    Then for each group we enumerate again (rn2) but this time in descending order (rn DESC) so the last step in each group will be the first row based on the new enumeration. Now we can select those rows where rn2 = 1 but only if the step number is not 4.
    If your data is different, for example steps numbers go from 10 to 40 in increments of 10 then you have to change the logic slightly:
    SET NOCOUNT ON;
    USE tempdb;
    GO
    CREATE TABLE #events (
    EventID INT IDENTITY(1, 1),
    Client VARCHAR(10),
    RecordTimestamp DATETIME,
    Step tinyint,
    UNIQUE CLUSTERED (Client, RecordTimestamp, Step)
    INSERT INTO #events (Client,
    RecordTimestamp,
    Step)
    VALUES
    ('Client A', '01-01-2014', 10),
    ('Client A', '01-02-2014', 20),
    ('Client A', '01-03-2014', 30),
    ('Client A', '01-04-2014', 40),
    ('Client A', '01-05-2014', 10),
    ('Client A', '01-06-2014', 20),
    ('Client B', '01-04-2014', 10),
    ('Client B', '01-06-2014', 20);
    SELECT *
    FROM #events
    ORDER BY RecordTimestamp, Client
    GO
    WITH C1 AS (
    SELECT
    ROW_NUMBER() OVER(PARTITION BY Client ORDER BY RecordTimestamp, Step) AS rn1
    FROM
    #events
    C2 AS (
    SELECT
    ROW_NUMBER() OVER(PARTITION BY Client, (rn1 - 1) / 4 ORDER BY rn1 DESC) AS rn2
    FROM
    C1
    SELECT
    EventID,
    Client,
    RecordTimestamp,
    Step
    FROM
    C2
    WHERE
    rn2 = 1 AND Step < 40;
    GO
    DROP TABLE #events;
    GO
    If you can have 8 steps and the maximum one is 80 then the logic should be:
    SET NOCOUNT ON;
    USE tempdb;
    GO
    CREATE TABLE #events (
    EventID INT IDENTITY(1, 1),
    Client VARCHAR(10),
    RecordTimestamp DATETIME,
    Step tinyint,
    UNIQUE CLUSTERED (Client, RecordTimestamp, Step)
    INSERT INTO #events (Client,
    RecordTimestamp,
    Step)
    VALUES
    ('Client A', '01-01-2014', 10),
    ('Client A', '01-02-2014', 20),
    ('Client A', '01-03-2014', 30),
    ('Client A', '01-04-2014', 40),
    ('Client A', '01-05-2014', 50),
    ('Client A', '01-06-2014', 60),
    ('Client A', '01-07-2014', 70),
    ('Client A', '01-08-2014', 80),
    ('Client A', '01-09-2014', 10),
    ('Client A', '01-10-2014', 20),
    ('Client B', '01-04-2014', 10),
    ('Client B', '01-06-2014', 20);
    SELECT *
    FROM #events
    ORDER BY RecordTimestamp, Client
    GO
    WITH C1 AS (
    SELECT
    ROW_NUMBER() OVER(PARTITION BY Client ORDER BY RecordTimestamp, Step) AS rn1
    FROM
    #events
    C2 AS (
    SELECT
    ROW_NUMBER() OVER(PARTITION BY Client, (rn1 - 1) / 8 ORDER BY rn1 DESC) AS rn2
    FROM
    C1
    SELECT
    EventID,
    Client,
    RecordTimestamp,
    Step
    FROM
    C2
    WHERE
    rn2 = 1 AND Step < 80;
    GO
    DROP TABLE #events;
    GO
    If you want to show the last non-completed group for each client and from there the first and last steps then try:
    SET NOCOUNT ON;
    USE tempdb;
    GO
    CREATE TABLE #events (
    EventID INT IDENTITY(1, 1),
    Client VARCHAR(10),
    RecordTimestamp DATETIME,
    Step tinyint
    INSERT INTO #events (Client,
    RecordTimestamp,
    Step)
    VALUES
    ('Client A', '01-01-2014', 10),
    ('Client A', '01-02-2014', 20),
    ('Client A', '01-03-2014', 30),
    ('Client A', '01-04-2014', 40),
    ('Client A', '01-05-2014', 50),
    ('Client A', '01-06-2014', 60),
    ('Client A', '01-07-2014', 70),
    ('Client A', '01-08-2014', 80),
    ('Client A', '01-09-2014', 10),
    ('Client A', '01-10-2014', 20),
    ('Client A', '01-11-2014', 30),
    ('Client B', '01-04-2014', 10),
    ('Client B', '01-06-2014', 20);
    SELECT *
    FROM #events
    ORDER BY RecordTimestamp, Client
    GO
    WITH C1 AS (
    SELECT
    ROW_NUMBER() OVER(PARTITION BY Client ORDER BY RecordTimestamp, Step) AS rn1
    FROM
    #events
    C2 AS (
    SELECT
    DENSE_RANK() OVER(PARTITION BY Client ORDER BY (rn1 - 1) / 8 DESC) AS grp,
    ROW_NUMBER() OVER(PARTITION BY Client, (rn1 - 1) / 8 ORDER BY rn1) AS rn2,
    ROW_NUMBER() OVER(PARTITION BY Client, (rn1 - 1) / 8 ORDER BY rn1 DESC) AS rn3
    FROM
    C1
    SELECT
    EventID,
    Client,
    RecordTimestamp,
    Step
    FROM
    C2
    WHERE
    grp = 1 AND 1 IN (rn2, rn3) AND Step < 80
    ORDER BY
    Client,
    EventID;
    GO
    DROP TABLE #events;
    GO
    If you check the execution plan you will notice several SORT operators which could yield poor performance. We could try using an intermediate table and adding a POC (partition / ordering / covering - idea from ITzik Ben-Gan) index to improve it.
    Does this help?
    AMB
    Some guidelines for posting questions...

  • Performance issue showing read by other session Event

    Hi All,
    we are having a severe performance issue in my database when we are running batch jobs.
    This was a new database(11.2.0.2) and we are testing the performance by running some batch jobs. These batch jobs included some inserts and updates.
    I am seeing read by other session in top 5 timed events and cache buffers chains in Latch Miss Sources section.
    Please help me to solve this out.
    Inst Num Startup Time    Release     RAC
    1 27-Feb-12 09:03 11.2.0.2.0  NO
    Platform                         CPUs Cores Sockets Memory(GB)
    Linux x86 64-bit                    8     8       8      48.00           
    Snap Id      Snap Time      Sessions Curs/Sess
    Begin Snap:      5605 29-Feb-12 03:00:27        63       4.5
      End Snap:      5614 29-Feb-12 12:00:47        63       4.3
       Elapsed:              540.32 (mins)
       DB Time:            1,774.23 (mins)
    Cache Sizes                       Begin        End
    ~~~~~~~~~~~                  ---------- ----------
                   Buffer Cache:     1,952M     1,952M  Std Block Size:        16K
               Shared Pool Size:     1,024M     1,024M      Log Buffer:    18,868K
    Load Profile              Per Second    Per Transaction   Per Exec   Per Call
    ~~~~~~~~~~~~         ---------------    --------------- ---------- ----------
          DB Time(s):                3.3                0.8       0.02       0.05
           DB CPU(s):                1.1                0.3       0.01       0.02
           Redo size:           55,763.8           13,849.3
       Logical reads:           23,906.6            5,937.4
       Block changes:              325.7               80.9
      Physical reads:              665.6              165.3
    Physical writes:               40.4               10.0
          User calls:               60.7               15.1
              Parses:               10.6                2.6
         Hard parses:                1.1                0.3
    W/A MB processed:                0.6                0.2
              Logons:                0.1                0.0
            Executes:              151.2               37.6
           Rollbacks:                0.0                0.0
        Transactions:                4.0
    Instance Efficiency Percentages (Target 100%)
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
                Buffer Nowait %:   99.94       Redo NoWait %:  100.00
                Buffer  Hit   %:   97.90    In-memory Sort %:  100.00
                Library Hit   %:   98.06        Soft Parse %:   90.16
             Execute to Parse %:   92.96         Latch Hit %:  100.00
    Parse CPU to Parse Elapsd %:   76.71     % Non-Parse CPU:   98.57
    Shared Pool Statistics        Begin    End
                 Memory Usage %:   89.38   87.96
        % SQL with executions>1:   97.14   95.15
      % Memory for SQL w/exec>1:   96.05   92.46
    Top 5 Timed Foreground Events
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
                                                               Avg
                                                              wait   % DB
    Event                                 Waits     Time(s)   (ms)   time Wait Class
    db file sequential read          14,092,706      65,613      5   61.6 User I/O
    DB CPU                                           34,819          32.7
    read by other session               308,534       1,260      4    1.2 User I/O
    direct path read                     97,454         987     10     .9 User I/O
    db file scattered read               71,870         910     13     .9 User I/O
    Host CPU (CPUs:    8 Cores:    8 Sockets:    8)
    ~~~~~~~~         Load Average
                   Begin       End     %User   %System      %WIO     %Idle
                    0.43      0.36      13.7       0.6       9.7      85.7
    Instance CPU
    ~~~~~~~~~~~~
                  % of total CPU for Instance:      13.5
                  % of busy  CPU for Instance:      94.2
      %DB time waiting for CPU - Resource Mgr:       0.0
    Memory Statistics
    ~~~~~~~~~~~~~~~~~                       Begin          End
                      Host Mem (MB):     49,152.0     49,152.0
                       SGA use (MB):      3,072.0      3,072.0
                       PGA use (MB):        506.5        629.1
        % Host Mem used for SGA+PGA:         7.28         7.53
    Time Model Statistics             
    -> Total time in database user-calls (DB Time): 106453.8s
    -> Statistics including the word "background" measure background process
       time, and so do not contribute to the DB time statistic
    -> Ordered by % or DB time desc, Statistic name
    Statistic Name                                       Time (s) % of DB Time
    sql execute elapsed time                            105,531.1         99.1
    DB CPU                                               34,818.8         32.7
    parse time elapsed                                      714.7           .7
    hard parse elapsed time                                 684.8           .6
    PL/SQL execution elapsed time                           161.9           .2
    PL/SQL compilation elapsed time                          44.2           .0
    connection management call elapsed time                  16.9           .0
    hard parse (sharing criteria) elapsed time               10.2           .0
    hard parse (bind mismatch) elapsed time                   9.4           .0
    sequence load elapsed time                                2.9           .0
    repeated bind elapsed time                                0.5           .0
    failed parse elapsed time                                 0.0           .0
    DB time                                             106,453.8
    background elapsed time                               1,753.9
    background cpu time                                      61.7
    Operating System Statistics        
    -> *TIME statistic values are diffed.
       All others display actual values.  End Value is displayed if different
    -> ordered by statistic type (CPU Use, Virtual Memory, Hardware Config), Name
    Statistic                                  Value        End Value
    BUSY_TIME                              3,704,415
    IDLE_TIME                             22,203,740
    IOWAIT_TIME                            2,517,864
    NICE_TIME                                      3
    SYS_TIME                                 145,696
    USER_TIME                              3,557,758
    LOAD                                           0                0
    RSRC_MGR_CPU_WAIT_TIME                         0
    VM_IN_BYTES                      358,813,045,760
    VM_OUT_BYTES                      29,514,830,848
    PHYSICAL_MEMORY_BYTES             51,539,607,552
    NUM_CPUS                                       8
    NUM_CPU_CORES                                  8
    NUM_CPU_SOCKETS                                8
    GLOBAL_RECEIVE_SIZE_MAX                4,194,304
    GLOBAL_SEND_SIZE_MAX                   1,048,586
    TCP_RECEIVE_SIZE_DEFAULT                  87,380
    TCP_RECEIVE_SIZE_MAX                   4,194,304
    TCP_RECEIVE_SIZE_MIN                       4,096
    TCP_SEND_SIZE_DEFAULT                     16,384
    TCP_SEND_SIZE_MAX                      4,194,304
    TCP_SEND_SIZE_MIN                          4,096
    Operating System Statistics -
    Snap Time           Load    %busy    %user     %sys    %idle  %iowait
    29-Feb 03:00:27      0.4      N/A      N/A      N/A      N/A      N/A
    29-Feb 04:00:35      1.4     11.9     11.2      0.6     88.1     14.3
    29-Feb 05:00:41      1.7     13.8     13.2      0.6     86.2     15.8
    29-Feb 06:00:48      1.5     14.0     13.5      0.6     86.0     12.3
    29-Feb 07:01:00      1.8     16.3     15.8      0.5     83.7     10.4
    29-Feb 08:00:12      2.6     23.2     22.5      0.6     76.8     12.6
    29-Feb 09:00:26      1.3     16.6     16.0      0.5     83.4      5.7
    29-Feb 10:00:33      1.2     13.8     13.3      0.5     86.2      2.0
    29-Feb 11:00:43      1.3     14.5     14.0      0.5     85.5      3.8
    29-Feb 12:00:47      0.4      4.9      4.2      0.7     95.1     10.6
    Foreground Wait Class              
    -> s  - second, ms - millisecond -    1000th of a second
    -> ordered by wait time desc, waits desc
    -> %Timeouts: value of 0 indicates value was < .5%.  Value of null is truly 0
    -> Captured Time accounts for         97.9%  of Total DB time     106,453.79 (s)
    -> Total FG Wait Time:            69,415.64 (s)  DB CPU time:      34,818.79 (s)
                                                                      Avg
                                          %Time       Total Wait     wait
    Wait Class                      Waits -outs         Time (s)     (ms)  %DB time
    User I/O                   14,693,843     0           69,222        5      65.0
    DB CPU                                                34,819               32.7
    Commit                         40,629     0              119        3       0.1
    System I/O                     26,504     0               57        2       0.1
    Network                     1,945,010     0               11        0       0.0
    Other                         125,200    99                4        0       0.0
    Application                     2,673     0                2        1       0.0
    Concurrency                     3,059     0                1        0       0.0
    Configuration                      31    19                0       15       0.0
    Foreground Wait Events            
    -> s  - second, ms - millisecond -    1000th of a second
    -> Only events with Total Wait Time (s) >= .001 are shown
    -> ordered by wait time desc, waits desc (idle events last)
    -> %Timeouts: value of 0 indicates value was < .5%.  Value of null is truly 0
                                                                 Avg
                                            %Time Total Wait    wait    Waits   % DB
    Event                             Waits -outs   Time (s)    (ms)     /txn   time
    db file sequential read      14,092,706     0     65,613       5    108.0   61.6
    read by other session           308,534     0      1,260       4      2.4    1.2
    direct path read                 97,454     0        987      10      0.7     .9
    db file scattered read           71,870     0        910      13      0.6     .9
    db file parallel read            35,001     0        372      11      0.3     .3
    log file sync                    40,629     0        119       3      0.3     .1
    control file sequential re       26,504     0         57       2      0.2     .1
    direct path read temp            14,499     0         49       3      0.1     .0
    direct path write temp            9,186     0         28       3      0.1     .0
    SQL*Net message to client     1,923,973     0          5       0     14.7     .0
    SQL*Net message from dblin        1,056     0          5       5      0.0     .0
    Disk file operations I/O          8,848     0          2       0      0.1     .0
    ASM file metadata operatio           36     0          2      54      0.0     .0
    SQL*Net break/reset to cli        2,636     0          1       1      0.0     .0
    ADR block file read                 472     0          1       1      0.0     .0
    os thread startup                     8     0          1      74      0.0     .0
    SQL*Net more data to clien       17,656     0          1       0      0.1     .0
    asynch descriptor resize        123,852   100          0       0      0.9     .0
    local write wait                    110     0          0       4      0.0     .0
    utl_file I/O                     55,635     0          0       0      0.4     .0
    log file switch (private s            8     0          0      52      0.0     .0
    cursor: pin S wait on X               2     0          0     142      0.0     .0
    enq: KO - fast object chec           13     0          0      20      0.0     .0
    PX Deq: Slave Session Stat          248     0          0       1      0.0     .0
    enq: RO - fast object reus           18     0          0      11      0.0     .0
    latch: cache buffers chain        2,511     0          0       0      0.0     .0
    latch: shared pool                  195     0          0       1      0.0     .0
    CSS initialization                   12     0          0       8      0.0     .0
    PX qref latch                        54   100          0       2      0.0     .0
    SQL*Net more data from cli          995     0          0       0      0.0     .0
    SQL*Net more data from dbl          300     0          0       0      0.0     .0
    kksfbc child completion               1   100          0      56      0.0     .0
    library cache: mutex X              244     0          0       0      0.0     .0
    PX Deq: Signal ACK RSG              124     0          0       0      0.0     .0
    undo segment extension                6   100          0       7      0.0     .0
    PX Deq: Signal ACK EXT              124     0          0       0      0.0     .0
    library cache load lock               3     0          0       9      0.0     .0
    ADR block file write                 45     0          0       1      0.0     .0
    CSS operation: action                12     0          0       2      0.0     .0
    reliable message                     28     0          0       1      0.0     .0
    CSS operation: query                 72     0          0       0      0.0     .0
    latch: row cache objects             14     0          0       1      0.0     .0
    enq: SQ - contention                 17     0          0       0      0.0     .0
    latch free                           32     0          0       0      0.0     .0
    buffer busy waits                    52     0          0       0      0.0     .0
    enq: PS - contention                 16     0          0       0      0.0     .0
    enq: TX - row lock content            6     0          0       1      0.0     .0
    SQL*Net message to dblink         1,018     0          0       0      0.0     .0
    cursor: pin S                        23     0          0       0      0.0     .0
    latch: cache buffers lru c            8     0          0       0      0.0     .0
    SQL*Net message from clien    1,923,970     0    944,508     491     14.7
    jobq slave wait                  66,732   100     33,334     500      0.5
    Streams AQ: waiting for me        6,481   100     32,412    5001      0.0
    wait for unread message on       32,858    98     32,411     986      0.3
    PX Deq: Execution Msg             1,448     0        190     131      0.0
    PX Deq: Execute Reply             1,196     0         74      62      0.0
    HS message to agent                 228     0          4      19      0.0
    single-task message                  42     0          4      97      0.0
    PX Deq Credit: send blkd            904     0          2       3      0.0
    PX Deq Credit: need buffer          205     0          1       3      0.0
    Foreground Wait Events            
    -> s  - second, ms - millisecond -    1000th of a second
    -> Only events with Total Wait Time (s) >= .001 are shown
    -> ordered by wait time desc, waits desc (idle events last)
    -> %Timeouts: value of 0 indicates value was < .5%.  Value of null is truly 0
                                                                 Avg
                                            %Time Total Wait    wait    Waits   % DB
    Event                             Waits -outs   Time (s)    (ms)     /txn   time
    PX Deq: Table Q Normal            4,291     0          1       0      0.0
    PX Deq: Join ACK                    124     0          0       1      0.0
    PX Deq: Parse Reply                 124     0          0       0      0.0
    KSV master wait                     256     0          0       0      0.0
    Latch Miss Sources                
    -> only latches with sleeps are shown
    -> ordered by name, sleeps desc
                                                         NoWait              Waiter
    Latch Name               Where                       Misses     Sleeps   Sleeps
    ASM map operation freeli kffmTranslate2                   0          2        0
    DML lock allocation      ktadmc                           0          2        0
    FOB s.o list latch       ksfd_allfob                      0          2        2
    In memory undo latch     ktiFlushMe                       0          5        0
    In memory undo latch     ktichg: child                    0          3        0
    PC and Classifier lists  No latch                         0          6        0
    Real-time plan statistic keswxAddNewPlanEntry             0         20       20
    SQL memory manager worka qesmmIRegisterWorkArea:1         0          1        1
    active service list      kswslogon: session logout        0         23       12
    active service list      kswssetsvc: PX session swi       0          6        1
    active service list      kswsite: service iterator        0          1        0
    archive process latch    kcrrgpll                         0          3        3
    cache buffers chains     kcbgtcr_2                        0      1,746      573
    cache buffers chains     kcbgtcr: fast path (cr pin       0      1,024    2,126
    cache buffers chains     kcbgcur_2                        0         60        8
    cache buffers chains     kcbchg1: kslbegin: bufs no       0         16        3
    cache buffers chains     kcbgtcr: fast path               0         14       20
    cache buffers chains     kcbzibmlt: multi-block rea       0         10        0
    cache buffers chains     kcbrls_2                         0          9       53
    cache buffers chains     kcbgtcr: kslbegin shared         0          8        1
    cache buffers chains     kcbrls_1                         0          7       84
    cache buffers chains     kcbgtcr: kslbegin excl           0          6       14
    cache buffers chains     kcbnew: new latch again          0          6        0
    cache buffers chains     kcbzgb: scan from tail. no       0          6        0
    cache buffers chains     kcbzwb                           0          5        8
    cache buffers chains     kcbgcur: fast path (shr)         0          3        0
    cache buffers chains     kcbget: pin buffer               0          3        0
    cache buffers chains     kcbzhngcbk2_1                    0          1        0
    cache buffers lru chain  kcbzgws                          0         19        0
    cache buffers lru chain  kcbo_link_q                      0          3        0
    call allocation          ksuxds                           0         14       10
    call allocation          ksudlp: top call                 0          2        3
    enqueue hash chains      ksqgtl3                          0          2        1
    enqueue hash chains      ksqrcl                           0          1        2
    enqueues                 ksqgel: create enqueue           0          1        0
    object queue header oper kcbo_unlink_q                    0          5        2
    object queue header oper kcbo_sw_buf                      0          2        0
    object queue header oper kcbo_link_q                      0          1        2
    object queue header oper kcbo_switch_cq                   0          1        2
    object queue header oper kcbo_switch_mq_bg                0          1        4
    parallel query alloc buf kxfpbalo                         0          1        1
    process allocation       ksucrp:1                         0          2        0
    process queue reference  kxfpqrsnd                        0          1        0
    qmn task queue latch     kwqmnmvtsks: delay to read       0          1        0
    redo allocation          kcrfw_redo_gen: redo alloc       0         17        0
    row cache objects        kqreqd: reget                    0          6        0
    row cache objects        kqrpre: find obj                 0          6       13
    row cache objects        kqrso                            0          2        0
    row cache objects        kqreqd                           0          1        2
    row cache objects        kqrpre: init complete            0          1        1
    shared pool              kghalo                           0        199      106
    shared pool              kghupr1                          0         39      109
    shared pool              kghfre                           0         18       19
    shared pool              kghalp                           0          7       29
    space background task la ktsj_grab_task                   0         21       27
    Mutex Sleep Summary                
    -> ordered by number of sleeps desc
                                                                             Wait
    Mutex Type            Location                               Sleeps    Time (ms)
    Library Cache         kglhdgn2 106                              338           12
    Library Cache         kgllkc1   57                              259           10
    Library Cache         kgllkdl1  85                              123           21
    Cursor Pin            kkslce [KKSCHLPIN2]                        70          286
    Library Cache         kglget2   2                                31            1
    Library Cache         kglhdgn1  62                               31            2
    Library Cache         kglpin1   4                                26            1
    Library Cache         kglpnal1  90                               18            0
    Library Cache         kglpndl1  95                               15            2
    Library Cache         kgllldl2 112                                6            0
    Library Cache         kglini1   32                                1            0
              -------------------------------------------------------------Thanks in advance.

    Hi,
    Thanks for reply.
    I provided one hour report.
    Inst Num Startup Time    Release     RAC
    1 27-Feb-12 09:03 11.2.0.2.0  NO
      Platform                         CPUs Cores Sockets Memory(GB)
    Linux x86 64-bit                    8     8       8      48.00
                  Snap Id      Snap Time      Sessions Curs/Sess
    Begin Snap:      5606 29-Feb-12 04:00:35        63       3.7
      End Snap:      5607 29-Feb-12 05:00:41        63       3.6
       Elapsed:               60.11 (mins)
       DB Time:              382.67 (mins)
    Cache Sizes                       Begin        End
    ~~~~~~~~~~~                  ---------- ----------
                   Buffer Cache:     1,952M     1,952M  Std Block Size:        16K
               Shared Pool Size:     1,024M     1,024M      Log Buffer:    18,868K
    Load Profile              Per Second    Per Transaction   Per Exec   Per Call
    ~~~~~~~~~~~~         ---------------    --------------- ---------- ----------
          DB Time(s):                6.4                0.8       0.03       0.03
           DB CPU(s):                1.0                0.1       0.00       0.00
           Redo size:           84,539.3           10,425.6
       Logical reads:           23,345.6            2,879.1
       Block changes:              386.5               47.7
      Physical reads:            1,605.0              197.9
    Physical writes:                7.1                0.9
          User calls:              233.9               28.9
              Parses:                4.0                0.5
         Hard parses:                0.1                0.0
    W/A MB processed:                0.1                0.0
              Logons:                0.1                0.0
            Executes:              210.9               26.0
           Rollbacks:                0.0                0.0
        Transactions:                8.1
    Instance Efficiency Percentages (Target 100%)
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
                Buffer Nowait %:   99.62       Redo NoWait %:  100.00
                Buffer  Hit   %:   95.57    In-memory Sort %:  100.00
                Library Hit   %:   99.90        Soft Parse %:   98.68
             Execute to Parse %:   98.10         Latch Hit %:   99.99
    Parse CPU to Parse Elapsd %:   32.08     % Non-Parse CPU:   99.90
    Shared Pool Statistics        Begin    End
                 Memory Usage %:   89.25   89.45
        % SQL with executions>1:   96.79   97.52
      % Memory for SQL w/exec>1:   95.67   96.56
    Top 5 Timed Foreground Events
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
                                                               Avg
                                                              wait   % DB
    Event                                 Waits     Time(s)   (ms)   time Wait Class
    db file sequential read           3,054,464      17,002      6   74.0 User I/O
    DB CPU                                            3,748          16.3
    read by other session               199,603         796      4    3.5 User I/O
    direct path read                     46,301         439      9    1.9 User I/O
    db file scattered read               21,113         269     13    1.2 User I/O
    Host CPU (CPUs:    8 Cores:    8 Sockets:    8)
    ~~~~~~~~         Load Average
                   Begin       End     %User   %System      %WIO     %Idle
                    1.45      1.67      13.2       0.6      15.8      86.2
    Instance CPU
    ~~~~~~~~~~~~
                  % of total CPU for Instance:      13.0
                  % of busy  CPU for Instance:      94.7
      %DB time waiting for CPU - Resource Mgr:       0.0
    Memory Statistics
    ~~~~~~~~~~~~~~~~~                       Begin          End
                      Host Mem (MB):     49,152.0     49,152.0
                       SGA use (MB):      3,072.0      3,072.0
                       PGA use (MB):        513.5        467.7
        % Host Mem used for SGA+PGA:         7.29         7.20
    Time Model Statistics            
    -> Total time in database user-calls (DB Time): 22960.5s
    -> Statistics including the word "background" measure background process
       time, and so do not contribute to the DB time statistic
    -> Ordered by % or DB time desc, Statistic name
    Statistic Name                                       Time (s) % of DB Time
    sql execute elapsed time                             22,835.9         99.5
    DB CPU                                                3,748.4         16.3
    parse time elapsed                                       15.4           .1
    hard parse elapsed time                                  14.3           .1
    PL/SQL execution elapsed time                             7.5           .0
    PL/SQL compilation elapsed time                           6.0           .0
    connection management call elapsed time                   1.6           .0
    sequence load elapsed time                                0.4           .0
    hard parse (sharing criteria) elapsed time                0.0           .0
    repeated bind elapsed time                                0.0           .0
    failed parse elapsed time                                 0.0           .0
    DB time                                              22,960.5
    background elapsed time                                 238.1
    background cpu time                                       4.9
    Operating System Statistics        
    -> *TIME statistic values are diffed.
       All others display actual values.  End Value is displayed if different
    -> ordered by statistic type (CPU Use, Virtual Memory, Hardware Config), Name
    Statistic                                  Value        End Value
    BUSY_TIME                                396,506
    IDLE_TIME                              2,483,725
    IOWAIT_TIME                              455,495
    NICE_TIME                                      0
    SYS_TIME                                  16,163
    USER_TIME                                380,052
    LOAD                                           1                2
    RSRC_MGR_CPU_WAIT_TIME                         0
    VM_IN_BYTES                       95,646,943,232
    VM_OUT_BYTES                       1,686,059,008
    PHYSICAL_MEMORY_BYTES             51,539,607,552
    NUM_CPUS                                       8
    NUM_CPU_CORES                                  8
    NUM_CPU_SOCKETS                                8
    GLOBAL_RECEIVE_SIZE_MAX                4,194,304
    GLOBAL_SEND_SIZE_MAX                   1,048,586
    TCP_RECEIVE_SIZE_DEFAULT                  87,380
    TCP_RECEIVE_SIZE_MAX                   4,194,304
    TCP_RECEIVE_SIZE_MIN                       4,096
    TCP_SEND_SIZE_DEFAULT                     16,384
    TCP_SEND_SIZE_MAX                      4,194,304
    TCP_SEND_SIZE_MIN                          4,096
    Operating System Statistics -
    Snap Time           Load    %busy    %user     %sys    %idle  %iowait
    29-Feb 04:00:35      1.4      N/A      N/A      N/A      N/A      N/A
    29-Feb 05:00:41      1.7     13.8     13.2      0.6     86.2     15.8
    Foreground Wait Class              
    -> s  - second, ms - millisecond -    1000th of a second
    -> ordered by wait time desc, waits desc
    -> %Timeouts: value of 0 indicates value was < .5%.  Value of null is truly 0
    -> Captured Time accounts for         97.6%  of Total DB time      22,960.46 (s)
    -> Total FG Wait Time:            18,651.75 (s)  DB CPU time:       3,748.35 (s)
                                                                      Avg
                                          %Time       Total Wait     wait
    Wait Class                      Waits -outs         Time (s)     (ms)  %DB time
    User I/O                    3,327,253     0           18,576        6      80.9
    DB CPU                                                 3,748               16.3
    Commit                         23,882     0               69        3       0.3
    System I/O                      1,035     0                3        3       0.0
    Network                       842,393     0                2        0       0.0
    Other                          10,120    99                0        0       0.0
    Configuration                       3     0                0       58       0.0
    Application                       264     0                0        1       0.0
    Concurrency                     1,482     0                0        0       0.0
    Foreground Wait Events            
    -> s  - second, ms - millisecond -    1000th of a second
    -> Only events with Total Wait Time (s) >= .001 are shown
    -> ordered by wait time desc, waits desc (idle events last)
    -> %Timeouts: value of 0 indicates value was < .5%.  Value of null is truly 0
                                                                 Avg
                                            %Time Total Wait    wait    Waits   % DB
    Event                             Waits -outs   Time (s)    (ms)     /txn   time
    db file sequential read       3,054,464     0     17,002       6    104.5   74.0
    read by other session           199,603     0        796       4      6.8    3.5
    direct path read                 46,301     0        439       9      1.6    1.9
    db file scattered read           21,113     0        269      13      0.7    1.2
    log file sync                    23,882     0         69       3      0.8     .3
    db file parallel read             4,727     0         68      14      0.2     .3
    control file sequential re        1,035     0          3       3      0.0     .0
    SQL*Net message to client       840,792     0          2       0     28.8     .0
    direct path read temp                95     0          2      18      0.0     .0
    local write wait                     79     0          0       4      0.0     .0
    Disk file operations I/O            870     0          0       0      0.0     .0
    ASM file metadata operatio            4     0          0      50      0.0     .0
    log file switch (private s            3     0          0      58      0.0     .0
    ADR block file read                  36     0          0       3      0.0     .0
    enq: RO - fast object reus            5     0          0      16      0.0     .0
    latch: cache buffers chain        1,465     0          0       0      0.1     .0
    SQL*Net break/reset to cli          256     0          0       0      0.0     .0
    asynch descriptor resize         10,059   100          0       0      0.3     .0
    SQL*Net more data to clien        1,510     0          0       0      0.1     .0
    enq: KO - fast object chec            3     0          0       8      0.0     .0
    SQL*Net more data from cli           91     0          0       0      0.0     .0
    latch: shared pool                   14     0          0       0      0.0     .0
    ADR block file write                  5     0          0       1      0.0     .0
    reliable message                      8     0          0       0      0.0     .0
    direct path write temp                1     0          0       2      0.0     .0
    SQL*Net message from clien      840,794     0     68,885      82     28.8
    jobq slave wait                   7,365   100      3,679     499      0.3
    Streams AQ: waiting for me          721   100      3,605    5000      0.0
    wait for unread message on        3,648    98      3,603     988      0.1
    KSV master wait                      20     0          0       0      0.0
    Background Wait Events            
    -> ordered by wait time desc, waits desc (idle events last)
    -> Only events with Total Wait Time (s) >= .001 are shown
    -> %Timeouts: value of 0 indicates value was < .5%.  Value of null is truly 0
                                                                 Avg
                                            %Time Total Wait    wait    Waits   % bg
    Event                             Waits -outs   Time (s)    (ms)     /txn   time
    log file parallel write          29,353     0         83       3      1.0   34.8
    db file parallel write            5,753     0         17       3      0.2    6.9
    db file sequential read           1,638     0         15       9      0.1    6.1
    control file sequential re        5,142     0         13       2      0.2    5.4
    os thread startup                   140     0          8      58      0.0    3.4
    control file parallel writ        1,440     0          8       6      0.0    3.4
    log file sequential read            304     0          8      26      0.0    3.3
    db file scattered read              214     0          2       9      0.0     .8
    ASM file metadata operatio        1,199     0          1       1      0.0     .3
    direct path write                    35     0          0       6      0.0     .1
    direct path read                     41     0          0       5      0.0     .1
    kfk: async disk IO                    6     0          0       9      0.0     .0
    Disk file operations I/O          1,266     0          0       0      0.0     .0
    ADR block file read                  16     0          0       2      0.0     .0
    read by other session                 3     0          0       8      0.0     .0
    Log archive I/O                       2     0          0      10      0.0     .0
    log file sync                         3     0          0       5      0.0     .0
    asynch descriptor resize            341   100          0       0      0.0     .0
    CSS initialization                    1     0          0       6      0.0     .0
    log file single write                 4     0          0       1      0.0     .0
    latch: redo allocation                3     0          0       1      0.0     .0
    ADR block file write                  5     0          0       1      0.0     .0
    LGWR wait for redo copy              45     0          0       0      0.0     .0
    CSS operation: query                  6     0          0       0      0.0     .0
    CSS operation: action                 1     0          0       1      0.0     .0
    SQL*Net message to client           420     0          0       0      0.0     .0
    rdbms ipc message                47,816    39     61,046    1277      1.6
    DIAG idle wait                    7,200   100      7,200    1000      0.2
    Space Manager: slave idle         1,146    98      5,674    4951      0.0
    class slave wait                    284     0      3,983   14026      0.0
    dispatcher timer                     61   100      3,660   60006      0.0
    Streams AQ: qmn coordinato          258    50      3,613   14003      0.0
    Streams AQ: qmn slave idle          130     0      3,613   27789      0.0
    Streams AQ: waiting for ti            7    71      3,608  515430      0.0
    wait for unread message on        3,605   100      3,606    1000      0.1
    pmon timer                        1,201   100      3,604    3001      0.0
    smon timer                           15    73      3,603  240207      0.0
    ASM background timer                754     0      3,602    4777      0.0
    shared server idle wait             120   100      3,601   30006      0.0
    SQL*Net message from clien          554     0          4       7      0.0
    KSV master wait                     101     0          0       2      0.0
    Wait Event Histogram              
    -> Units for Total Waits column: K is 1000, M is 1000000, G is 1000000000
    -> % of Waits: value of .0 indicates value was <.05%; value of null is truly 0
    -> % of Waits: column heading of <=1s is truly <1024ms, >1s is truly >=1024ms
    -> Ordered by Event (idle events last)
                                                        % of Waits
                               Total
    Event                      Waits  <1ms  <2ms  <4ms  <8ms <16ms <32ms  <=1s   >1s
    ADR block file read           52  73.1   1.9   9.6  13.5               1.9
    ADR block file write          10 100.0
    ADR file lock                 12 100.0
    ARCH wait for archivelog l     3 100.0
    ASM file metadata operatio  1203  97.3    .5    .7    .3    .2          .9
    CSS initialization             1                   100.0
    CSS operation: action          1       100.0
    CSS operation: query           6  83.3  16.7
    Disk file operations I/O    2118  95.4   4.5    .1
    LGWR wait for redo copy       45 100.0
    Log archive I/O                2                         100.0
    SQL*Net break/reset to cli   256  99.6    .4
    SQL*Net message to client  839.9 100.0    .0
    SQL*Net more data from cli    91 100.0
    SQL*Net more data to clien  1503 100.0
    asynch descriptor resize   10.4K 100.0
    buffer busy waits              2 100.0
    control file parallel writ  1440   5.7  35.1  24.0  16.3  12.0   5.5   1.5
    control file sequential re  6177  69.4   7.5   5.9   8.1   7.1   1.7    .3
    db file parallel read       4727   1.7   3.2   3.2  10.1  46.6  33.3   1.8
    db file parallel write      5755  42.3  21.3  18.6  11.2   4.6   1.4    .5
    db file scattered read     21.5K   8.4   4.3  11.9  18.9  26.3  25.3   4.9
    db file sequential read    3053.  28.7  15.1  11.1  17.9  21.5   5.4    .3    .0
    direct path read           46.3K   9.9   8.8  18.5  21.7  22.8  15.7   2.7
    direct path read temp         95               9.5   9.5  23.2  49.5   8.4
    direct path write             35  11.4  31.4  17.1  22.9  11.4   2.9   2.9
    direct path write temp         1       100.0
    enq: KO - fast object chec     3                    66.7  33.3
    enq: RO - fast object reus     5  20.0              20.0  20.0  20.0  20.0
    kfk: async disk IO             6  50.0  16.7              16.7        16.7
    latch free                     3 100.0
    latch: cache buffers chain  1465 100.0
    latch: cache buffers lru c     1 100.0
    latch: object queue header     2 100.0
    latch: redo allocation         3  33.3  33.3  33.3
    latch: row cache objects       2 100.0
    latch: shared pool            15  93.3   6.7
    local write wait              79        35.4  34.2  21.5   8.9
    log file parallel write    29.4K  47.8  21.7  11.9   9.9   6.8   1.6    .3
    log file sequential read     304   6.3   3.0   3.6  10.2  23.4  24.3  29.3
    log file single write          4  25.0  75.0
    log file switch (private s     3                                     100.0
    log file sync              23.9K  40.9  28.0  12.9   9.7   6.7   1.5    .3
    os thread startup            140                                     100.0
    read by other session      199.6  37.1  19.9  12.9  13.1  13.8   3.1    .2
    reliable message               8 100.0
    ASM background timer         755   2.9    .4    .1    .1    .3    .1    .3  95.8
    DIAG idle wait              7196                                     100.0
    KSV master wait              121  88.4   2.5   3.3   2.5    .8    .8   1.7
    SQL*Net message from clien 840.1  97.1   1.8    .5    .2    .2    .1    .0    .1
    Space Manager: slave idle   1147    .1                                  .5  99.4
    Streams AQ: qmn coordinato   258  49.6                .4                    50.0
    Streams AQ: qmn slave idle   130    .8                                      99.2
    Streams AQ: waiting for me   721                                           100.0
    Streams AQ: waiting for ti     7  28.6                                42.9  28.6
    class slave wait             283  39.9   2.5   2.5   3.5   4.9   9.2  15.2  22.3
    dispatcher timer              60                                           100.0
    jobq slave wait             7360    .0    .0    .0                    99.9
    pmon timer                  1201                                           100.0
    rdbms ipc message          47.8K   2.7  31.6  17.4   1.1   1.1    .9  20.9  24.3
    Wait Event Histogram               DB/Inst: I2KPROD/I2KPROD  Snaps: 5606-5607
    -> Units for Total Waits column: K is 1000, M is 1000000, G is 1000000000
    -> % of Waits: value of .0 indicates value was <.05%; value of null is truly 0
    -> % of Waits: column heading of <=1s is truly <1024ms, >1s is truly >=1024ms
    -> Ordered by Event (idle events last)
                                                        % of Waits
                               Total
    Event                      Waits  <1ms  <2ms  <4ms  <8ms <16ms <32ms  <=1s   >1s
    shared server idle wait      120                                           100.0
    smon timer                    16                                       6.3  93.8
    wait for unread message on  7250                                  .1  99.9
    Latch Miss Sources                
    -> only latches with sleeps are shown
    -> ordered by name, sleeps desc
                                                         NoWait              Waiter
    Latch Name               Where                       Misses     Sleeps   Sleeps
    In memory undo latch     ktichg: child                    0          1        0
    active service list      kswslogon: session logout        0          2        0
    cache buffers chains     kcbgtcr_2                        0      1,123      483
    cache buffers chains     kcbgtcr: fast path (cr pin       0        496    1,131
    cache buffers chains     kcbrls_2                         0          5        6
    cache buffers chains     kcbgcur_2                        0          4        0
    cache buffers chains     kcbgtcr: fast path               0          3        1
    cache buffers chains     kcbzwb                           0          2        4
    cache buffers chains     kcbchg1: kslbegin: bufs no       0          1        0
    cache buffers chains     kcbnew: new latch again          0          1        0
    cache buffers chains     kcbrls_1                         0          1        6
    cache buffers chains     kcbzgb: scan from tail. no       0          1        0
    cache buffers lru chain  kcbzgws                          0          1        0
    object queue header oper kcbo_switch_cq                   0          1        0
    object queue header oper kcbo_switch_mq_bg                0          1        2
    redo allocation          kcrfw_redo_gen: redo alloc       0          3        0
    row cache objects        kqrpre: find obj                 0          1        1
    row cache objects        kqrso                            0          1        0
    shared pool              kghalo                           0         13        3
    shared pool              kghupr1                          0          4       15
    shared pool              kghalp                           0          1        0
    space background task la ktsj_grab_task                   0          2        2
              -------------------------------------------------------------

  • Photos not syncing in order

    The photos I want loaded to my ipod are not syncing in the same order they are in the file on my computer. I have tried renaming them in the order I want them and as far as I can tell they aren't loading based on file size, or the date they were created either. Can anyone tell me how to get my pictures to load to my Ipod in the same order I have them in on my computer?

    I have just read the article.
    "If you are using iPhoto for Mac OS X, your photos automatically sort on your device in the same order they are sorted in iPhoto or Aperture. Changes made to the sorting of your pictures in your iPhoto or Aperture albums and events will be reflected on the device after syncing."
    Well I am using OS X on my MacBook and the photos from iPhoto do not sync on my iPad in the correct event order.
    Where do we go from here?

  • IPhoto browser events by date

    How do I set the Aperture iPhoto browser to sort events by date?
    I'm new to Aperture 3 trial. I have a large iPhoto library from which I want to import an event. I keep the iPhoto events ordered by date. The Aperture iPhoto browser orders events by name. Over the years my naming conventions have changed. My earlier events had names 2001-11-15-name. Since iPhoto started to sort events by date, names started to reflect the contents rather the dates. Still there are many, many events and sorting them by name is not helpful to me at all. It could just as well be random.

    Sorting can be done by: Date, Rating, Label, Version Name, Keyword, File size, Pixel Size, Manual, and in Ascending or Descending order. You will see a small label at the top of the Browser which in your case is possibly says Version Name. Click on the R/H side of the label box to show all options. Allan

  • Can't move photo order manually

    Inside an Event the sort order for "manually" doesn't work. It is fine for the Events order but I can't move a photo order inside an event.
    Help. Thanks,
    Larry

    Larry
    There is no help for this. Events are organised on a strict date and time basis. You can edit the time of the pics (Photos -> Adjust date and time) or, better still, use Albums.
    Remember, Albums are much more flexible than events, you can structure them any way you want, and as they simply refer to the files in the Library they take no disk space.
    Regards
    TD

Maybe you are looking for

  • Need a VI conversion from LV 3.0.1-- 6.1

    If someone could download the ni drivers for the 6B series equipment and convert them to 6.1/6.0 I would greatly appreicate it. They're actually advertised as version 6.x and 7 drivers, but that's a bit much of an error. Here's the link.

  • Kernel Panic with Stripes

    I've got a 3 year old 15" macbook pro that went into Kernel Panic with Stripes today. There was nothing plugged in except for a power supply. My wife said it was in sleep mode and then she opened it up and displayed the following screen. /___sbsstati

  • 9.0.2 IDS Install Failure

    I have tried installing 9.0.2 IDS on both Slackware 9.1 and SuSE 9.0 with the same results. It gets to the linking section and dies on the error: 'Error in invoking target install of makefile ....ins_plsql.mk' I have tried Werner's LD_SELF_CONTAINED

  • Integration R/3 4.7 -Transaction in EP 6.0 SP2 Hotfix 4 is not working !

    Hello guys, I think I really need your help. I'll working since last week on Installation of SAP EP 6.0 SP2 hotfix 4, Installed Unification Server and for R/3 too. Installed Business Packages ESS and MSS, and now I can't connect to SAP R/3 thru Suppo

  • How to create index for articles&products in ATG+Endeca application?

    Hi. I'm novice in Endeca. How to create ATG+Endeca application in which exists search by articles (created in Experience Manager) and by products (from BCC ATG). And how to index together products and articles? Where can I read about it? Thanks.