Problem beginning a process with a pick

Hi,
I'm using the BPM suite v10.1.2.0.2.
The following process, instantiated by a pick with two onMessage, doesn't function.
You can find here the useful bpel code :
<partnerLink myRole="BPELProcess1Provider" name="PartnerLink_1" partnerLinkType="client:BPELProcess1"/>
<partnerLink myRole="BPELProcess1Provider2" name="PartnerLink_2" partnerLinkType="client:BPELProcess2"/>
<variable name="variable1" messageType="client:BPELProcess1RequestMessage"/>
<variable name="variable2" messageType="client:BPELProcess1RequestMessage2"/>
<pick name="Pick_1" createInstance="yes">
<onMessage portType="client:BPELProcess11" operation="initiate1" variable="variable1" partnerLink="PartnerLink_1">
<wait name="Wait_1" for="'PT5S'"/>
</onMessage>
<onMessage portType="client:BPELProcess12" operation="initiate2" variable="variable2" partnerLink="PartnerLink_2">
<wait name="Wait_2" for="'PT5S'"/>
</onMessage>
</pick>
and here is the WSDL code :
<portType name="BPELProcess11">
<operation name="initiate1">
<input message="client:BPELProcess1RequestMessage"/>
</operation>
</portType>
<portType name="BPELProcess12">
<operation name="initiate2">
<input message="client:BPELProcess1RequestMessage2"/>
</operation>
</portType>
<plnk:partnerLinkType name="BPELProcess1">
<plnk:role name="BPELProcess1Provider">
<plnk:portType name="client:BPELProcess11"/>
</plnk:role>
</plnk:partnerLinkType>
<plnk:partnerLinkType name="BPELProcess2">
<plnk:role name="BPELProcess1Provider2">
<plnk:portType name="client:BPELProcess12"/>
</plnk:role>
</plnk:partnerLinkType>
If I Try to introspect the call of 'intiate1' with a HTML form on the BPM server, I get the following error message :
Unfound operation in the portType. The operation "initiate1" cannot be found in the portType "{http://xmlns.oracle.com/BPELProcess1}BPELProcess12". Check if the "initiate1" operation exists.
The other branch is working fine.
I think that this is an Oracle Bug : the server always looks after the same branch.
Mathieu Lamarque

I think it is a bug. It works fine with one pick, but does not with two. Non-Oracle Bpel servers do not have this issue..
Is there any solution/workaround for this?
Anil

