Need to find sql/users that is parsing but NEVER executing

hello all,
I have been trying to figure out how to find sql or user who are pharse sql but not executing them. thats becoz my execute to prase % in my AWR report is negative. meaning someone is parsing statements and NEVER executing them. They are just chewing up your CPU, latching the shared pool, killing your performance.
which is not a good thing and i want to find out what user is doing that or what SID or what sql is diong whats its doing. How can i find that out. Any querys out there to do that or ?? THANKS
this is 10.2.0.3 on AIX. and here is part of AWR
Instance Efficiency Percentages (Target 100%)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
            Buffer Nowait %:  100.00       Redo NoWait %:  100.00
            Buffer  Hit   %:   80.74    In-memory Sort %:   99.10
            Library Hit   %:   92.95        Soft Parse %:   91.24
         Execute to Parse %:  -31.89         Latch Hit %:   99.99
Parse CPU to Parse Elapsd %:   87.32     % Non-Parse CPU:   99.92
Edited by: user630084 on Mar 13, 2009 7:51 AM

true i can use that, I am getting about 8 rows out of it and there are about 100+ connections as of now. But here is the thing. As the app use only one schema(lets call it scott). Everybody login thru that schema (scott/tiger)...so that 87 rows that i am getting..all of them are parsing_schema_name=scott and parsing_user_id=55 ..........but i need those 8 users SID...so i can pin point...hey u are the one who is just prasing and not executing...if you know what i mean...so i need that SID...i got the parsing_schema_name and parsing_user_id...but need the SID...so how can i get that ???

