运行脚本时用SPOOL保存运行结果的问题
生活随笔
收集整理的這篇文章主要介紹了
运行脚本时用SPOOL保存运行结果的问题
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
很多人都遇到過這樣的情況,在sqlpluws中運行腳本時用SPOOL保存運行結果, 但SPOOL每次都將原來的文件覆蓋了, 目前的Oracle10g就沒這個問題了,示例如下:
| e:>sqlplus xsb@tns1SQL*Plus: Release 10.1.0.2.0 - Production on 星期三 11月 12 20:13:21 2007Copyright (c) 1982, 2004, Oracle. All rights reserved.Connected to: Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Production With the Partitioning, OLAP and Data Mining optionsSQL> spool 1.txt SQL> select *from v$version;BANNER ---------------------------------------------------------------- Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Prod PL/SQL Release 10.2.0.1.0 - Production CORE 10.2.0.1.0 Production TNS for 32-bit Windows: Version 10.2.0.1.0 - Production NLSRTL Version 10.2.0.1.0 - ProductionSQL> spool off SQL> spool append 1.txt SP2-0108: The filenames CREATE, REPLACE, APPEND, FILE, and abbreviations may not be used. SP2-0769: Usage: SPOOL { <file> | OFF | OUT } where <file> is file_name[.ext] [CRE[ATE]|REP[LACE]|APP[END]] SQL> spool 1.txt append SQL> select *from v$version;BANNER ---------------------------------------------------------------- Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Prod PL/SQL Release 10.2.0.1.0 - Production CORE 10.2.0.1.0 Production TNS for 32-bit Windows: Version 10.2.0.1.0 - Production NLSRTL Version 10.2.0.1.0 - ProductionSQL> spool off |
總結
以上是生活随笔為你收集整理的运行脚本时用SPOOL保存运行结果的问题的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: biti_rainy的面试题
- 下一篇: %date:~0,10%用法