Category Archives: Uncategorized

Don Burleson

This is the second in a series of posts about different performance tuning authors and speakers who have had a big impact on my career.  My first post was on Craig Shallahamer.  I am ordering these posts chronologically.  Craig was … Continue reading

Posted in Uncategorized | 1 Comment

Using hints with coe_xfr_sql_profile.sql

In an earlier blog post I showed how I used coe_xfr_sql_profile.sql from the sqlt toolkit from Oracle support to force a particular sql statement to run with a more efficient plan that it had used in the past. Today, I’m … Continue reading

Posted in Uncategorized | 10 Comments

Two performance analytics examples this week

I attended two events this week that used the term “analytics” to describe a performance tuning feature that displays metrics in various useful ways. On Tuesday, I attended a Delphix 4.0 Webinar where Delphix’s CTO Adam Leventhal described the new … Continue reading

Posted in Uncategorized | Leave a comment

Finished reading 12c Concepts manual

I decided to read the entire Oracle 12c Concepts manual.  It’s kind of overkill to read the entire manual if you just want to learn the new 12c features but it has been a long time since I’ve read the … Continue reading

Posted in Uncategorized | Leave a comment

Sqlplus script to check for row chaining

Here is the sqlplus scripting I use to check whether row chaining is degrading a query’s performance: VARIABLE monitored_sid number; begin SELECT sid into :monitored_sid from v$session where audsid=USERENV(‘SESSIONID’); end; / select b.value “table fetch continued rows” from V$SESSTAT b … Continue reading

Posted in Uncategorized | Leave a comment

Blog second anniversary

Today is the second anniversary of my first post on this blog. Some time ago I played with a free blog that came with a yahoo email account that my wife and I share but didn’t get very far with … Continue reading

Posted in Uncategorized | Leave a comment

Finished reading multitenant parts of db admin manual

I’m trying to get up to speed on 12c, especially the multitentant features.  So, I decided to read the sections of the manuals that related to using multitentant.  Here is the name of the manual I was looking at: Oracle® … Continue reading

Posted in Uncategorized | Leave a comment

Good blog post on learning Oracle performance

Saw this blog post about how Cary Millsap learned about Oracle performance tuning and I thought it was interesting: http://carymillsap.blogspot.com/2014/02/how-did-you-learn-so-much-stuff-about.html It is interesting because I’ve learned so much from Cary Millsap and Jeff Holt’s book and it is cool to … Continue reading

Posted in Uncategorized | 1 Comment

Updates of tables with query high compression slow

In an earlier post about how query high compression eliminated row chaining in tables with more than 255 columns I got question about whether updates to tables with more than 255 columns and query high compression ran slower with this … Continue reading

Posted in Uncategorized | 2 Comments

Production RMAN recovery

I was on call again last week and again had to do a database recovery using RMAN.  I thought I might as well document some lessons learned even though it went quite smoothly. First, here are the steps I took.  … Continue reading

Posted in Uncategorized | Leave a comment