spool用法小結

2021-04-29 06:23:41 字數 3423 閱讀 2057

關於spool(spool是sqlplus的命令,不是sql語法裡面的東西。)

對於spool資料的sql,最好要自己定義格式,以方便程式直接匯入,sql語句如:

select taskindex||'|'||commonindex||'|'||tasktype||'|'||to_number(to_char(sysdate,'yyyymmdd')) from ssrv_sendsms_task;

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

匯出文字資料的建議格式:

sql*plus環境設定set newpage none

set heading off

set space 0

set pagesize 0

set trimout on

set trimspool on

set linesize 2500

注:linesize要稍微設定大些,免得資料被截斷,它應和相應的trimspool結合使用防止匯出的文字有太多的尾部空格。但是如果 linesize設定太大,會大大降低匯出的速度,另外在windows下匯出最好不要用plsql匯出,速度比較慢,直接用commend下的 sqlplus命令最小化視窗執行。

方法一:採用以下格式指令碼 

set colsep '|'               --設定|為列分隔符

set trimspool on

set linesize 120

set pagesize 2000         

set newpage 1

set heading off           

set term off

set num 18                 

set feedback off           

spool 路徑+檔名

select * from tablename;

spool off

方法二:採用以下指令碼

set trimspool on

set linesize 120

set pagesize 2000

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檔案的格式,這樣可以減小出錯的可能性,避免走很多彎路。

自測例:將ssrv_sendsms_task表中的資料匯出到文字(資料庫oracle 9i  作業系統 suse linux enterprise server 9)

spool_test.sh指令碼如下:

#!/bin/sh

db_user=zxdbm_ismp                               #db user

db_pwd=zxin_smap                                 #db password

db_serv=zx10_40_43_133                           #db service name

send_day=`sqlplus -s $db_user/$db_pwd@$db_serv<

執行./spool_test.sh後生成sp_test.txt,內容如下:

83|115|1|20080307

85|115|11|20080307

86|115|10|20080307

84|115|2|20080307

6|5|14|20080307

7|5|12|20080307

9|5|15|20080307

set time off echo off head off

set trimspool on

set termout off

set pagesize 0

set colsep ","

set trims on

set trimout on;

set feedback off

spool d:/test.csv

select rownum||','||empno||','||ename from emp;

spool off

附:用spool匯出資料庫到文字

建立檔案ex.sql

set heading off

set echo off

set term off

set line 0

set pages 0

set feed off

spool /users/oracle/outa.txt

select point_id,domain_id as newcloumn from cctv_di_point where domain_id<3;

spool off;

set heading on

set echo on

set term on

set feed on

quit

在cmd控制台開啟sql plus

輸入sqlplus name/passwd @ex.sql

執行成功後,即可在/users/oracle/outa.txt中看到輸出內容。

#說明:此檔案可生成於客戶端或者資料庫伺服器端。??

spool用法小結

2008 9 24 14 33 00 檢視學習心得 關於spool spool是sqlplus的命令,不是sql語法裡面的東西。對於spool資料的sql,最好要自己定義格式,以方便程式直接匯入,sql語句如 select taskindex commonindex tasktype to numb...

oracle中spool的用法小結

在生產中常會遇到需要將數量比較大的錶值匯入到本地文字檔案中.方法有很多種,比較常用的就是spool命令 要輸出符合要求格式的資料檔案只需在select時用字元連線來規範格式。比如有如下表 sql select id,username,password from myuser 測試表 1 john 1...

Spool報表小結

spool報表 解釋 set colsep 域輸出分隔符 set echo off 顯示start啟動的指令碼中的每個sql命令,預設為on set feedback off 回顯本次sql命令處理的記錄條數,預設為on set heading off 輸出域標題,預設為on set pagesiz...