I'm working (strictly as a knowledgable user) with an app vendor to extend their support to Oracle. To avoid major changes, they need a way to force a null value ('') into column since a lot of built-in SQL code uses expressions like "COLVAL = ''" rather than "COLVAL IS NULL". The first form apparently works with several other databases but not Oracle.
I tried using a before insert/update trigger to manipulate the incoming value but that didn't work. Can anybody offer any other suggestions?
I tried using a before insert/update trigger to manipulate the incoming value but that didn't work. Can anybody offer any other suggestions?