Similar Messages

  • The problem I am having with Lync picking up my schedule

    The problem I am having with Lync picking up my schedule
    The problem I then have with getting Lync meetings to work as a result

    For more information how Exchange Autodiscover process works for Lync vs Outlook you can see my blogpost
    Autodiscover for Exchange Webservices by Lync impacts Exchange Deployments
    http://www.pro-lync.be/blogs/lync2013/archive/2013/10/30/autodiscover-for-exchange-webservices-by-lync-impacts-exchange-deployments.aspx
    - Belgian Unified Communications Community : http://www.pro-lync.be - MCM/MVP/MCT

  • How to test BPEL Process that starts with a pick consuming a JMS message

    Hi,
    We are using App Server v 10.1.3.3.0 and attempting to test a BPEL process which starts with a pick operation which is awaiting a JMS message on a specific queue.
    We are using the Oracle JMS adapter to achieve this.
    Is there any way in which this particular configuration can be easily tested using the BPEL testing framework? I have problems when I write the first initiate XML statement in my test case (stack trace below)
    <2011-01-27 10:23:47,028> <ERROR> <ProvisioningInterface.collaxa.cube.bpeltest> test run failed!
    ORABPEL-20011
    Instance initiation error.
    An error occurred while launching an instance for suite "BasicTest", test "baseline.xml".
    Please examine the log file for details or contact the system administrator.
    at com.collaxa.cube.engine.test.BPELTestRunManager.initiate(BPELTestRunManager.java:218)
    at com.collaxa.cube.ejb.impl.BPELTestBean.runSuites(BPELTestBean.java:625)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    Unfortunately, there are no further details or any example I can see which simulate the kind of setup I have for my test.
    Any help much appreciated,
    Kind Regards,
    Colin.

    Hi,
    I assume you mean the JMS example under the $OH BPEL examples area. Unfortunately, this only shows how to get a BPEL process kicked off by awaiting a JMS message - but there is no test code there! There are specific examples which show off the testing framework facilities but it appears that all the examples which use async type of interactions are in the middle of a process which is kicked off by a normal synchronous client interaction.
    Any further help much appreciated.
    Colin.

  • Problem initiating process with multiple operations using HTTP/SOAP

    Hi,
    I have defined a process which has multiple operations. My process starts with a pick activity containing onMessage branches for each possible operation. When I initiate this service using the BPEL console, I choose one of the operations and everything works fine.
    However, when I initiate this process using an HTTP/SOAP web service call using JMeter, always the first branch is executed regardless of the message I send.
    My operations are document/literal. Due to some restrictions, I cannot define a SOAPAction for the operations. Could this be the problem? Is there a workaround for this? If this is not the problem, what could be the cause?
    I'm using version 10.1.2.1.
    Any help will be appreciated. Thanks in advance..

    hi i am using 10.1.3 and still i can not initiate a process with multiple operations. Is there anybody to tell if pick activity works fine and if there are some points to consider?
    If there is a problem is there any solution to make a process with multiple operations?

  • Problem by BPEL process compilation with JDeveloper

    Hi,
    I don't quite know whether my problem is in the JDeveloper forum or Oracle Process Manager one.
    I am currently trying to execute a process, with dynamic invocation and dynamic management capabilities, but I won't go into technical details. In the WSDL Definition for the process I have defined 2 partnerLinkTypes - one for the standard synchronous request/response (receive-reply) and one for my management port (asynchronous receive).
    The end of the WSDL Definition is as follows:
    <portType name="ConfigurationPort">
    <operation name="ConfigurationChanged">
    <input message="client:ConfigMessage"/>
    </operation>
    </portType>
    <portType name="DynamicDBServiceProcess">
    <operation name="process">
    <input message="client:DynamicDBServiceProcessRequestMessage"/>
    <output message="client:DynamicDBServiceProcessResponseMessage"/>
    </operation>
    </portType>
    <plnk:partnerLinkType name="DynamicDBServiceProcess">
    <plnk:role name="DynamicDBServiceProcessProvider">
    <plnk:portType name="client:DynamicDBServiceProcess"/>
    </plnk:role>
    </plnk:partnerLinkType>
    <plnk:partnerLinkType name="ConfigPartner">
    <plnk:role name="Reconfigure">
    <plnk:portType name="client:ConfigurationPort"/>
    </plnk:role>
    <plnk:role name="ReconfigureResponse">
    <plnk:portType name="client:ConfigurationPort"/>
    </plnk:role>
    </plnk:partnerLinkType>
    The JDeveloper BPEL compiler is supposed to generate the binding and service tags for my abstract portTypes, but the binding and service for my ConfigurationPort are somehow wrong generated:
    <binding name="DynamicDBServiceProcessBinding" type="tns:DynamicDBServiceProcess">
    <soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
    <operation name="process">
    <soap:operation style="document" soapAction="process"/>
    <input>
    <soap:body use="literal"/>
    </input>
    <output>
    <soap:body use="literal"/>
    </output>
    </operation>
    </binding>
    <binding name="ConfigurationPortBinding" type="tns:ConfigurationPort">
    <soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
    <operation name="ConfigurationChanged">
    <soap:operation style="document" soapAction="ConfigurationChanged"/>
    <input>
    <soap:header message="tns:WSARelatesToHeader" part="RelatesTo" use="literal" encodingStyle=""/>
    <soap:body use="literal"/>
    </input>
    <output>
    <soap:body use="literal"/>
    </output>
    </operation>
    </binding>
    <service name="DynamicDBServiceProcess">
    <port name="DynamicDBServiceProcessPort" binding="tns:DynamicDBServiceProcessBinding">
    <soap:address location="http://I71NB60:9700/orabpel/default/DynamicDBServiceProcess/2.4"/>
    </port>
    </service>
    <service name="ConfigurationPortService">
    <port name="ConfigurationPortPort" binding="tns:ConfigurationPortBinding">
    <soap:address location="http://set.by.caller"/>
    </port>
    </service>
    I tried to find some configuration property for the project in order to properly modify the generation of my soap:address location (it surely isn't http://set.by.caller/). Nevertheless the process compiles fine and is successfully deployed, but at runtime an exception is generated because of "java.sql.SQLException: [POL-3221] Null-Schl?ssel in prim?rem Index" (trying to insert a NULL key in the primary Index). Has anyone know how to tune my project (or compiler) settings in order to generate a proper binding and service?
    Best regards,
    Genadi Genov

    Try posting on the BPEL forum BPEL

  • Problem with People Picker field in sharepoint 2013 list

    hi friends
    i have a problem with people picker
    default newitem.aspx
      custom NewItem.aspx
    why the selection option of the people piker is changing
    how can i get the default functionality in custom page
    please help me

    Hello malli.share,
    try to copy source code from newitem.aspx to custom_newitem.aspx (in SPD you can edit custom_newitem.aspx in advanced mode and paste the code).
    Regards,
    Alexander

  • When I make a project in iDVD'09, there are sometimes green blocs with points flickering in some scenes of my iMovie-film. In iMovie there is no problem with this film, but the problem begins by exporting to iDVD and making a project there.

    When I make a project in iDVD'09, there are sometimes - at voluntary moments - green blocs with points flickering in some scenes of my iMovie-film.
    In i-Movie there is no problem with  this film, but the problem begins by exporting to iDVD and making there a project.
    Who can help me, then I cann't find everything about this in any forum?

    Hi
    Can be a problem that get multiplied and visible when iDVD encode for DVD.
    A. See if problem can be isolated to a single frame in the movie and re-import this clip and see if it's better
    B. When free space on Start-Up hard disk goes low - strange things like this might occure. I never go under 25Gb free space on this Start-Up Mac OS hard disk !
    C. Does this problem arises what ever encoding quality You use ?
    Yours Bengt W

  • I have a problem with my mac  i have too many  archives and programs and i want to delete all files and start at the begin my mac with out do format

    i have a problem with my mac  i have too many  archives and programs and i want to delete all files and start at the begin my mac with out do format

    I do not recommend reformatting your harddrive and reloading your software.  This is a Windows thing. On an older mac it may be difficult to find all your software again.
    Best to have greater than 2gig of free space.  Many posters to these forums state that you need much more free space: 5 gig to 10 gig or 10 percent of you hd size.
    (0)
    Be careful when deleting files. A lot of people have trashed their system when deleting things. Place things in trash. Reboot & run your applications. Empty trash.
    Go after large files that you have created & know what they are.  Do not delete small files that are in a folder you do not know what the folder is for. Anything that is less than a megabyte is a small file these days.
    (1)
    Run
    OmniDiskSweeper
    "The simple, fast way to save disk space"
    OmniDiskSweeper is now free!
    http://www.omnigroup.com/applications/omnidisksweeper/download/
    This will give you a list of files and folders sorted by size. Go after things you know that are big.
    (2)
    These pages have some hints on freeing up space:
    http://thexlab.com/faqs/freeingspace.html
    http://www.macmaps.com/diskfull.html
    (3)
    Buy an external firewire harddrive.
    For a PPC computer, I recommend a firewire drive.
    Has everything interface:
    FireWire 800/400 + USB2, + eSATA 'Quad Interface'
    save a little money interface:
    FireWire 400 + USB 2.0
    This web page lists both external harddrive types. You may need to scroll to the right to see both.
    http://eshop.macsales.com/shop/firewire/1394/USB/EliteAL/eSATA_FW800_FW400_USB
    (4)
    Buy a flash card.

  • Date Picker display problems on same line with no new field

    With version 3.1.1 the attempted display of two date fields side by side appear stacked in the same column with the labels in between instead of side by side. This works fine with version 1.6.
    Create a page with 2 Date Picker items. Call the first one P1_DATE_FROM and the second one P1_DATE_TO. For P1_DATE_TO set the "Begin on new line" attribute to NO and the "Field" attribute to NO then display the page.
    The resulting display will be shown as:
    Line 1: Box for Date From value with date picker icon
    Line 2: Labels for both Date From and Date To with only a single space between
    Line 3: Box for Date To value with date picker icon
    The resulting display should be:
    Line 1: Label for Date From, Box for Date From with date picker icon, Label for Date To, Box for Date To with date picker icon.
    If you set the "Field" attribute to YES then the fields will appear on the same line in separate columns. I am trying to leave the second column available for and additional column of items in order to reduce the vertical scrolling on the page.
    If you repeat the above example with Text fields instead of Date Picker fields the desired result is achieved.

    You are correct that saying "Yes" to the field attribute will allow the items to format properly however this will push the second field into the second column on the page. I am purposely trying to keep these 2 items in the first column so that I can place a third item in the second column.
    I have tried using the "Start and Stop HTML table" feature to work around this but I can't control the alignment of the margins for the items above and below the start and stop item which make the display of the region even worse.
    Any other ideas or suggestions for work arounds would be appreciated.

  • S.O.S PROBLEMS COMUNICANTING EXTERNAL PROCESSES IN JAVA UNDER LINUX

    I've programmed a little program in C called "cinterpreter" which works like
    an interpreter, when it launches it shows a welcome message to the display
    (standart output), then is always waiting for strings from the keyboard
    showing the length of the input strings until the "quit" string is received,
    in that case the C program named "cinterpreter" finish, here we can see the
    code:
    # include <stdio.h>
    # include <string.h>
    # include <stdlib.h>
    char presentacion[8][80] = {
    " ||||||||||||||||||\n",
    " --- Welcome to Maude ---\n",
    " ||||||||||||||||||\n",
    " Maude version 1.0.5 built: Apr 5 2000 15:56:52\n",
    " Copyright 1997-2000 SRI International\n",
    " Thu Aug 9 13:40:25 2001\n",
    " \n",
    " \n"};
    void longitud(char * cadena)
    int t;
    for(t=0;t<3;t++)
    printf("MAUDE_OUT> la cadena %s tiene %d caracteres\n",cadena,strlen(cadena));
    fflush(stdout);
    int main()
    char cadena[80];
    int i;
    char ch;
    for(i=0;i<8;++i) printf("%s",presentacion);
    printf("\n");
    fflush(stdout);
    do {
    printf("Press any key to continue\n");
    scanf("%c",&ch);
    printf("%c\n",ch);
    fflush(stdout);
    }while (ch != 'q');
    printf("\n");
    while( strcmp(cadena,"quit") !=0)
    printf("\nMAUDEENTRADA>");
    fflush(stdout);
    scanf("%s",cadena);
    longitud(cadena);
    I'm intereted in running this program, control it's standart input and
    starndart output through a java program through the Runtime , process class
    and the correponding methods like "exec", getInputStream, getOutputStream,
    getErrorStream, the question is that I do not Know what I'm doing wrongly but
    I don't get what I want, I'm interested in sending input to the C subprocess
    thorugh its stdin getting it by getoutputStream method, and then read its
    answer from its stdout getting it by getoutputStream, then question is that I
    can sent de first string and read the first answer but I can't repeat it
    again, and I would like to begin a dialog with the subprocess so I need to
    send many messages and receive its answer to it, but many times, not just one,
    by the moment I got it but just one, if any body can help with this please
    answer the question or send any answer to the next adresses
    e-mail:
    [email protected]
    [email protected]
    *************** java code **********************
    import java.io.*;
    public class mioss {
    static String proceso = "/bin/cinterprete";
    static Process p = null;
    //--------- input writting method -----------
    static void escribe(OutputStream procesoescribe, String s) {
    BufferedWriter laentrada = new BufferedWriter(new
    OutputStreamWriter(procesoescribe));
    try{
    laentrada.write(s + "\n");
    laentrada.flush();
    }catch(IOException e) {System.out.println("error de escritura");}
    //----------- output reading method ---------------
    static void leesalida(InputStream procesosalida){
    String l;
    BufferedReader lasalida = new BufferedReader(new
    InputStreamReader(procesosalida));
    try{
    while ((l = lasalida.readLine()) != null){
    System.out.println(l);
    } catch(IOException e) {System.out.println("error de readline");}
    //------------- reading error method --------------------
    static void leerror(Process p){
    String l;
    BufferedReader elerror = new BufferedReader(new
    InputStreamReader(p.getErrorStream()));
    try{
    while ((l = elerror.readLine()) != null){
    System.out.println(l);
    elerror.close();
    } catch(IOException e) {System.out.println("error de readline");}
    //--------------- principal method main -------------------------
    static Process proc = null;
    public static void main(String [] Args) {
    try{
    Runtime r = Runtime.getRuntime();
    proc = r.exec(proceso);
    escribe(proc.getOutputStream(),"map(+2)[3,3]");
    leesalida(proc.getInputStream());
    escribe (proc.getOutputStream(),"map(*3)[2,2]");
    leesalida(proc.getInputStream());
    }catch(Exception e) {System.out.println("error de ejecucion del
    proceso");}
    System.out.println("THE END OF THE PROGRAM");

    The problem is with the leesalida method.
    There you are reading form the output sream of the process usingBufferedReader.readLine.
    readLine returns null only when it gets to the end of the stream, or here the stream ends only when the external processes ends.
    You can modify your code like this:
    public class mioss {
        static String proceso = "cinterprete";
        static Process p = null;
        //--------- input writting method -----------
        static void escribe(OutputStream procesoescribe, String s) {
         BufferedWriter laentrada = new BufferedWriter(new
             OutputStreamWriter(procesoescribe));
         try{
             laentrada.write(s + "\n");
             laentrada.flush();
         }catch(IOException e) {System.out.println("error de escritura:" + e);}
        //----------- output reading method ---------------
        static void leesalida(InputStream procesosalida, int nLines){
         String l;
         BufferedReader lasalida = new BufferedReader(new
             InputStreamReader(procesosalida));
         try{
             while(nLines-- > 0) {
              l = lasalida.readLine();
                    System.out.println("from java:\t" + l);
         } catch(IOException e) {System.out.println("error de readline");}
        //------------- reading error method --------------------
        static void leerror(Process p){
         String l;
         BufferedReader elerror = new BufferedReader(new
             InputStreamReader(p.getErrorStream()));
         try{
             while ((l = elerror.readLine()) != null){
                    System.out.println(l);
             elerror.close();
         } catch(IOException e) {System.out.println("error de readline");}
        //--------------- principal method main -------------------------
        static Process proc = null;
        public static void main(String [] Args) {
         try{
             Runtime r = Runtime.getRuntime();
             proc = r.exec(proceso);
             leesalida(proc.getInputStream(), 9);
             escribe(proc.getOutputStream(),"first");
             leesalida(proc.getInputStream(), 4);
             System.out.println("Done first !\n");
             escribe (proc.getOutputStream(),"second");
             leesalida(proc.getInputStream(), 4);
             System.out.println("Done second !\n");
         }catch(Exception e) {System.out.println("error de ejecucion del proceso");}
         System.out.println("THE END OF THE PROGRAM");
    } Regards,
    Iulian

  • BEGINNING POST-PROCESSING

    Hello Good People,
    I am new to this Forum, and new to using Oracle XML - to develop Oracle Reports for my employee. I would be grateful if you can assist me find a permanent solution to the problem below:
    ------------- 1) PUBLISH -------------*
    Beginning post-processing of request 2314286 on node DC-UAT-EBS-154 at 17-APR-2013 09:42:46.
    Post-processing of request 2314286 failed at 17-APR-2013 09:42:46 with the error message:
    One or more post-processing actions failed. Consult the OPP service log for details.
    ------------- 2) PRINT   -------------*
    Not printing the output of this request because post-processing failed.
    Finished executing request completion options.
    I have tried some possible solutions, but all did not work. I hope you become the Hero of the day.
    Thank you,
    Samuel.
    Concurrent request completed
    Current system time is 17-APR-2013 09:42:46
    ---------------------------------------------------------------------------

    for ebs use - Category: E-Business Suite
    I would be grateful if you can assist me find a permanent solution to the problem below:what is problem?
    One or more post-processing actions failed. Consult the OPP service log for details.get more detail about errors in OPP log
    How to find OPP log file? - http://appsdbastuff.blogspot.ru/2012/04/opp-service-log-file-and-location-on.html

  • MTS problem, excessive oracle processes in the OS part.

    Hi,
    yesterday I changed internet banking connections to MTS (shared server)
    So, I changed the system to mix architecture (dedicated & shared both)
    DB version is 10.2.0.3
    OS version is AIX 5.3.5
    Number of dispatchers are 2, each with 250 connections.
    Shared_Servers=10
    Max_Shared_Servers=40
    After 3 hours, I take the following error, no oracle process can be forked after in the OS.
    At the time of problem, # of oracle processes in the OS was about 4000,
    which is the OS limit for max processes a user can create.
    But the number of sessions in the v$session was about 2000.
    I also observed that SMON process turned to ZOMBIE (defunct) process.
    It seems that MTS opens more oracle processes in the OS or turned some oracle processes to zombie.
    But how can it be, since MTS does not create any new oracle processes except shared server process
    in the OS.
    When I turned back to dedicated server, everything works fine, that is, database sessions and OS oracle prosesses are almost the same.
    Thanks,
    ORA-27300: OS system dependent operation:fork failed with status: 11
    ORA-27301: OS failure message: Resource temporarily unavailable
    ORA-27302: failure occurred at: skgpspawn3

    Buffer Cache: 1,200M 1,200M Std Block Size: 8K
    Shared Pool Size: 2,960M 2,960M Log Buffer: 14,352K
    Load Profile
    Per Second Per Transaction
    Redo size: 258,968.61 6,558.43
    Logical reads: 104,557.19 2,647.93
    Block changes: 2,360.58 59.78
    Physical reads: 7,752.76 196.34
    Physical writes: 120.65 3.06
    User calls: 1,534.90 38.87
    Parses: 374.77 9.49
    Hard parses: 13.12 0.33
    Sorts: 54.16 1.37
    Logons: 0.87 0.02
    Executes: 2,867.82 72.63
    Transactions: 39.49
    % Blocks changed per Read: 2.26 Recursive Call %: 73.94
    Rollback per transaction %: 14.15 Rows per Sort: 381.28
    Instance Efficiency Percentages (Target 100%)
    Buffer Nowait %: 99.96 Redo NoWait %: 100.00
    Buffer Hit %: 92.63 In-memory Sort %: 100.00
    Library Hit %: 99.01 Soft Parse %: 96.50
    Execute to Parse %: 86.93 Latch Hit %: 99.91
    Parse CPU to Parse Elapsd %: 38.25 % Non-Parse CPU: 99.11
    Shared Pool Statistics
    Begin End
    Memory Usage %: 90.66 89.40
    % SQL with executions>1: 72.50 56.30
    % Memory for SQL w/exec>1: 74.85 60.27
    Top 5 Timed Events
    Event Waits Time(s) Avg Wait(ms) % Total Call Time Wait Class
    CPU time 9,924 43.7
    db file sequential read 10,113,395 8,454 1 37.2 User I/O
    db file scattered read 1,660,502 1,848 1 8.1 User I/O
    SQL*Net more data from client 18,186 316 17 1.4 Network
    enq: TX - row lock contention 80 221 2,766 1.0 Application
    Wait Class
    s - second
    cs - centisecond - 100th of a second
    ms - millisecond - 1000th of a second
    us - microsecond - 1000000th of a second
    ordered by wait time desc, waits desc
    Wait Class Waits %Time -outs Total Wait Time (s) Avg wait (ms) Waits /txn
    User I/O 11,955,810 0.00 10,465 1 83.97
    Network 4,053,277 0.00 390 0 28.47
    Application 6,355 1.15 225 35 0.04
    System I/O 795,447 0.00 213 0 5.59
    Commit 100,846 0.00 140 1 0.71
    Concurrency 2,770 0.36 11 4 0.02
    Configuration 46 19.57 0 8 0.00
    Other 1,491 0.07 0 0 0.01
    Wait Events
    s - second
    cs - centisecond - 100th of a second
    ms - millisecond - 1000th of a second
    us - microsecond - 1000000th of a second
    ordered by wait time desc, waits desc (idle events last)
    Event Waits %Time -outs Total Wait Time (s) Avg wait (ms) Waits /txn
    db file sequential read 10,113,395 0.00 8,454 1 71.03
    db file scattered read 1,660,502 0.00 1,848 1 11.66
    SQL*Net more data from client 18,186 0.00 316 17 0.13
    enq: TX - row lock contention 80 91.25 221 2766 0.00
    read by other session 157,454 0.00 142 1 1.11
    log file sync 100,846 0.00 140 1 0.71
    log file parallel write 128,249 0.00 137 1 0.90
    TCP Socket (KGAS) 2,429 0.00 64 26 0.02
    db file parallel write 10,158 0.00 55 5 0.07
    direct path write temp 6,721 0.00 13 2 0.05
    log file sequential read 981 0.00 8 9 0.01
    SQL*Net more data to client 156,908 0.00 6 0 1.10
    control file sequential read 651,338 0.00 5 0 4.57
    Log archive I/O 1,990 0.00 5 2 0.01
    latch: library cache 667 0.00 4 7 0.00
    db file parallel read 769 0.00 4 6 0.01
    os thread startup 127 0.00 4 33 0.00
    SQL*Net message to client 3,850,305 0.00 4 0 27.04
    SQL*Net break/reset to client 6,182 0.00 3 0 0.04
    control file parallel write 2,691 0.00 2 1 0.02
    latch: shared pool 145 0.00 2 12 0.00
    direct path read temp 13,714 0.00 1 0 0.10
    enq: RO - fast object reuse 93 0.00 1 9 0.00
    local write wait 300 0.00 0 1 0.00
    log file switch completion 29 0.00 0 12 0.00
    direct path read 1,806 0.00 0 0 0.01
    latch free 35 0.00 0 4 0.00
    direct path write 1,149 0.00 0 0 0.01
    SQL*Net more data to dblink 7,126 0.00 0 0 0.05
    log file single write 40 0.00 0 3 0.00
    cursor: pin S wait on X 12 83.33 0 8 0.00
    latch: cache buffers chains 1,666 0.00 0 0 0.01
    SQL*Net message to dblink 18,120 0.00 0 0 0.13
    reliable message 87 0.00 0 1 0.00
    LGWR wait for redo copy 1,209 0.00 0 0 0.01
    latch: messages 16 0.00 0 2 0.00
    latch: redo writing 7 0.00 0 5 0.00
    enq: TX - index contention 4 0.00 0 7 0.00
    rdbms ipc reply 95 0.00 0 0 0.00
    buffer busy waits 143 0.00 0 0 0.00
    latch: object queue header operation 18 0.00 0 1 0.00
    latch: checkpoint queue latch 2 0.00 0 5 0.00
    latch: cache buffers lru chain 2 0.00 0 3 0.00
    SQL*Net more data from dblink 203 0.00 0 0 0.00
    library cache load lock 1 0.00 0 4 0.00
    row cache lock 2 0.00 0 0 0.00
    latch: library cache pin 1 0.00 0 0 0.00
    undo segment extension 10 90.00 0 0 0.00
    cursor: pin S 26 0.00 0 0 0.00
    cursor: mutex S 2 0.00 0 0 0.00
    buffer deadlock 1 100.00 0 0 0.00
    SQL*Net message from client 3,850,087 0.00 2,879,903 748 27.04
    virtual circuit status 95,480 0.66 30,974 324 0.67
    jobq slave wait 6,672 87.16 18,382 2755 0.05
    wait for unread message on broadcast channel 3,611 100.00 3,521 975 0.03
    Streams AQ: waiting for messages in the queue 732 100.00 3,517 4805 0.01
    Streams AQ: qmn slave idle wait 129 0.00 3,506 27182 0.00
    Streams AQ: qmn coordinator idle wait 370 34.86 3,506 9477 0.00
    Streams AQ: waiting for time management or cleanup tasks 3 100.00 953 317683 0.00
    SQL*Net message from dblink 18,120 0.00 679 37 0.13
    HS message to agent 16,986 0.00 89 5 0.12
    single-task message 170 0.00 9 50 0.00
    pipe get 28 0.00 3 114 0.00
    class slave wait 2 0.00 0 0 0.00
    Background Wait Events
    ordered by wait time desc, waits desc (idle events last)
    Event Waits %Time -outs Total Wait Time (s) Avg wait (ms) Waits /txn
    log file parallel write 128,212 0.00 137 1 0.90
    db file parallel write 10,158 0.00 55 5 0.07
    db file sequential read 8,822 0.00 11 1 0.06
    log file sequential read 981 0.00 8 9 0.01
    Log archive I/O 1,990 0.00 5 2 0.01
    os thread startup 127 0.00 4 33 0.00
    control file parallel write 2,091 0.00 1 1 0.01
    db file scattered read 172 0.00 1 3 0.00
    control file sequential read 12,106 0.00 1 0 0.09
    events in waitclass Other 1,351 0.00 0 0 0.01
    direct path read 1,800 0.00 0 0 0.01
    log file single write 40 0.00 0 3 0.00
    direct path write 900 0.00 0 0 0.01
    latch: redo writing 7 0.00 0 5 0.00
    latch: cache buffers chains 15 0.00 0 1 0.00
    log file sync 2 0.00 0 1 0.00
    buffer busy waits 6 0.00 0 0 0.00
    rdbms ipc message 246,802 7.02 60,773 246 1.73
    pmon timer 2,015 97.37 3,515 1744 0.01
    Streams AQ: qmn slave idle wait 129 0.00 3,506 27182 0.00
    Streams AQ: qmn coordinator idle wait 370 34.86 3,506 9477 0.00
    smon timer 519 0.00 3,505 6753 0.00
    Streams AQ: waiting for time management or cleanup tasks 3 100.00 953 317683 0.00
    Operating System Statistics
    Statistic Total
    NUM_LCPUS 0
    NUM_VCPUS 0
    AVG_BUSY_TIME 78,988
    AVG_IDLE_TIME 281,508
    AVG_IOWAIT_TIME 55,083
    AVG_SYS_TIME 17,835
    AVG_USER_TIME 61,046
    BUSY_TIME 1,265,704
    IDLE_TIME 4,506,088
    IOWAIT_TIME 883,071
    SYS_TIME 287,149
    USER_TIME 978,555
    LOAD 0
    OS_CPU_WAIT_TIME 1,232,300
    RSRC_MGR_CPU_WAIT_TIME 0
    PHYSICAL_MEMORY_BYTES 33,285,996,544
    NUM_CPUS 16
    NUM_CPU_CORES 8
    Service Statistics
    ordered by DB Time
    Service Name DB Time (s) DB CPU (s) Physical Reads Logical Reads
    andlp2 13,795.70 5,680.50 23,785,158 266,206,268
    SYS$USERS 5,146.80 2,456.20 3,079,496 60,895,888
    shared_andlp2 3,777.40 1,795.40 1,063,806 49,135,813
    SYS$BACKGROUND 0.00 0.00 12,840 1,021,071
    andlp2XDB 0.00 0.00 0 0
    Service Wait Class Stats
    Wait Class info for services in the Service Statistics section.
    Total Waits and Time Waited displayed for the following wait classes: User I/O, Concurrency, Administrative, Network
    Time Waited (Wt Time) in centisecond (100th of a second)
    Service Name User I/O Total Wts User I/O Wt Time Concurcy Total Wts Concurcy Wt Time Admin Total Wts Admin Wt Time Network Total Wts Network Wt Time
    andlp2 9575680 700718 2099 466 0 0 3945537 6997
    SYS$USERS 1415659 141165 151 25 0 0 20355 17
    shared_andlp2 951411 203079 364 144 0 0 81260 31984
    SYS$BACKGROUND 12818 1478 148 422 0 0 0 0
    SQL ordered by Elapsed Time
    Resources reported for PL/SQL code includes the resources used by all SQL statements called by the code.
    % Total DB Time is the Elapsed Time of the SQL statement divided into the Total Database Time multiplied by 100
    Elapsed Time (s) CPU Time (s) Executions Elap per Exec (s) % Total DB Time SQL Id SQL Module SQL Text
    1,443 104 273 5.29 6.35 9xvr07cvm5md0 httpd@karabatak (TNS V1-V3) declare rc__ number; simple_...
    1,304 640 29 44.95 5.74 91wxrh27r5g8n DECLARE job BINARY_INTEGER := ...
    936 453 424 2.21 4.12 abkgjr63dv6u8 frmweb.exe SELECT MUS_K_ISIM , HESAP_NO ...
    859 335 30 28.63 3.78 c406h8xcvfn4s DECLARE job BINARY_INTEGER := ...
    703 272 30 23.45 3.10 g0y0bsusuagjt INSERT INTO MARDATA.M_D_HESAP_...
    701 139 1,613 0.43 3.09 g5636apbsuu6m Apache.exe declare rc__ number; simple_...
    664 589 16 41.50 2.92 gu3j96aktwv05 Apache.exe declare rc__ number; simple_...
    626 13 250 2.50 2.76 gn6w1hb4paw56 frmweb.exe SELECT TUTAR , B_A , ACIK_RE...
    517 94 754 0.69 2.28 3cawwq59capz2 frmweb.exe select mus_k_isim, hesap_no fr...
    515 463 16 32.19 2.27 chz9021ufnzyn Apache.exe SELECT SIR.SIRKET_ADI, P.SUBE...
    508 156 30 16.92 2.23 3ax52z7dpz9mc SELECT H.HESAP_NO, SUM(NVL(H....
    496 18 1,134 0.44 2.18 fydgv84cqwmxn frmweb.exe SELECT /*+ INDEX(M1 M_MHAREKET...
    419 124 53 7.90 1.84 7pxhq3kjq89c4 Apache.exe declare rc__ number; simple_...
    407 115 52 7.83 1.79 7q13983tc3z7j Apache.exe SELECT SUM(ORTALAMA_TUTAR_TL *...
    386 104 366 1.05 1.70 4pcsmrfq05c3t httpd@karabatak (TNS V1-V3) declare rc__ number; simple_...
    382 311 598 0.64 1.68 53tzqfs73d0n4 httpd@karabatak (TNS V1-V3) declare rc__ number; simple_...
    351 44 30 11.71 1.55 729cpbmdgb7xg frmweb.exe SELECT A.ISUBE , A.CEK_NO , ...
    322 238 131 2.46 1.42 gxkktn00ntrc7 frmweb.exe SELECT A.SUBE_KOD , A.HESAP_N...
    319 21 387 0.83 1.41 8rnb53wzsnjyz httpd@karabatak (TNS V1-V3) SELECT TO_CHAR(MAX(CIKIS), 'DD...
    312 29 269 1.16 1.37 6nmu8qrsffk0p frmweb.exe SELECT E.KULLANICIKODU , E.IP...
    296 194 126 2.35 1.30 3vtwpw06rp7q9 frmweb.exe SELECT A.SUBE_KOD , A.HESAP_N...
    SQL ordered by CPU Time
    Resources reported for PL/SQL code includes the resources used by all SQL statements called by the code.
    % Total DB Time is the Elapsed Time of the SQL statement divided into the Total Database Time multiplied by 100
    CPU Time (s) Elapsed Time (s) Executions CPU per Exec (s) % Total DB Time SQL Id SQL Module SQL Text
    640 1,304 29 22.06 5.74 91wxrh27r5g8n DECLARE job BINARY_INTEGER := ...
    589 664 16 36.79 2.92 gu3j96aktwv05 Apache.exe declare rc__ number; simple_...
    463 515 16 28.92 2.27 chz9021ufnzyn Apache.exe SELECT SIR.SIRKET_ADI, P.SUBE...
    453 936 424 1.07 4.12 abkgjr63dv6u8 frmweb.exe SELECT MUS_K_ISIM , HESAP_NO ...
    335 859 30 11.17 3.78 c406h8xcvfn4s DECLARE job BINARY_INTEGER := ...
    311 382 598 0.52 1.68 53tzqfs73d0n4 httpd@karabatak (TNS V1-V3) declare rc__ number; simple_...
    272 703 30 9.07 3.10 g0y0bsusuagjt INSERT INTO MARDATA.M_D_HESAP_...
    238 322 131 1.82 1.42 gxkktn00ntrc7 frmweb.exe SELECT A.SUBE_KOD , A.HESAP_N...
    194 296 126 1.54 1.30 3vtwpw06rp7q9 frmweb.exe SELECT A.SUBE_KOD , A.HESAP_N...
    159 195 479 0.33 0.86 cc0nhrvkmuy8r httpd@karabatak (TNS V1-V3) declare rc__ number; simple_...
    156 508 30 5.21 2.23 3ax52z7dpz9mc SELECT H.HESAP_NO, SUM(NVL(H....
    139 701 1,613 0.09 3.09 g5636apbsuu6m Apache.exe declare rc__ number; simple_...
    124 419 53 2.35 1.84 7pxhq3kjq89c4 Apache.exe declare rc__ number; simple_...
    115 407 52 2.21 1.79 7q13983tc3z7j Apache.exe SELECT SUM(ORTALAMA_TUTAR_TL *...
    104 386 366 0.28 1.70 4pcsmrfq05c3t httpd@karabatak (TNS V1-V3) declare rc__ number; simple_...
    104 1,443 273 0.38 6.35 9xvr07cvm5md0 httpd@karabatak (TNS V1-V3) declare rc__ number; simple_...
    94 517 754 0.12 2.28 3cawwq59capz2 frmweb.exe select mus_k_isim, hesap_no fr...
    44 351 30 1.46 1.55 729cpbmdgb7xg frmweb.exe SELECT A.ISUBE , A.CEK_NO , ...
    29 312 269 0.11 1.37 6nmu8qrsffk0p frmweb.exe SELECT E.KULLANICIKODU , E.IP...
    21 319 387 0.05 1.41 8rnb53wzsnjyz httpd@karabatak (TNS V1-V3) SELECT TO_CHAR(MAX(CIKIS), 'DD...
    18 496 1,134 0.02 2.18 fydgv84cqwmxn frmweb.exe SELECT /*+ INDEX(M1 M_MHAREKET...
    13 626 250 0.05 2.76 gn6w1hb4paw56 frmweb.exe SELECT TUTAR , B_A , ACIK_RE...
    SQL ordered by Gets
    Resources reported for PL/SQL code includes the resources used by all SQL statements called by the code.
    Total Buffer Gets: 377,028,313
    Captured SQL account for 36.7% of Total
    Buffer Gets Executions Gets per Exec %Total CPU Time (s) Elapsed Time (s) SQL Id SQL Module SQL Text
    36,098,836 30 1,203,294.53 9.57 335.17 858.88 c406h8xcvfn4s DECLARE job BINARY_INTEGER := ...
    25,797,967 30 859,932.23 6.84 156.31 507.52 3ax52z7dpz9mc SELECT H.HESAP_NO, SUM(NVL(H....
    21,427,570 598 35,832.06 5.68 310.83 382.37 53tzqfs73d0n4 httpd@karabatak (TNS V1-V3) declare rc__ number; simple_...
    18,504,944 30 616,831.47 4.91 79.74 84.82 274s1h17p0j36 Reutersdevdb.exe (SELECT /*+ RULE */ '', T.own...
    18,132,811 29 625,269.34 4.81 639.68 1303.64 91wxrh27r5g8n DECLARE job BINARY_INTEGER := ...
    17,912,396 30 597,079.87 4.75 77.26 82.67 5cnac71x8744k Reutersdevdb.exe (SELECT /*+ RULE */ '', T.own...
    15,416,026 1,785 8,636.43 4.09 149.52 160.50 7u1rxxk2anfm1 httpd@karabatak (TNS V1-V3) SELECT /*+RULE*/ DISTINCT MD.S...
    11,188,695 16 699,293.44 2.97 588.69 664.07 gu3j96aktwv05 Apache.exe declare rc__ number; simple_...
    9,348,310 16 584,269.38 2.48 462.77 515.02 chz9021ufnzyn Apache.exe SELECT SIR.SIRKET_ADI, P.SUBE...
    8,674,950 424 20,459.79 2.30 452.70 935.96 abkgjr63dv6u8 frmweb.exe SELECT MUS_K_ISIM , HESAP_NO ...
    6,987,779 479 14,588.27 1.85 158.99 195.29 cc0nhrvkmuy8r httpd@karabatak (TNS V1-V3) declare rc__ number; simple_...
    6,545,269 53 123,495.64 1.74 124.31 418.90 7pxhq3kjq89c4 Apache.exe declare rc__ number; simple_...
    6,373,078 52 122,559.19 1.69 115.18 407.03 7q13983tc3z7j Apache.exe SELECT SUM(ORTALAMA_TUTAR_TL *...
    5,977,931 30 199,264.37 1.59 272.13 703.48 g0y0bsusuagjt INSERT INTO MARDATA.M_D_HESAP_...
    5,820,172 106 54,907.28 1.54 145.09 152.34 7nh29bk1sg42r frmweb.exe select distinct grup_kod, hes...
    Instance Activity Stats
    Statistic Total per Second per Trans
    CPU used by this session 820,065 227.42 5.76
    CPU used when call started 677,803 187.97 4.76
    CR blocks created 16,866 4.68 0.12
    Cached Commit SCN referenced 890,130 246.85 6.25
    Commit SCN cached 198 0.05 0.00
    DB time 3,363,185,519 932,675.92 23,620.20
    DBWR checkpoint buffers written 9,520 2.64 0.07
    DBWR checkpoints 100 0.03 0.00
    DBWR object drop buffers written 1,921 0.53 0.01
    DBWR parallel query checkpoint buffers written 0 0.00 0.00
    DBWR revisited being-written buffer 25 0.01 0.00
    DBWR tablespace checkpoint buffers written 0 0.00 0.00
    DBWR thread checkpoint buffers written 2,589 0.72 0.02
    DBWR transaction table writes 1,062 0.29 0.01
    DBWR undo block writes 75,368 20.90 0.53
    DDL statements parallelized 0 0.00 0.00
    DFO trees parallelized 0 0.00 0.00
    Misses for writing mapping 0 0.00 0.00
    PX local messages recv'd 0 0.00 0.00
    PX local messages sent 0 0.00 0.00
    Parallel operations downgraded 1 to 25 pct 0 0.00 0.00
    Parallel operations downgraded 50 to 75 pct 0 0.00 0.00
    Parallel operations not downgraded 0 0.00 0.00
    SMON posted for dropping temp segment 0 0.00 0.00
    SMON posted for undo segment recovery 0 0.00 0.00
    SMON posted for undo segment shrink 15 0.00 0.00
    SQL*Net roundtrips to/from client 3,859,275 1,070.25 27.10
    SQL*Net roundtrips to/from dblink 31,149 8.64 0.22
    active txn count during cleanout 115,814 32.12 0.81
    application wait time 22,502 6.24 0.16
    auto extends on undo tablespace 0 0.00 0.00
    background checkpoints completed 10 0.00 0.00
    background checkpoints started 10 0.00 0.00
    background timeouts 17,610 4.88 0.12
    branch node splits 7 0.00 0.00
    buffer is not pinned count 203,367,173 56,397.62 1,428.28
    buffer is pinned count 423,534,399 117,454.22 2,974.55
    bytes received via SQL*Net from client 875,387,626 242,761.80 6,147.99
    bytes received via SQL*Net from dblink 12,992,864 3,603.17 91.25
    bytes sent via SQL*Net to client ############### 1,369,289,664.01 34,677,525.68
    bytes sent via SQL*Net to dblink 52,952,034,748 14,684,615.90 371,890.74
    calls to get snapshot scn: kcmgss 15,353,638 4,257.86 107.83
    calls to kcmgas 732,189 203.05 5.14
    calls to kcmgcs 89,721 24.88 0.63
    change write time 3,250 0.90 0.02
    cleanout - number of ktugct calls 130,405 36.16 0.92
    cleanouts and rollbacks - consistent read gets 11,180 3.10 0.08
    cleanouts only - consistent read gets 2,244 0.62 0.02
    cluster key scan block gets 383,816 106.44 2.70
    cluster key scans 306,047 84.87 2.15
    commit batch performed 344 0.10 0.00
    commit batch requested 344 0.10 0.00
    commit batch/immediate performed 1,111 0.31 0.01
    commit batch/immediate requested 1,111 0.31 0.01
    commit cleanout failures: block lost 54,881 15.22 0.39
    commit cleanout failures: buffer being written 11 0.00 0.00
    commit cleanout failures: callback failure 1,410 0.39 0.01
    commit cleanout failures: cannot pin 77 0.02 0.00
    commit cleanout failures: hot backup in progress 0 0.00 0.00
    commit cleanouts 349,392 96.89 2.45
    commit cleanouts successfully completed 293,014 81.26 2.06
    commit immediate performed 767 0.21 0.01
    commit immediate requested 767 0.21 0.01
    commit txn count during cleanout 68,019 18.86 0.48
    concurrency wait time 1,058 0.29 0.01
    consistent changes 3,439,859 953.94 24.16
    consistent gets 366,680,318 101,687.49 2,575.26
    consistent gets - examination 121,966,420 33,823.63 856.59
    consistent gets direct 7,642 2.12 0.05
    consistent gets from cache 366,672,556 101,685.34 2,575.20
    current blocks converted for CR 55 0.02 0.00
    cursor authentications 14,703 4.08 0.10
    data blocks consistent reads - undo records applied 70,817 19.64 0.50
    db block changes 8,512,132 2,360.58 59.78
    db block gets 10,345,635 2,869.04 72.66
    db block gets direct 2,604 0.72 0.02
    db block gets from cache 10,343,017 2,868.32 72.64
    deferred (CURRENT) block cleanout applications 164,540 45.63 1.16
    dirty buffers inspected 201,591 55.91 1.42
    enqueue conversions 684,245 189.75 4.81
    enqueue deadlocks 0 0.00 0.00
    enqueue releases 2,493,773 691.57 17.51
    enqueue requests 2,493,903 691.61 17.52
    enqueue timeouts 68 0.02 0.00
    enqueue waits 101 0.03 0.00
    exchange deadlocks 1 0.00 0.00
    execute count 10,341,226 2,867.82 72.63
    failed probes on index block reclamation 0 0.00 0.00
    frame signature mismatch 0 0.00 0.00
    free buffer inspected 28,677,695 7,952.88 201.41
    free buffer requested 28,684,393 7,954.73 201.46
    global undo segment hints helped 0 0.00 0.00
    heap block compress 87,275 24.20 0.61
    hot buffers moved to head of LRU 3,506,139 972.32 24.62
    immediate (CR) block cleanout applications 13,424 3.72 0.09
    immediate (CURRENT) block cleanout applications 55,019 15.26 0.39
    index crx upgrade (found) 133 0.04 0.00
    index crx upgrade (positioned) 190,756 52.90 1.34
    index fast full scans (direct read) 0 0.00 0.00
    index fast full scans (full) 4,521 1.25 0.03
    index fast full scans (rowid ranges) 0 0.00 0.00
    index fetch by key 63,569,968 17,629.17 446.46
    index scans kdiixs1 47,264,964 13,107.48 331.95
    java call heap collected bytes 146,595,424 40,653.73 1,029.56
    java call heap collected count 2,109,118 584.90 14.81
    java call heap gc count 2,036 0.56 0.01
    java call heap live object count 53,667 14.88 0.38
    java call heap live object count max 163,629 45.38 1.15
    java call heap live size 4,897,136 1,358.07 34.39
    java call heap live size max 15,033,192 4,168.99 105.58
    java call heap object count 135,994 37.71 0.96
    java call heap object count max 194,386 53.91 1.37
    java call heap total size 8,131,840 2,255.12 57.11
    java call heap total size max 22,874,112 6,343.43 160.65
    java call heap used size 10,414,544 2,888.15 73.14
    java call heap used size max 17,090,000 4,739.39 120.03
    java session heap collected bytes 299,008 82.92 2.10
    java session heap collected count 223 0.06 0.00
    java session heap gc count 2 0.00 0.00
    java session heap live object count 62,042 17.21 0.44
    java session heap live object count max 62,204 17.25 0.44
    java session heap live size 6,119,424 1,697.03 42.98
    java session heap live size max 6,307,840 1,749.29 44.30
    java session heap object count 62,204 17.25 0.44
    java session heap object count max 62,204 17.25 0.44
    java session heap used size 6,307,840 1,749.29 44.30
    java session heap used size max 6,307,840 1,749.29 44.30
    leaf node 90-10 splits 590 0.16 0.00
    leaf node splits 12,720 3.53 0.09
    lob reads 18,068 5.01 0.13
    lob writes 378,857 105.06 2.66
    lob writes unaligned 378,854 105.06 2.66
    logons cumulative 3,128 0.87 0.02
    messages received 320,519 88.89 2.25
    messages sent 320,519 88.89 2.25
    no buffer to keep pinned count 0 0.00 0.00
    no work - consistent read gets 240,593,829 66,721.29 1,689.73
    opened cursors cumulative 1,230,004 341.10 8.64
    parse count (failures) 1,216 0.34 0.01
    parse count (hard) 47,313 13.12 0.33
    parse count (total) 1,351,392 374.77 9.49
    parse time cpu 8,806 2.44 0.06
    parse time elapsed 23,022 6.38 0.16
    physical read IO requests 11,798,391 3,271.92 82.86
    physical read bytes ############### 63,510,595.88 1,608,418.13
    physical read total IO requests 12,450,298 3,452.71 87.44
    physical read total bytes ############### 65,250,489.97 1,652,481.28
    physical read total multi block requests 1,668,164 462.61 11.72
    physical reads 27,956,086 7,752.76 196.34
    physical reads cache 27,790,026 7,706.71 195.17
    physical reads cache prefetch 16,014,666 4,441.17 112.47
    physical reads direct 166,060 46.05 1.17
    physical reads direct (lob) 7,635 2.12 0.05
    physical reads direct temporary tablespace 164,248 45.55 1.15
    physical reads prefetch warmup 0 0.00 0.00
    physical write IO requests 144,520 40.08 1.01
    physical write bytes 3,563,954,176 988,352.92 25,030.23
    physical write total IO requests 415,411 115.20 2.92
    physical write total bytes 7,501,977,600 2,080,442.42 52,687.61
    physical write total multi block requests 277,345 76.91 1.95
    physical writes 435,053 120.65 3.06
    physical writes direct 179,591 49.80 1.26
    physical writes direct (lob) 7 0.00 0.00
    physical writes direct temporary tablespace 176,122 48.84 1.24
    physical writes from cache 255,462 70.84 1.79
    physical writes non checkpoint 421,691 116.94 2.96
    pinned buffers inspected 1,685 0.47 0.01
    prefetch clients - default 1 0.00 0.00
    prefetch clients - keep 0 0.00 0.00
    prefetch warmup blocks aged out before use 0 0.00 0.00
    prefetched blocks aged out before use 2,672 0.74 0.02
    process last non-idle time 3,608 1.00 0.03
    queries parallelized 0 0.00 0.00
    recursive aborts on index block reclamation 0 0.00 0.00
    recursive calls 15,701,925 4,354.45 110.28
    recursive cpu usage 332,230 92.13 2.33
    redo blocks written 1,942,511 538.70 13.64
    redo buffer allocation retries 32 0.01 0.00
    redo entries 3,543,077 982.56 24.88
    redo log space requests 36 0.01 0.00
    redo log space wait time 32 0.01 0.00
    redo ordering marks 70,040 19.42 0.49
    redo size 933,828,628 258,968.61 6,558.43
    redo subscn max counts 92,765 25.73 0.65
    redo synch time 14,438 4.00 0.10
    redo synch writes 122,752 34.04 0.86
    redo wastage 28,240,164 7,831.54 198.34
    redo write time 14,659 4.07 0.10
    redo writer latching time 9 0.00 0.00
    redo writes 127,955 35.48 0.90
    rollback changes - undo records applied 10,431 2.89 0.07
    rollbacks only - consistent read gets 5,824 1.62 0.04
    rows fetched via callback 29,956,870 8,307.62 210.39
    session connect time 0 0.00 0.00
    session cursor cache hits 912,331 253.01 6.41
    session logical reads 377,028,313 104,557.19 2,647.93
    session pga memory 5,535,258,240 1,535,033.39 38,875.02
    session pga memory max ############### 35,280,612.09 893,488.33
    session uga memory ############### 1,112,659,489.56 28,178,316.86
    session uga memory max 6,581,957,632 1,825,303.22 46,226.16
    shared hash latch upgrades - no wait 662,685 183.78 4.65
    shared hash latch upgrades - wait 173 0.05 0.00
    sorts (disk) 0 0.00 0.00
    sorts (memory) 195,297 54.16 1.37
    sorts (rows) 74,462,048 20,649.76 522.96
    sql area evicted 29,407 8.16 0.21
    sql area purged 1,282 0.36 0.01
    summed dirty queue length 164,234 45.55 1.15
    switch current to new buffer 496,872 137.79 3.49
    table fetch by rowid 250,959,297 69,595.83 1,762.53
    table fetch continued row 634,272 175.90 4.45
    table scan blocks gotten 61,069,211 16,935.66 428.90
    table scan rows gotten 5,007,057,760 1,388,553.25 35,165.38
    table scans (cache partitions) 0 0.00 0.00
    table scans (direct read) 0 0.00 0.00
    table scans (long tables) 1,590 0.44 0.01
    table scans (rowid ranges) 0 0.00 0.00
    table scans (short tables) 1,455,250 403.57 10.22
    total number of times SMON posted 519 0.14 0.00
    transaction rollbacks 1,111 0.31 0.01
    transaction tables consistent read rollbacks 4 0.00 0.00
    transaction tables consistent reads - undo records applied 182 0.05 0.00
    undo change vector size 464,337,752 128,769.77 3,261.12
    user I/O wait time 1,046,881 290.32 7.35
    user calls 5,534,784 1,534.90 38.87
    user commits 122,239 33.90 0.86
    user rollbacks 20,147 5.59 0.14
    workarea executions - multipass 0 0.00 0.00
    workarea executions - onepass 19 0.01 0.00
    workarea executions - optimal 155,732 43.19 1.09
    write clones created in background 300 0.08 0.00
    write clones created in foreground 114 0.03 0.00
    Buffer Pool Statistics
    Standard block size Pools D: default, K: keep, R: recycle
    Default Pools for other block sizes: 2k, 4k, 8k, 16k, 32k
    P Number of Buffers Pool Hit% Buffer Gets Physical Reads Physical Writes Free Buff Wait Writ Comp Wait Buffer Busy Waits
    D 148,425 96 343,814,932 13,754,200 250,967 0 0 87,158
    K 7,916 58 33,054,317 14,034,039 4,373 0 0 70,577
    Enqueue Activity
    only enqueues with waits are shown
    Enqueue stats gathered prior to 10g should not be compared with 10g data
    ordered by Wait Time desc, Waits desc
    Enqueue Type (Request Reason) Requests Succ Gets Failed Gets Waits Wt Time (s) Av Wt Time(ms)
    TX-Transaction (row lock contention) 60 7 53 7 227 32,372.43
    RO-Multiple Object Reuse (fast object reuse) 810 810 0 90 1 9.60
    TX-Transaction (index contention) 4 4 0 4 0 7.00
    Resource Limit Stats
    only rows with Current or Maximum Utilization > 80% of Limit are shown
    ordered by resource name
    Resource Name Current Utilization Maximum Utilization Initial Allocation Limit
    processes 1,195 1,750 1750 1750
    sessions 1,230 1,930 1930 1930
    init.ora Parameters
    Parameter Name Begin value End value (if different)
    O7_DICTIONARY_ACCESSIBILITY TRUE
    aq_tm_processes 1
    archive_lag_target 1800
    audit_trail DB, EXTENDED
    background_dump_dest /oracle/orahome10/admin/andlp2/bdump
    compatible 10.2.0.3.0
    control_files /datac5/oradata/andlp2/control01.ctl, /datac6/oradata/andlp2/control02.ctl, /datac7/oradata/andlp2/control03.ctl
    core_dump_dest /oracle/orahome10/admin/andlp2/cdump
    cursor_sharing EXACT
    db_block_checksum FALSE
    db_block_size 8192
    db_cache_advice ON
    db_cache_size 1258291200
    db_domain
    db_file_multiblock_read_count 16
    db_keep_cache_size 67108864
    db_name andlp2
    db_recycle_cache_size 0
    db_writer_processes 6
    dispatchers (PROTOCOL=TCP)(SERVICE=shared_andlp2)(CONNECTIONS=250)(DISPATCHERS=2)
    fast_start_mttr_target 300
    filesystemio_options ASYNCH
    instance_name andlp2
    java_pool_size 100663296
    job_queue_processes 74
    large_pool_size 637534208
    local_listener LISTENER_ANDLP2
    log_archive_dest_1 LOCATION=/onliner0/andlp2/archive/
    log_archive_dest_2 LOCATION=/datac5/archive/
    log_archive_dest_3 SERVICE=ANDLP3
    log_archive_dest_state_3 DEFER
    log_archive_format %t_%s_%r.dbf
    log_archive_max_processes 4
    log_archive_min_succeed_dest 1
    log_buffer 14251008
    log_checkpoint_interval 200000
    log_checkpoint_timeout 27000
    max_dispatchers 2
    max_dump_file_size 1500M
    max_shared_servers 40
    open_cursors 500
    pga_aggregate_target 2621440000
    processes 1750
    query_rewrite_enabled TRUE
    remote_dependencies_mode SIGNATURE
    remote_login_passwordfile EXCLUSIVE
    remote_os_authent FALSE
    resource_limit TRUE
    session_cached_cursors 250
    session_max_open_files 20
    sga_max_size 5251268608
    shared_pool_size 3103784960
    shared_servers 10
    sort_area_retained_size 131072
    sort_area_size 1048576
    star_transformation_enabled FALSE
    streams_pool_size 50331648
    timed_statistics TRUE
    trace_enabled FALSE
    undo_management AUTO
    undo_retention 36000
    undo_tablespace UNDOTBS1
    user_dump_dest /oracle/orahome10/admin/andlp2/udump

  • Third party process with Valuated sales order stock

    Hi All,
    We have third party sales order process with valuated sales order stock. The problem is that in the theird party PR which is triggered directly from the sales order it determines a stock account which is assigned to the BSX key in OBYC.
    But since this is third party processing as per my understanding a consumption account assigned to key GBB-VAX (since account assignmnt category is X) should get determined, so that when the GR is done against the PO a consumption posting is done in the background.
    I am not able to understand if the system is determining the stock account due to the fact that it is valuated sales order stock and if so, what should happen after GR. Should we have a stock created for the material which is physically directly delivered to the customer?
    Regards,
    V S

    Hi,
    Check GBB-VKA which is defined in OME9 for your ''E'' Account Assignment Category that SAP will debit upon GR posting
    Also check "X" GBB-VAX and the G/L account assignment in OBYC
    The posting on GR should be debit KBS -Credit GR-IR
    Thanks
    Diwakar

  • Problem in establishing connection with mysql 5.0

    Hi,
    I am using JCAPS 5.1. I tried to insert data to mysql database table.
    But i got following error
    java.sql.SQLException: Error in allocating a connection. Cause:
    Physical Connection doesn't exist.
    My intention is to read file in which data are comma seperated and to
    populate those values to a mysql 5.0 database table.
    Sample DATA in file [test.txt]
    111,gg,23,MFG
    112,hh,24,MFG
    113,ii,25,RETAIL
    114,jj,26,IT
    Database table: employee
    eno,ename,eage,edept
    While creating JDBC OTD there is no problem in establishing connection with database. But after deploying i got above error.
    I have used Mysql 5.0 Connector/J JDBC driver. Added JDBC driver jar files to following directories as required.
    1) C:\JavaCAPS51\logicalhost\is\lib
    2)C:\JavaCAPS51\logicalhost\is\domains\test\lib
    Steps i have followed as per JDBC-ODBC -eway user guide doc.
    1) Created USerDefined OTD and added necessary fields
    2) Created JDBC OTD.
    3) Created JAVA collaboration and do business process for inserting
    4) Mapped all components by creating in Connectivity MAp
    5) created necessary external systems in envrionment explorer.[JDBC External System and File External System]
    6)Created Deployment profile
    5) Deployed it.
    After deploying it gives error as
    java.sql.SQLException: Error in allocating a connection. Cause: Physical Connection doesn't exist
    Please let me know the solution for problem.
    Message was edited by:
    VenkateshSampoornam

    In the environment definition,
    -> External Application JDBC
    -> Properties
    -> Outbound JDBC Connection
    You have the database URL in the "DriverProperties" field
    Valid URL would be : jdbc:mysql://localhost:3306/caps
    !! The doc says that this field is optional !! Seems to be an error in the doc:
    Hope this helps
    Seb

  • External Processing with material Provided to Vendor

    Dear All,
    I have a problem in external processing of Maintenance Order.
    When i have created external processing operation.
    I have assigned one component for that external operation which i have to send to vendor.
    After saving the Maintenance order, system is generating Purchase Requisition for that operation.
    That purchase requisition is having account assignment category F. But it is not picking the item category L and the component assigned for this external operation is not flowing to the purchase requisition.
    Please guide me to solve this issue.
    Thanks & Regards
    Bala

    Hi
    For external service we can use PM03, for that we have to create service sheet and proceed further.
    But here my requirement is, just like PP external processing they are doing one operation outside.
    If you look at PP routing, Operation overview there is given external processing data and there will be subcontracting tick.
    If we tick the sub-contracting button, then system will pick the component assigned to that operation to the Purchase requisition.
    If we don't tick that button, system will not copy the component to PReq. .
    Is there any option available here in PM?
    Please guide me.
    Thanks & Regards
    Bala

Maybe you are looking for

  • How do i transfer docs from a PC to a Mac?

    Just bought a new iMac. I have an older Dell PC. How do I transfter documents?

  • Missing com.apple.dashboard.plist files

    Just upgraded (Tiger 10.4.12 to Leopard 10.5.2). Everything groovy except for Dashboard which will not launch because there is no com.apple.dashboard.plist file in my Library. Any remedies? Or am I going to have to start again and reinstall Leopard t

  • Can any one send functional specs

    hai every body, My name is ravi. can any one send functional specs.. and what is functional specs. how it is useful Awaiting for response. Thank u.

  • Plug in's

    Have installed a number of trials e.g. Ozone, and now want to delete them, but can't figure out how to do this. Any ideas welcome

  • Recommended Practice for Exception handling in JSP portlets

    Hi, This may be a redundant question, but hope to get some feedback on the generally used practice of catching exceptions in a JSP based Portal application. Is it okay to just make use of the standard JSP errorpage directive in each of the JSP portle