Subscribe to Blog via Email
Join 973 other subscribersArchives
Search Results for: Python
Pushed out new version of PythonDBAGraphs
I pushed out a new version of PythonDBAGraphs. I got a new laptop at work so I am setting it up with the software that I need to do my job. I decided that instead of reinstalling Enthought Canopy I would go … Continue reading
Posted in Uncategorized
Leave a comment
Simple Python for Oracle database tuning example
I ran across a stackoverflow question and it gave me an idea for a simpler use of Python to graph some Oracle database performance information. I looked at my PythonDBAGraphs scripts and I’m not sure that it is worth modifying … Continue reading
Posted in Uncategorized
11 Comments
Running SQL*Plus from a Python script
I needed to write a new script that was running on a Red Hat Linux 6 virtual machine and that would connect to databases using SQL*Plus. I was going to write a bash shell script but decided to use Python instead … Continue reading
Posted in Uncategorized
48 Comments
Quickly built new Python graph SQL execution by plan
I created a new graph in my PythonDBAGraphs to show how a plan change affected execution time. The legend in the upper left is plan hash value numbers. Normally I run the equivalent as a sqlplus script and just look … Continue reading
Posted in Uncategorized
2 Comments
Thinking about using Python scripts like SQL scripts
I’ve used Python to make graphs of Oracle database performance information. I put the scripts out on GitHub at https://github.com/bobbydurrett/PythonDBAGraphs. As a result I’m keeping my Python skills a little fresher and learning about git for version control and GitHub as a … Continue reading
Posted in Uncategorized
Leave a comment
Python DBA Graphs Github Repository
I decided to get rid of the Github repository that I had experimented with and to create a new one. The old one had a dump of all my SQL scripts but without any documentation. But, I have updated my … Continue reading
Posted in Uncategorized
Leave a comment
Another python graph – one wait event
Here is another graph that I created in Python with Pyplot: This is onewait.py in my PythonDBAGraphs repository. myplot.py has the plotting code. db.py has the database access code. I blanked out the database name in the example graph to hide … Continue reading
Posted in Uncategorized
3 Comments
Trying Python and Pyplot for Database Performance Graphs
In the past I have used Excel to graph things related to Oracle database performance. I am trying out Python and the Pyplot library as an alternative to Excel. I took a graph that I had done in Excel and rewrote it in … Continue reading
Posted in Uncategorized
4 Comments
Reminder: Great free computer science and Python programming class starts Wednesday
I mentioned this class earlier in a blog post but I wanted to remind people who read this blog that the class is starting again on Wednesday. Here is the URL for the class: link The class is completely free and … Continue reading
Posted in Uncategorized
Leave a comment
Algorithms
I have been working through several online classes and books related to algorithms and I wanted to see connections between the different resources that I have used. I thought I would publish those connections here. At this point I only … Continue reading
Comments Off on Algorithms