我正在使用以下代码查询 oracle 数据库:
SET pagesize 0
SET linesize 250
SET wrap ON
SET colsep ,
SET trims ON
SET truncate OFF
SET FEEDBACK OFF
COLUMN col1 format a6
COLUMN col2 format a4
COLUMN col3 format 9999.999
spool /var/tmp/test.dat
SELECT /*+ parallel(8) */
col1,
col2,
col3
FROM table;
spool off
exit
我希望输出文件为:YYYYMMDDHHMMSS_test.dat
最好的方法是什么?