Tags
ajax apache apple bioinformatics catalyst command-line css eee ego firefox funny geek gem git google html ie iphone javascript leopard linux mac microsoft mysql oracle os x perl postgresql prototype r rant ruby safari sql tablekit tool tutorial twitter ubuntu vmware webdev windows wordpress xbox xbox360Categories
Archives
- March 2010
- February 2010
- January 2010
- September 2009
- August 2009
- July 2009
- May 2009
- April 2009
- March 2009
- February 2009
- January 2009
- December 2008
- November 2008
- October 2008
- September 2008
- July 2008
- June 2008
- May 2008
- April 2008
- March 2008
- February 2008
- January 2008
- December 2007
- November 2007
- October 2007
- September 2007
Category Archives: oracle
Installing the Ruby Bindings for Oracle on Mac OS X
This quick crib sheet is for the guys at work (and anyone else who might need help on this one)… First install the oracle instant client somewhere - I normally install it to /usr/local/oracle/instantclient_10_2. Then… cd /usr/local/oracle/instantclient_10_2 ln -s libclntsh.dylib.10.1 … Continue reading
Remove Case-Sensitivity in Oracle
Oracle is a great RDBMS, but the fact that searches against the database are case-sensitive can be a pain in the butt. Here’s how you can make searches case-insensitive…
MySQL 4.X to Oracle Notes
Stumbled across this useful page full of examples and notes on how MySQL 4.x and Oracle differ, and how you can avoid complications if you want to migrate a database between the two… About once a year I need to … Continue reading
Log/Audit Tables in Oracle
One of the useful things that i’ve been asked to set-up lately is automatic logging of changes to several of our database tables. My first thought was to do this in Perl (as the rest of the system is in … Continue reading
Auto-Increment ID’s in Oracle
This is old news to most people who have been using Oracle for a while, but to me this is something new that I learnt today. How to have MySQL like “auto-increment” id’s for your tables in Oracle. Here’s an … Continue reading