Similar Messages

  • We are unable to find a user that matches the Rep.ID and Password you have entered. Please verify and try again. work on IE but now Firefox

    We are unable to find a user that matches the Rep.ID and Password you have entered.
    Please verify and try again.
    I get this error when trying to access my Wild Tree web site
    http://resources.wildtree.com/MyWildtree/RepLogin.aspx?ReturnUrl=%2fmywildtree%2fMain.aspx
    I can log in just fine to the main page, but then they make you log in again as you go deeper into the site for Security reasons. But when I log in the 2nd time, I get the above error. Help

    This can be caused by corrupted cookies or cookies that are blocked (check the permissions on the about:permissions page).
    *https://support.mozilla.org/kb/fix-login-issues-on-websites-require-passwords
    Note that you may have to enable third-party cookies for that domain or for visited sites.
    *Tools > Options > Privacy > Firefox will: "Use custom settings for history"
    Clear the cache and cookies only from websites that cause problems.
    "Clear the Cache":
    *Firefox/Tools > Options > Advanced > Network > Cached Web Content: "Clear Now"
    "Remove Cookies" from sites causing problems:
    *Firefox/Tools > Options > Privacy > Cookies: "Show Cookies"
    If clearing cookies doesn't work then it is possible that the <i>cookies.sqlite</i> file that stores the cookies is corrupted.
    Rename (or delete) <b>cookies.sqlite</b> (cookies.sqlite.old) and delete other present cookies files like <b>cookies.sqlite-journal</b> in the Firefox profile folder in case the file cookies.sqlite got corrupted.
    *http://kb.mozillazine.org/Cookies
    *https://support.mozilla.org/kb/Deleting+cookies

  • HT5622 I need help finding a movie that I downloaded, can anyone help me with this?

    Hello, I need help finding a movie that I downloaded, can anyone help me with this?

    If you downloaded it to your iTunes library it will be in the Movies folder.  If you downloaded it to an iOS device you will find it in the Videos app.  This explains how to redownload previously purchased videos (available in some locations as long as the studio permits it): http://support.apple.com/kb/PH12283.

  • TS1424 i need help finding a purchase that somebody made on my cedit card without my knowledge to itunes and i want to file a claim

    i need help finding a purchase that somebody made on my cedit card without my knowledge titunes and i want to file a claim

    You can view purchases via Store > View My Account on your computer's iTunes (and you can view subscriptions). If you want to contact iTunes support then you can do so via this page : http://www.apple.com/support/itunes/contact/ - click on Contact iTunes Store Support on the right-hand side of the page, then Purchases, Billing & Redemption

  • Can i find a file that was scanned but not renamed?

    can i find a file that was scanned but not renamed?

    Hi johnathong,
    Did you scan the file directly into Acrobat, but didn't save it? If so, the file is most certainly lost, and would need to be rescanned.
    If I misunderstood your question, please let me know.
    Best,
    Sara

  • Find the user that executed the SQL procedure

    We are using Oracle 10g R2 on Linux.
    I want to know the OS user that executed the purging procedure (PURGE). For this, i am using the following query which is not returning any row:
    select *
    from DBA_HIST_ACTIVE_SESS_HISTORY ash, DBA_HIST_SQLTEXT s
    where ASH.SQL_ID = s.SQL_ID
    and UPPER(s.SQL_TEXT) like '%PURGE%';Is the above query fine?

    Moazzam wrote:
    We are using Oracle 10g R2 on Linux.
    I want to know the OS user that executed the purging procedure (PURGE). For this, i am using the following query which is not returning any row:Since what you are doing to get the user indirectly is not working would another approach be helpful?
    Since you want to know who is running the procedure would a log table you could insert into at the start or end of the procedure help, to store the information you are interesting in seeing?
    Or, can you get the information you want from other system views? V$SESSION has the OSUSER column as well as SQL_ID and other join columns for other views (like V$SQL).

  • Need a Dynamic SQL statgement that returns multiple values.

    Hi,
    I'm using Oracle 10.1.0.5.
    In an anonymous block I have a dynamic SQL statement that finds the table name and column name that a string value resides in.
    It looks like this:
          l_sql := 'SELECT 1 FROM dual WHERE exists (SELECT 1 FROM '||
                   r.owner||'.'||r.table_name||' WHERE '||r.column_name||
                   ' = :b1)';
             EXECUTE IMMEDIATE l_sql INTO l_res USING l_contents;
             DBMS_OUTPUT.Put_Line(l_contents||' exists in '||r_owner||
                                  r.table_name||'.'||r.column_name);I'd then like to do a 'Select Distinct' to list all the other values in that column in the anonymous block,
    preferably as another dynamic SQL statement.
    How can I do this?

    user10382685 wrote:
    Hi,
    I'm using Oracle 10.1.0.5.
    In an anonymous block I have a dynamic SQL statement that finds the table name and column name that a string value resides in.
    It looks like this:
    l_sql := 'SELECT 1 FROM dual WHERE exists (SELECT 1 FROM '||
    r.owner||'.'||r.table_name||' WHERE '||r.column_name||
    ' = :b1)';
    EXECUTE IMMEDIATE l_sql INTO l_res USING l_contents;
    DBMS_OUTPUT.Put_Line(l_contents||' exists in '||r_owner||
    r.table_name||'.'||r.column_name);I'd then like to do a 'Select Distinct' to list all the other values in that column in the anonymous block,
    preferably as another dynamic SQL statement.
    How can I do this?Well, it would be nice for you to post the whole context of your present solution so we know what's going on. I'll assume r comes from a loop referencing user_tab_cols or some equivalent view.
    If so, you'll likely need to check the DATA_TYPE column.
    Keeping in mind, doing something like this is going to be pretty ridiculous if you have a large amount of distinct values ... I'm hoping/assuming this is a one off type of thing.
    declare
      type        l_date is table of date;
      v_date      l_date;
      type        l_char is table of varchar2(4000);
      v_char      l_char;
      type        l_numb is table of number;
      v_numb      l_numb;
      l_distinct_ set sys_refcursor;
    begin
      <current_code>
      open l_distinct_set for 'select distinct ' || r.column_name || ' from ' || r.owner||'.'||r.table_name;
      --expand on the data types you care about as needed, this is a BASIC set
      if r.data_type = 'DATE'
      then 
        fetch l_distinct_set bulk collect into v_date;
        <process_collection_as_wanted>
      elsif r.data_type in ('VARCHAR2', 'CHAR')
      then
        fetch l_distinct_set bulk collect into v_char;
        <process_collection_as_wanted>
      elsif r.data_type = 'NUMBER'
      then
        fetch l_distinct_set bulk collect into v_numb;
        <process_collection_as_wanted>
      end if;
      close l_distinct_set;

  • Need to Find A Laptop That Lets Me Play Sims 3 With Ease

    I will be going off to college soon and I will need something to help me pass time between studying, homework, socializing, and class. My favorite game ever is Sims 3! I love the game since I was in grammar school. The thing is I could never find a laptop that successfully let me play. When I got my first laptop I wanted it to play sims 3 right away, but I didn't do any research. So the game kept lagging and what not. I definitely do not want to make that same mistake again. I will have enough money to buy a laptop that will let me play Sims 3 WITH Sims 3 Generations (I hope to get for christmas). So does anyone have an idea of what laptop that can meet my requirements?

    The Sims 3 is not very demanding... so if you run across a laptop with a dedicated video chip you will probably be okay. This is a very generic question as you will get a generic answer. Just find a laptop with a Nvidia chip for video as an example as opposed to "Intel HD Graphics". Get a mid-range or higher rated chip as well. Using the Nvidia 500 series as an example: the 510M would barely be pulling its own weight. 550M Would probably run The Sims 3 more than fine with everything maxed. And 580M+ would be for if you were serious about mobile gaming and wanted higher setting in more demanding games. AMD also has graphics chips with the same concept (They are not bad but I am not going into a lot of detail). Keep in mind these consume more power and will decrease battery life. You can also look into if the laptop can switch inbetween video chips to save on power consumption when you are not playing games.

  • [OIM] Need report for a user that unlock another one

    Great people of OIM realm..
    I need to make a report that can discern about users that were unlocked by an administrator, or by OIM for example, one that pass the challenge-response. Do you know if is there in some part of the data model, a query I can make so I can display USER-DATE_OF_UNLOCK-BY_WHO?
    Thanks!

    Hi Babu,
    <b>Please check out this Blog
    /people/sap.user72/blog/2005/02/23/raising-exceptions-in-sap-xi-mapping
    Also check these blogs ...
    /people/michal.krawczyk2/blog/2005/09/09/xi-alerts--step-by-step
    ALERTS STEP BY STEP MICHAL
    /people/michal.krawczyk2/blog/2005/09/09/xi-alerts--troubleshooting-guide
    ALERTS TROUBLE SHOOTING MICHAL
    /people/krishna.moorthyp/blog/2006/04/08/reconciliation-of-messages-in-bpm
    Reconciliation of messages in BPM
    /people/bhavesh.kantilal/blog/2006/07/25/triggering-xi-alerts-from-a-user-defined-function
    Triggering XI alerts from user defined function
    Thanks,
    Aby

  • Need to create Mail User that Only Sends

    is there a way i can set up a user that can only send emails but not receive? the user does not want any emails to come to this address, but needs to send information occasionally to others via this address.
    i guess this would be much like the 'automated' emails sometimes received that say 'do not reply to this sender'
    thanks in advance

    One way to do this would be to just set up a mail account in your favorite email app, and set all the user information as you like (i.e. name, reply-to address, etc.). Then in Server Admin, just put that user's ip in the list of machines that are allowed to relay. No need to even set up a real account on the server for that user.
    MacBook Pro   Mac OS X (10.4.6)  

  • I need to find an app that will enable me to open videos on FB or that people send me

    I need to know an app that will enable me to open videos that are sent to me both on and off FB

    Well half smart
    I've looked & downloaded a few apps that don't work hence the Question

  • I need to rotate a video that I took, but I don't know how.

    I took a video, but when I imported it onto my computer it is upside-down. Is it possible to rotate it?

    Modern emulators are much more efficient. The current champ seems to be Parallels with most favorable reviews.
    http://www.parallels.com/landingpage/dskd77-2/?source=g_us&gclid=CP6gw4uJoKwCFcp 65QodgTO62A
    Mac OS also comes with Apple's free Boot Camp utility, which allows you to install Windows directly into a special disk partition, without emulation software. Which versions of Windows are supported is dependent on which OS X you have. To switch from one system to another, you need to re-boot into that partition.
    The advantage of virtualization software is that the integration is practically seamless, to the point of not even having to care which of your applications is Mac and which Windows. CPU-intensive games are the weakest point, but not terrible. And, of course, you have to have a copy of Windows to install (full version, not just an update).
    As AE noted, what's best for you depends on what your intended usage is.
    BTW, VirtualPC is no more.
    Message was edited by: Rysz - clarifications

  • How can I find the user that created a user account and the user who last updated the account

    How can I find out who created a user account and who last updated the account. I think that this is the same information that is displayed in the description field on the General tab.
    I am using ADO commands and vbscript
    ug3j

    I should point out that there are two attributes of all AD objects that can help you track down the correct information in the system logs. These are the whenCreated and whenChanged attributes. This will tell when the object was created and when it was last
    modified, which should help when you search the logs. Also, while whenCreated is replicated to all DC's, so they will all have the exact same creation time, the whenChanged attribute is technically not replicated. The date/time on each DC reflects when
    the last modification was replicated to that DC. The values will differ slightly on each DC, reflecting how long it took for the change to replicate.
    Richard Mueller - MVP Directory Services

  • Need To Find All PDFs That Have Extensions Enabled

    I have many PDFs in many folders
    I need to search through them to find any that have extensions enabled
    Can anyone recommend a way to do this?
    Thanks
    Mathias

    bumpup

  • Need Help Finding SQL to Report Fields

    Hi all,
    I have been asked to map for reporting purposes all the fields in the HRMS person and assignment forms, plus vacany requisition and absence.
    For example, on the people form in HRMS the "last Name" field would translate into sql as "per_people_F.last_name".
    I have found all the person/assignment/absence and vacancy fields but cannot find any of the following:
    Bank account/ pay method information.
    Salary previous/ salary proposal form information
    Anything from the element entries screen or the tax information fields.
    Anyone have any ideas which tables would hold this information for querying using developer or toad??

    This forum is specifically for the SQL Developer tool. You are more likely to get answers in one of the application related forums.

Maybe you are looking for