實用小指令碼——mysql/mongo 匯出到本地檔案

呆呆笨笨的魚發表於2017-06-07
一. mongo匯出到本地

點選(此處)摺疊或開啟

  1. #!/bin/bash
  2. set -e
  3. #變數宣告
  4. database=""
  5. table=""
  6. columns=""
  7. query=""
  8. datafile_path=""
  9. #函式定義
  10. usage(){
  11. echo " usage(): $0 [-d 資料庫名] [-t 表名 ] [-c 列名] [-q query條件 ] " 1>&2;
  12. exit 1;
  13. }
  14. #執行
  15. #檢測引數 給 對應變數賦值
  16. while getopts "d:t:c:q:" opt
  17. do
  18. case "$opt" in
  19. d) database=$OPTARG ;;
  20. #t) table=$(echo $OPTARG| tr '[A-Z]' '[a-z]') ;;
  21. t) table=$OPTARG ;;
  22. c) columns=$OPTARG ;;
  23. q) query=$OPTARG ;;
  24. *) usage;;
  25. esac
  26. done
  27. shift $[ $OPTIND - 1 ]

  28. echo "mongoexport --host $mongo_ip --port $mongo_port -u $mongo_user -p $mongo_password --authenticationDatabase=admin --db ${database} --collection ${table} --readPreference='secondaryPreferred' -f ${columns} --query "{${query}}" --type=csv"
  29. mongoexport --host $mongo_ip --port $mongo_port -u $mongo_user -p $mongo_password --authenticationDatabase=admin --db ${database} --collection ${table} --readPreference='secondaryPreferred' -f ${columns} --query "{${query}}" --type=csv | tail -n+2 |sed 's/ObjectID[(]\([0-9a-zA-Z-]\+\)[)]/\1/i' > ${table}.csv

二. mysql 匯出到本地

點選(此處)摺疊或開啟

  1. #!/bin/bash
  2. set -e
  3. #變數宣告
  4. database=""
  5. table=""
  6. columns=""
  7. where=""
  8. datafile_path=""
  9. #函式定義
  10. usage(){
  11. echo " usage(): $0 [-d 資料庫名] [-t 表名 ] [-c 列名] [-w 過濾條件 ] " 1>&2;
  12. exit 1;
  13. }
  14. #執行
  15. #檢測引數 給 對應變數賦值
  16. while getopts "d:t:c:w:" opt
  17. do
  18. case "$opt" in
  19. d) database=$OPTARG ;;
  20. t) table=$(echo $OPTARG| tr '[a-z]' '[A-Z]') ;;
  21. c) columns=$OPTARG ;;
  22. w) where=$OPTARG ;;
  23. *) usage;;
  24. esac
  25. done
  26. shift $[ $OPTIND - 1 ]
  27. #echo "database=${database} , table=${table} , columns=${columns} , where=${where}"
  28. #資料庫連結
  29. mysql_bin="mysql -h$mysql_ip -P$mysql_port -u$mysql_user -p$mysql_password --database=${database}"
  30. #生成SQL語句
  31. SQL_STR=""
  32. if [ ${where} == "" ];then
  33. SQL_STR="select "${columns}" from "${table}";"
  34. else
  35. SQL_STR="select "${columns}" from "${table}" where "${where}";"
  36. fi
  37. echo ${SQL_STR}
  38. #執行SQL語句 匯入到本地檔案
  39. $mysql_bin -N -e "${SQL_STR}" > ${table}.csv


來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/28929558/viewspace-2140390/,如需轉載,請註明出處,否則將追究法律責任。

相關文章