Czy chcesz po prostu sprawdzić CLOB, który nie ma żadnej długości? Chociaż nie jest to dokładnie to, o co pytasz, to w zasadzie to samo?
select *
from bar
where dbms_lob.getlength(foo) = 0;
Oto kompletny test:
SQL> create table bar (foo clob);
Table created.
SQL> insert into bar values (empty_clob());
1 row created.
SQL> select *
2 from bar
3 where dbms_lob.getlength(foo) = 0;
FOO
--------------------------------------------------------------------------------