您好,登錄后才能下訂單哦!
現(xiàn)業(yè)務(wù)部門有需求,需要每天定時把數(shù)據(jù)庫里的一些特定數(shù)據(jù)導(dǎo)出來,最好能以日期命名加以區(qū)分存檔。
這里選用是oracle的sqlplus工具。理由就是簡單快捷高效,可以跨平臺,linux和win都可以操作,直接借助oracle的客戶端就能完成,不行sqlldr那樣復(fù)雜。
關(guān)于spool指令的參數(shù),這里就不多敘述了,網(wǎng)上隨便就能搜到,直接上腳本吧(我這里選的是windows平臺)
scott.sql如下:
set colsep , set feedback off set heading on set trimout on set pagesize 50 set linesize 80 set numwidth 10 set termout off set trimout on set underline off col datestr new_value filename select 'D:\test\scott_'||to_char(sysdate,'yyyymmdd')||'.csv' datestr from dual; spool &filename select a.empno,a.ename,a.sal from emp a; spool off exit
注:
col datestr new_value filename select 'D:\test\scott_'||to_char(sysdate,'yyyymmdd')||'.csv' datestr from dual; spool &filename
其中這一部分是定義導(dǎo)出文件的變量,取得是數(shù)據(jù)庫時間
另外準(zhǔn)備一個連接數(shù)據(jù)庫的bat腳本,select.bat:
sqlplus scott/scott@HSDB @scott.sql pause
具體執(zhí)行效果如下圖,想了解更多歡迎評論交流
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。