Author Archives: Bobby

About Bobby

I live in Chandler, Arizona with my wife and three daughters. I work for US Foods, the second largest food distribution company in the United States. I have worked in the Information Technology field since 1989. I have a passion for Oracle database performance tuning because I enjoy challenging technical problems that require an understanding of computer science. I enjoy communicating with people about my work.

Exchange Partition Example

I put together an example of how to do an exchange partition to meet a specific need in our environment.  It might be helpful to others though your situation may vary.  It is a self-contained test script in a zip. … Continue reading

Posted in Uncategorized | Leave a comment

Full scan performance on tables with more than 255 columns

Production issue We have some production tables with more than 255 columns and are experiencing performance degradation on queries that access certain columns.  I was able to show that a full table scan with a where clause condition including one … Continue reading

Posted in Uncategorized | 1 Comment

Testing removing subpartitions from a table with query testing package

I thought I would start this blog post before I finished this testing so I wouldn’t forget what I’m doing along the way.  Usually I just write something up after I’m done and then I may forget all I’ve done … Continue reading

Posted in Uncategorized | Leave a comment

Four Dimensions of DBA Activity

This week I am reviewing my accomplishments for 2013 and thinking of possible goals for 2014 in preparation for my annual performance review.  After reviewing my notes about what I did this year and brainstorming about what I want to … Continue reading

Posted in Uncategorized | 1 Comment

Good blog post – OK to be the DBA I am

This is a good blog post.  I’ve come back to it multiple times to get perspective on my career and involvement in the Oracle community: Tim Hall blog post on why you shouldn’t try to become an Oracle ACE I … Continue reading

Posted in Uncategorized | Leave a comment

Default degree may cause performance problems

I encourage people that I work with to put a small number like 8 as the parallel degree when they want to create tables or indexes to use parallel query.  For example: SQL> create table test parallel 8 as select … Continue reading

Posted in Uncategorized | 2 Comments

How to find queries that use subpartition statistics

Yesterday I was trying to figure out if any queries on a particular production database were using subpartition statistics on a certain table.  We are having trouble getting the statistics gathering job to finish gathering stats on all the subpartitions … Continue reading

Posted in Uncategorized | Leave a comment

CPU Queue Time as SQL*Net wait

I was testing a script that did a lot of very short SQL statements and running many of them at the same time to bog down the CPU on the database server.  I kept seeing high “SQL*Net message from client” … Continue reading

Posted in Uncategorized | 2 Comments

Session profile using V$ tables

Hopefully this is not too redundant to previous posts but I’ve found that I keep using a particular script to debug performance issues and I thought I’d share it and explain what I use it for.  It’s helpful to me … Continue reading

Posted in Uncategorized | Leave a comment

Same plan hash value different partition range

Today I saw two different plans with the same plan hash value but different numbers of partitions.  So, the partition numbers must not factor into the plan hash value.  So, you can’t count on the plan hash value to fully … Continue reading

Posted in Uncategorized | 5 Comments