Testing Clob Field for Null?
Pete88Aug 20 2009 — edited Aug 21 2009Hello
I am trying the test the clob field for null or space without success
I have tried the following
Declare
Data1 Clob;
Begin
if data1 is not null then -- this does not work
if data1 = null --this does not work
if data1 = '' then -- this does not work
What is wrong with my syntax or in my thinking?
All ideas welcome
Thanks
Pete