I have a simple need: I need to see how many queries a vendor’s application is running against our Oracle (11g r2) database. Is there a way to query a system table (e.g. v$...) to see this information?
Thanks!
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Have you looked at V$SQLSTATS? I’m not sure how you’re going to differentiate the vendor-specific SQL from other SQL that might have run, but this could give you a feel for what has been running.
If all you’re interested in is what’s happening now, then perhaps V$SQLAREA is what you want.