How to find the child of the request id for a given simultaneous request id.

Hi all
I'm having a concurrent request id. How can I find any child request ID it can be seen.


Thank you

Please see these documents.

REQUESTS.sql Script for Parent/child request ID and Trace File [280295.1 ID]
How to check the Dates at the end of a concurrent request of Parent and all the child processes [ID 751438.1], start and list

Thank you
Hussein

Tags: Oracle Applications

Similar Questions

  • NB200 - how to find the 3G module for it?

    Hello

    Pls how I find the 3G module in my NB200 - PLL20E?

    Thank you

    Hello

    What do you mean exactly?
    You want to upgrade your NB200 with a card 3G?

    If yes then you must make sure that your NB200 could be improved using this card.
    I'm not sure if this is possible.

    But don t give up boyfriend Toshiba authorized service partner in your country could provide details.
    Guys might be able to tell if this is possible and could provide a good 3G module

    If you get more details please share with us!

    See you soon

  • How to find the audio driver for HP sleekbook

    Can not find the audio driver for my HP laptop...

    I bought the new elegant book, model no HP. Elegant Pavilion book 15th-b001

    After 2-3 months, I found my laptop speakers weren't working and its got very slow. I couldn't do so I kept using headphones.
    recently, I've run the driverpack and accidentally a few update audio driver and voice my laptop has increased incredibly, I was surprised, it was very good,

    but now, I've updated my windows 8 to 10 and all the previous driver deleted and voice became too slow as it used to be.,.
    now I run the driverpack 15 which is a more up-to-date version, but they did not update this driver, and always the voice of my laptop is too slow.
    I don't know the exact name of that drivers, how do I know the name of that drivers?
    on the internet, I tried too many drivers audio, high definition, etc., but the result is zero,
    con someone help me about this?

    http://ftp.HP.com/pub/SoftPaq/sp59501-60000/sp59802.exe

  • How to find the latest diagnostics for 11i patches

    How to find the latest patches of diagnostics for 11i, all documents.

    You can find the latest patch in (Note: 167000.1 - Guide of Installation of E-Business Suite Diagnostics).

    You can also check (Note: 235307.1 - E-Business Suite Diagnostics Tools FAQ and Troubleshooting Guide for version 11i and R12).

    Thank you
    Hussein

  • How to find the license key for WINDOWS 8.1 which was preinstalled?

    I bought a Dell Inspiron laptop 14-5447 which has 8.1 pre-installed WINDOWS. I made a recovery disk, but I could not find anywhere license key. I don't need to have a license key, if I ever need to re - install the OS? How can I find the license key? Thank you

    The key is stored in THE system BIOS, and is read automatically during a re - install if necessary.  You can see the key using one of the utilities such as Belarc Advisor free system scan.

  • How to find the product key for pre-installed WIndows 7 Home Premium?

    I bought a laptop that was provided with Windows Home pre-installed permium.

    How can I load Windows once more, because I don't have the key? How can I find the key on my laptop?

    Look for the COA sticker, normally at the bottom or in the battery compartment:

    COA certificate of authenticity:

    http://www.Microsoft.com/howtotell/content.aspx?PG=COA

    What is the certificate of authenticity for Windows?

    http://Windows.Microsoft.com/en-us/Windows7/what-is-the-Windows-certificate-of-authenticity

  • How to find the serial number for old acrobat version

    Hello

    I have an official serial number for acrobat 9 based on an acrobat upgrade older 6. But for the last I 'can' t find the serial number... How to get it?

    If you purchased or registered with adobe, make sure the account used at the time, Adobe ID

    If its currently installed on an old computer, it can be retrieved from this computer.

  • How to find the serial number for Lightroom 6 autonomous

    I just bought a stand-alone version of Lightroom 6 complete installation in a box retail and try to install it on a Windows machine.

    The installer is one displayed a screen with 6 small boxes where I enter the serial number.  This file on the DVD provided says "You can find the serial number of 24 digits (e.g. 0000 0000 0000 0000 0000 0000) on the back of your door-DVD".  I guess that means that the white paper envelope which contained the DVD.

    There is no number of 24 digits on the envelope.  The back of the envelope contains a small sticker on the lower right corner with two lines.

    -The first line contains a start with the number 9 eight-digit number.

    -The second line contains a mix of 30 letters and special characters starting with DVS/A, LTRM, 6.0, etc.

    (I did not provide the full character set snacks is a unique code for this DVD.)  Please let me know if it needs more.)

    The installation program will accept only characters alpha, only numbers.  Could you please tell me how to locate the 24 digit number he needs.  I can't find it on the envelope.  The box of the product has an Adobe sticker o back, with multiple numbers, but none is a 24 digit number.

    Your help would be appreciated.

    Thank you.

    Problem solved.

    Found the number on the secondary area containing the DVD.

    What is confusing is yesterday I installed Photoshop Elements and the serial number sticker was on the back of the envelope of white paper, not the box insert, so that's where I was initially looking for her.  It's just the opposite for Lightroom.  My suggestion would be to do the things constantly between products.

    Thank you

  • How to find the versions supported for Internet Explorer

    Can someone tell me please how to find which versions of Internet Explorer are supported by versions of interactive reporting. I've been hitting my head against the wall, trying to find documentation that will give me this information. I'm not so interested in someone tell me the answer that I'm finding a way to get the answer.

    Any help much appreciated.

    Dave

    This depends on the version of IR

    You can see the http://www.oracle.com/technetwork/middleware/epm/documentation/index.html support matrix

    in the above url, select the EMP and find same support matrix.

  • How to find the rank lowest for each student using a Select query?

    Hey I'm having a little trouble here

    I have this table


    Student - Grade

    John - 8
    Richard - 9
    Louis - 9
    Francis - 5
    John - 13
    Richard - 10
    Peter - 12

    Shades may vary from 0 to 20.

    Name - varchar (50)
    Grade - wide

    I'm trying to generate a SQL search to search for each rank lowest for each student.

    So far, I did:

    Select s.name, s.grade
    s student
    where s.grade = (select min (grade) of student)

    The result of this search returns me only the rank lowest of all ranks posted above, which is Francis - 5.

    I want to find the lowest rank, but not only for Francis, but for all students in the table.

    How do I do that?

    Thank you in advance.

    Ok

    Now we head into analytical SQL:

    with student as (select 'John' name, 8 grade, 'fail' result from dual union all
                     select 'John' name, 13 grade, 'pass' result from dual union all
                     select 'Francis',     5 grade,  'fail' from dual union all
                     select 'Peter', 12, 'pass' from dual)
    -- End of your test data
    SELECT   name,
             MAX (result) KEEP (DENSE_RANK FIRST ORDER BY grade) result,
             MIN (grade) min_grade
    FROM     student
    GROUP BY name
    

    Please note that I passed ;)

    Concerning
    Peter

    To learn more:
    http://download.Oracle.com/docs/CD/B19306_01/server.102/b14200/functions056.htm#SQLRF00641

  • How to find the exact motherboard for Satellite P100-347 model?

    Hello
    I hope someone could help me. I'm looking for a new motherboard for my computer toshiba laptop because it replaced needs.

    I own a laptop Satellite P100-347 of pspa6e-03302cen and have not been able to find this anywhere online forum. Although I found two suppliers of many motherboards of p100, they use numbers of alternative model in which I can't find anywhere in my documents or on the computer. The model numbers they use are something like A000008350 or a number starting with k. I'm sure that the supplier I found has the motherboard, I would need but I would need a list of all the numbers of the other party for my laptop, or a way to find the exact numbers. Any help on this is appreciated...
    Thank you

    To be honest I really don't think that someone here can offer you this info. As you know, this info is for internal use and you can try to get this info from service provider authorized in your country. Sorry, but I don't see a better solution, except to wait here and hope someone can help.

    Good luck!

  • How to find the mobile average for perticular time step for the same time series

    Hi all

    I'm new in labview and I have a question. I have a huge text with the value of different pressure of various ports.

    I do the VI in which all first I read the text file and identify the column of perticular port. In this column, there is pressure value 32768.

    Port of Port 102 times Num Port 101 103... Port 532

    0         1

    2 0.001

    .          .

    .          .

    50 32768

    And reading this all takes 50 sec and I divide this reading in 4.5 sec... There are in all 4.5 sec 2969 values...

    Now, please check the attached VI... I am able to find the average value in step 12 2969 value time...

    Now, I want to do is to find the average value of 2969 (2970 to 5938) values with time of 12 steps and so on up to 32768. It is 11 times in the series...

    So anyone can change my VI?

    Thank you

    Hello

    Thank you very much. It's the perfect VI that suits my needs.

    Thank you again... Have a great day ahead.

  • How to find the product key for a game online on Steam?

    I'm playing a game that connects to live on steam. He asked my windows product key which I didn't, but I discovered how to get without going through it. I got about 5 + programs for giving me my product key number anyway. But I always get an error message. I checked it more than 10 times. Still does not work. Is it possible for a person to miscrosoft to give me or I can call and they can give me?

    Hello Elias1724,

    Steam ask the product key for the game and not your product key for the Windows operating system.

    Where did you buy the game to install it?
    You bought the game on Steam? If so, then they would need the product key.
    Have you received an email with a link to download the game?

    It is not your Windows product key.

    Sincerely,

    Marilyn

  • How to find the user oracle for a planning application search

    Hello
    I know how to take backup but I dnt seem to remember the user that I created in oracle to the planning application and there are many users that there are many applications on the sytem, how to know which is the user for a particular planning application
    Thanks in advance

    I would of thought you would name a name of data source with the same name as the planning application, it makes it a lot easier, the naming scheme of names with the same name also keeps everything the same.
    If you can not link the name of the data source for the name planning then you will need to look at the system of planning and HSPSYS_DATASOURCE and HSPSYS_APPLICATION tables, this allows linking by ID.

    See you soon

    John
    http://John-Goodwin.blogspot.com/

  • How to find the scoring rules for Mahjong Titans?

    Where can I find a complete description of the rules for Mahjong Titans rating? We like to play, but absolutely confused by notation. Help boards offer a bit of insight, but we would like to know exactly about this game is marked, the tiles score more, when, how, etc.

    Thank you!

    Hi bowoman,

    Thanks for posting your concern in the Microsoft Forum.
    It's a nice game that requires precision and work of the spirit.
    There are a few links that will explain the rules of the game Mahjong Titans.

    Here are the links: 1) How to play Mahjong Titans: http://windows.microsoft.com/en-IN/windows7/Mahjong-Titans-how-to-play  

    (2) http://windowshelp.microsoft.com/Windows/en-US/help/1cf4d1f7-b5a6-4819-ab0c-e273f7088fdd1033.mspx 
     
    Hope this information was useful.

    Sangeeta displayed
    Microsoft Answers Support Engineer
    Visit our Microsoft answers feedback Forum and let us know what you think.

  • How to find the sid, serial # for sql in v$ sqlarea

    Hello

    10 gr 2
    in order to dig the session that runs particular sql
    say querying v$ sqlarea and get sql_id
    now how to map at the session of v$

    Look at the v$ active_session_history and dba_hist_sqltext and you should be able to find what you are looking for, if you have the possibility of using these views.

Maybe you are looking for