Re: Find / Kill Sessions Running Duplicate SQL with Duplicate Bind Var. Values?

  • From: Stefan Koehler <contact@xxxxxxxx>
  • To: oracle-l <Oracle-L@xxxxxxxxxxxxx>, jack.applewhite@xxxxxxxxxxxxx
  • Date: Fri, 19 Feb 2016 20:45:52 +0100 (CET)

Hi Jack,

I'm trying to craft a query using v$Session and v$SQL_Bind_Capture to do this 
automatically, looking for duplicate SQL_IDs with duplicate bind
variable values.

This will not work as V$SQL_BIND_CAPTURE does not provide the information you 
are looking for. For more information please check Jonathan's blog post
and especially the comment section: 
https://jonathanlewis.wordpress.com/2008/07/24/bind-capture/

However in theory there is a technical solution for your request. The currently 
used bind variables can be dumped with an errorstack trace as it
includes cursor information. Afterwards you have to grep the binds and compare 
for all the corresponding processes which are running the particular
SQL. This is how it would technically work, but i strongly disagree with this 
approach / solution.

I strongly recommend Kellyn's approach to find and fix the root cause. It saves 
resources, time and makes the application more stable.

Best Regards
Stefan Koehler

Freelance Oracle performance consultant and researcher
Homepage: http://www.soocs.de
Twitter: @OracleSK
 
Jack Applewhite <jack.applewhite@xxxxxxxxxxxxx> hat am 19. Februar 2016 um 
19:34 geschrieben:

 Environment: 11.2.0.4 Enterprise on Oracle Linux 5.11.

 We have a mix of 3rd Party OTS Apps and home-grown Apps. In both cases we 
are frequently plagued by impatient Users clicking Go or whatever,
launching the same SQL several times in a row. We have no control over the 
Vendor Apps and we're thumping our Developers on the head frequently to
build in some prevention for that, but, of course, they're slow to respond to 
us.

 Often these duplicates chew up lots of CPU because they're inefficient to 
begin with - slow, which is why Users multi-click. We find them, verify
they're duplicates, and kill them, but that's very time-consuming.

 I'm trying to craft a query using v$Session and v$SQL_Bind_Capture to do 
this automatically, looking for duplicate SQL_IDs with duplicate bind
variable values. I'm looking to pivot the rows in v$SQL_Bind_Capture to 
columns for easier comparison. The pivot SQL has to be dynamic, since
different SQLs have different numbers of bind variables, but I found an Ask 
Tom posting on how. I'm thinking that, if I can find these sets of
duplicates, I can automatically kill all but the first-launched.

 I've Googled and looked around, but am finding nothing about such an 
automated process. Is there one out there? Am I an idiot for trying to do
this?

 Any guidance would be appreciated.
 TIA
 ----
 Jack C. Applewhite - Database Administrator
 
--
//www.freelists.org/webpage/oracle-l


Other related posts: