我需要从sql表到CSV文件进行后台处理,但是我遇到的问题是后台处理正在删除文件的原始内容。
如果文件具有原始内容,我需要在文件末尾进行假脱机
有什么帮助吗?
set echo off
set heading ON
set verify off
set feedback off
set show ON
set pagesize 5000
Set colsep ";"
set linesize 800
SET trimspool ON
set NEWPAGE none
set UNDERLINE OFF
set TRIMSPOOL ON
set TRIMOUT ON
COL col1 FORMAT A100
COL col2 FORMAT A100
COL col3 FORMAT A50
spooltext.csv;
SELECT /*csv*/ col1,
col2,
col3,
col4,
col5,
col6
FROM table1;
exit;