Thread
:
external table
View Single Post
#
4
(
permalink
)
03-29-2006, 08:43 PM
Anurag Varma
Guest
Posts: n/a
Re: external table
Create a view on top of ext table and replace null with space/whatever
you want.
create myview as select nvl(col1,' '), ...... from ext_table;
Anurag
Anurag Varma