JavaOne and Oracle Develop 2010

July 15, 2010 by · Leave a Comment 

Tomorrow is the last day for early-bird registration discounts.

JavaOne and Oracle Develop 2010

Enforce Data Integrity With Check Constraints

November 23, 2008 by · Leave a Comment 

I came across some code the other day that simply horrified me. I was looking at a table that had a field name which implied it stored a boolean value (e.g. IS_LAUGHABLE). The field type is defined as a char(1), allows NULL values and defined no default value. Looking at the data in the column I found a combination of the following values: T, F, Y, and N. Read more