编写shell脚本unload表格里的内容到指定文件里

时间:2023-01-14 15:35:52
 
 
  1. $HOME/.profile
  2. //这里是不赋值环境变量,直接引用.profile文件。
  3. Today=`date +%Y%m%d`
  4. //这里是给当天日期变量赋值
  5. gjfile=khtgjmx.$Today.210000.0000.dat
  6. khfile=khtqykh.$Today.210000.0000.dat
  7. dbaccess gafeywk<<!
  8. //选定数据库
  9. unload to $gjfile select b.xybh,a.ywrq,a.cgje from yltyw_plmxb a ,yltyw_gjxyb b where a.zt='0' and a.shzt='0' and a.ywrq='$Today' and a.zcyhdm=b.gjyhdm  and a.zczh=b.gjyhzh and a.zrzh=b.qyzh ;
  10. //数据库操作语句,意思是把表格里的内容下载到gjfile文件里。
  11. unload to $khfile select zjhm,bljg,xybh,qyzh,zhhm,blrq,gjzqlx,zjlx from yltyw_gjxyb where zt='0';
  12. !
  13. //关闭数据库
  14. gzip -f $gjfile;
  15. gzip -f $khfile;
  16. //压缩文件
  17. echo "正在发送备份文件..."
  18. echo "user gafe gafe"           >ftp.tmp
  19. echo "bin"                      >>ftp.tmp
  20. echo "cd /gafe/ftpdata"         >>ftp.tmp
  21. echo "put $gjwjm.gz"            >>ftp.tmp
  22. echo "put $khwjm.gz"            >>ftp.tmp
  23. echo "bye"                      >>ftp.tmp
  24. ftp -i -n 168.31.63.233         <ftp.tmp
  25. echo "Finished!"
  26. //使用ftpdata把文件发送到java同事要取文件的服务器上。