Category Archives: Uncategorized

Top Ten Posts So Far

Just for fun I’ve pasted in a table listing the top 10 most viewed posts on this blog as links and including total number views since this blog began in March 2012.  I based this on WordPress’s statistics so I’m … Continue reading

Posted in Uncategorized | Leave a comment

Exadata compression reduces row chaining > 255 columns

After I did my previous post on how adding a column to a table with more than 255 columns can cause a ton of row chaining the question came up about Exadata and the form of compression we use on … Continue reading

Posted in Uncategorized | 4 Comments

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