Oracle spool

j04212發表於2014-02-14


spool { file_name[.ext] [creat|replace|append] | off | out }

file_name:檔名
create:建立新檔案
replace:替換已有的檔案內容或建立新檔案(若檔案不存在),次選項為預設選項。
append:將緩衝區的內容新增到指定檔案的末尾
off:停止
out:停止並將檔案傳送到預設印表機上。此選項在有些作業系統上不可用。


SCOTT@ test11g> set linesize 100

SCOTT@ test11g> spool /u01/dept.txt
SCOTT@ test11g> select * from dept;

    DEPTNO DNAME          LOC
---------- -------------- -------------
        10 ACCOUNTING     NEW YORK
        20 RESEARCH       DALLAS
        30 SALES          CHICAGO
        40 OPERATIONS     BOSTON

SCOTT@ test11g> spool off;

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/27633655/viewspace-1081506/,如需轉載,請註明出處,否則將追究法律責任。

相關文章