Thread: external table
View Single Post
  #4 (permalink)  
Old 03-29-2006, 08:43 PM
Anurag Varma
Guest
 
Posts: n/a
Default 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

Reply With Quote