I am successfully spooling a tab delimited text file in my sql script. The only issue I am having is the spool file contains unnecessary spaces. I'm assuming this method does not trim off this excess and I'm wondering if there is a way to do this, within the script. I have a user running a .bat file to generate this.
Here is a snip-it of what I'm using to generate this...
col TAB# new_value TAB NOPRINT
select chr(9) TAB# from dual;
set colsep "&TAB"
SPOOL c:\&mmddyy..txt
SELECT
Here is a snip-it of what I'm using to generate this...
col TAB# new_value TAB NOPRINT
select chr(9) TAB# from dual;
set colsep "&TAB"
SPOOL c:\&mmddyy..txt
SELECT