Browse Category: Uncategorized

The Easy Way to Make a Matte Black Pickguard

I needed a matte black pickguard with a single humbucker and fit for a Floyd Rose tremolo. The only option I had was to special order one. Instead I saved $20 by ordering a standard black pickguard and used a white super fine Scotch Brite pad to make the finish matte. In order to get the finish to look right, I only scoured lengthwise. Scouring in one direction gives the plastic the best finish. Do not swirl. 👍🎸

How to Delete Records and Reclaim Space from an Oracle Database

oracle-dbI had inherited an Oracle database at work which Operations uses for different tasks. The database grows by thousands of records everyday from collecting network data. One day the system stopped working. I had performed an investigation and discovered there was no more space available in the tablespace because several tables were full of network data. The only choice was to delete the old records. After deleting records, I realized the tables’ sizes were not shrinking. So I did a Google search online to find out why. I found there are three extra steps which are needed to be performed after deleting records. Here they are:

  1. ALTER TABLE MYTABLE ENABLE ROW MOVEMENT;
  2. ALTER TABLE MYTABLE SHRINK SPACE;
  3. ALTER TABLE MYTABLE SHRINK SPACE CASCADE;

That’s it. That is what you need to do to keep a healthy and tidy Oracle database.

 

 

 

 

Hello world!

Welcome to WordPress. This is your first post. Edit or delete it, then start writing!