oracle spool學習總結
spool常用的設定
set colsep' '; //域輸出分隔符
set echo off; //顯示start啟動的指令碼中的每個sql命令,預設為on
set feedback off; //回顯本次sql命令處理的記錄條數,預設為on
set heading off; //輸出域標題,預設為on
set pagesize 0; //輸出每頁行數,預設為24,為了避免分頁,可設定為0。
set termout off; //顯示指令碼中的命令的執行結果,預設為on
set trimout on; //去除標準輸出每行的拖尾空格,預設為off
set trimspool on; //去除重定向(spool)輸出每行的拖尾空格,預設為off
注:linesize要稍微設定大些,免得資料被截斷, 它應和相應的trimspool結合使用防止匯出的文字有太多的尾部空格。但是如果 linesize設定太大,會大大降低匯出的速度 。
通常情況下,我們使用spool方法,將資料庫中的表匯出為文字檔案的時候會採用兩種方法,如下述: www.2cto.com
方法一:採用以下格式指令碼
set colsep '|' ------設定列分隔符
set trimspool on
set linesize 20000
set pagesize 0
set newpage 1
set heading off
set term off
spool 路徑+檔名
select * from tablename;
spool off
方法二:採用以下指令碼
set trimspool on
set linesize 20000
set pagesize 0
set newpage 1
set heading off
set term off
spool 路徑+檔名
select col1 ||'|'|| col2 ||'|'|| col3 ||'|'|| col4 from tablename;
spool off
比較以上方法,即方法一採用設定分隔符然後由sqlplus自己使用設定的分隔符對欄位進行分割,方法二將分隔符拼接在select語句中,即手工控制輸出格式。
在實踐中,通過方法一匯出來的資料具有很大的不確定性 ,這種方法匯出來的資料再由sqlldr 匯入的時候出錯的可能性在95%以上,尤其對大批量的資料表,如100萬條記錄的表更是如此,而且匯出的資料檔案狂大。
而方法二匯出的資料檔案格式很規整,資料檔案的大小可能是方法一的1/4左右 。經這種方法匯出來的資料檔案再由sqlldr 匯入時,出錯的可能性很小,基本都可以匯入成功。
因此,實踐中建議大家使用方法二 手工去控制spool檔案的格式,這樣可以減小出錯的可能性,避免走很多彎路。
www.2cto.com
sql**
set pagesize 0 feedback off verify off heading off
set time off echo off
set pagesize 0
set linesize 2000
set trims on
set feedback off
set termout off
alter session set nls_date_format='yyyy-mm-dd hh24:mi:ss';
spool sp_test.txt
select pk_id || '|' ||grid_id || '...' from tmp_jy_sys_table_col;
spool off
Oracle spool 用法小結
關於spool spool是sqlplus的命令,不是sql語法裡面的東西。對於spool資料的sql,最好要自己定義格式,以方便程式直接匯入,sql語句如 select taskindex commonindex tasktype to number to char sysdate,yyyymmd...
Oracle spool 用法小結
關於spool spool是sqlplus的命令,不是sql語法裡面的東西。對於spool資料的sql,最好要自己定義格式,以方便程式直接匯入,sql語句如 select taskindex commonindex tasktype to number to char sysdate,yyyymmd...
Oracle spool 用法小結
匯出結果到文字 spool 例如 spool d spool flatquery.txt 這樣,sql plus將把所有的輸出以及在螢幕上的命令等都指定給該檔案。執行查詢輸出。此時,系統並沒有把結果儲存到檔案中,而是儲存到緩衝區中。查詢結束後,關閉檔案即可。命令格式為 spool off。1.對於s...