View Single Post
  #4 (permalink)  
Old 04-29-02, 06:01
rhs98 rhs98 is offline
Super Moderator
 
Join Date: Feb 2002
Location: Hampshire, UK
Posts: 441
just do a sql script!
Code:
set termout off
set hea off
set pagesize 0

spool c:\whatever.csv

select a.a||','||a.b||','||a.c
from a
where a.a="whatever";

spool off
should be quite fast. remeber the ; at the end of the sql select
Reply With Quote