Shell指令碼實現DB2資料庫表匯出到檔案

來源:互聯網
上載者:User

標籤:db2   匯出   shell   export   


該Shell指令碼用於實現將DB2資料庫表匯出到檔案,將在另一篇博文《Java代碼調用Shell指令碼並傳入參數實現DB2資料庫表匯出到檔案》中通過Java代碼實現調用該指令碼並傳入參數。

#!/usr/bin/env shDBSCHEMA=$1DBUSER=$2DBPASSWORD=$3TABLENAME=$4FILEPATH=$5DELIMITER=$6EXPORTLIMIT=$7SQLERR="NO ERROR MSG"############################################################# : wlog String  ############################################################wlog () {   wlog_dt=`date "+%Y/%m/%d-%H:%M:%S" `   echo "\n${wlog_dt} $1"}############################################################# : db2connect db2connstring############################################################connDB2() {wlog "====================connect to $1======================="    wlog "db2 connect to $1 user $2 "##conn=db2 connect to $1 user $2 using $3 > /dev/nullif( db2 connect to $1 user $2 using $3 > /dev/null )thenwlog "Succeed connect to $1 "elsewlog "Failed connect to $1 "exit -1fi}############################################################# : db2connectRelease db2connstring############################################################releaseDB2() {db2 connect reset  > /dev/null}############################################################# : db2export############################################################exportDB2() {connDB2 ${DBSCHEMA} ${DBUSER} ${DBPASSWORD}sql=" select * from ${TABLENAME} ${EXPORTLIMIT}"wlog "export to ${FILEPATH} of del modified by codepage=1208 COLDEL| ${sql}: "db2 "export to ${FILEPATH} of del modified by nochardel codepage=1208 COLDEL| ${sql}"}############################################################# : main############################################################run() {#connDB2 ${DBNODE} ${DBUSER} ${DBPASSWORD} ${DBNAME}#sql=" select inter_no,op_time from inter_log "#db2 -x ${sql}| while read inter_no op_time#do#echo "Result:${inter_no}->${op_time}"#doneecho "Begin to export the data: "exportDB2echo "Close the connection."releaseDB2}echo "execute sql ................."run


其中以下匯出命令將會去除匯出檔案中字串的雙引號:

db2 "export to ${FILEPATH} of del modified by nochardel codepage=1208 COLDEL| ${sql}"

COLDEL指定了分隔字元為|


如果需要保留字元串雙引號命令:

db2 "export to ${FILEPATH} of del modified by codepage=1208 COLDEL| ${sql}"


本文出自 “Forever_Love_ING” 部落格,請務必保留此出處http://dwf07223.blog.51cto.com/8712758/1553382

Shell指令碼實現DB2資料庫表匯出到檔案

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.