Subscribe to Blog via Email
Join 1,048 other subscribersArchives
Author Archives: Bobby
Python for the Oracle DBA – Outline/Intro
I want to put together a talk about how useful the Python programming language is for an Oracle database administrator or DBA. I thought that I would start by putting my thoughts down in a blog post as a possible … Continue reading
Posted in Uncategorized
16 Comments
Fix index corruption found using analyze table validate structure
We have struggled with a corrupted database and have gone through too many issues and challenges to document in a blog post. But, I thought I would document the fix to some index corruption that I found during the process. … Continue reading
Posted in Uncategorized
9 Comments
Result cache latch contention
I recently saw a dramatic example of result cache latch contention. I had just upgraded a database to 11.2.0.4 and several hours later processing pretty much came to a halt. Of course I am telling you the end before I … Continue reading
Posted in Uncategorized
3 Comments
Two configuration changes with 11.2.0.4 upgrade
A couple of weeks ago I upgraded a major production database from 11.1.0.7 to 11.2.0.4. Our developers kept hitting one ugly bug after another on the minimally patched 11.1.0.7 so I wanted to get them on the most patched up … Continue reading
Posted in Uncategorized
Leave a comment
September AZORA meeting
The September AZORA meeting has a great lineup of speakers. AZORA is the Arizona Oracle User Group. Republic Services is providing us with an excellent place to meet off of the 101. I’m looking forward to it. Check it out if … Continue reading
Posted in Uncategorized
Leave a comment
Updated PythonDBAGraphs to work from IDLE
I switched from Enthought Canopy to IDLE for Python development when I got my new corporate laptop a few weeks back. Yesterday I realized that I was unable to run a Matplotlib graph from IDLE in my current configuration. Also, … Continue reading
Posted in Uncategorized
Leave a comment
Read Oracle Database 12.2 New Features Manual
I just finished reading the Oracle database 12.2 new features manual. I have postponed looking at 12.2 until now because for a long time 12.2 was not available for download even though it was available in Oracle’s cloud. Once the … Continue reading
Posted in Uncategorized
Leave a comment
SQR with 077 umask creates file with 611 permissions
I ran across this strange situation. An SQR opened a new data file for output and created the file with 611 permissions. We needed group read access so this caused a problem. I knew that our login script for the … Continue reading
Posted in Uncategorized
Leave a comment
Unrolling loop speeds up program
This is a follow-up to my earlier post about the assembly language book that I am working through. I have struggled to speed up a program using something that the book recommends, unrolling a loop. I think I have finally … Continue reading
Posted in Uncategorized
Leave a comment
Modified PythonDBAGraphs to use datetime on X axis
I modified PythonDBAGraphs to use datetime objects on the X axis for all the reports except ashcpu.py. This lets you hover the mouse over a point and see the date and time for the point. Previously I was using text … Continue reading
Posted in Uncategorized
Leave a comment