oracle - Can I have each record start and end with a specific character in SQL*Plus? -
i'm trying format output sql script csv. i'm going passing in select statement parameter, can't use select clause accomplish this. i've arrived @ close:
set echo off set feedback off set wrap off set newpage none set pagesize 50000 set heading on set underline off set colsep '","' set tab on set trimspool on set headsep off set linesize 500 spool output.csv
this produces close i'd like. missing quotes opening doublequote first column, , closing doublequote last column.
is there way sqlplus command?
Comments
Post a Comment