当前位置:   article > 正文

Sqoop测试命令_linux如何测试sqoop是否能够成功连接数据库

linux如何测试sqoop是否能够成功连接数据库

Sqoop测试命令一:

  1. bin/sqoop import \
  2. --connect jdbc:mysql://hadoop102:3306/gmall \
  3. --username root \
  4. --password 000000 \
  5. --table user_info \
  6. --columns id,login_name \
  7. --where "id>=10 and id<=30" \
  8. --target-dir /test \
  9. --delete-target-dir \
  10. --fields-terminated-by '\t' \
  11. --num-mappers 2 \
  12. --split-by id

Sqoop测试命令二:如果使用双引号,则$之前要加转义字符反斜杠\

  1. bin/sqoop import \
  2. --connect jdbc:mysql://hadoop102:3306/gmall \
  3. --username root \
  4. --password 000000 \
  5. --query "select id,login_name from user_info where id>=10 and id<=30 and \$CONDITIONS" \
  6. --target-dir /test \
  7. --delete-target-dir \
  8. --fields-terminated-by '\t' \
  9. --num-mappers 2 \
  10. --split-by id

Sqoop测试命令三:如果使用单引号,则$之前不需要加转义字符反斜杠\

  1. bin/sqoop import \
  2. --connect jdbc:mysql://hadoop102:3306/gmall \
  3. --username root \
  4. --password 000000 \
  5. --query 'select id,login_name from user_info where id>=10 and id<=30 and $CONDITIONS' \
  6. --target-dir /test \
  7. --delete-target-dir \
  8. --fields-terminated-by '\t' \
  9. --num-mappers 2 \
  10. --split-by id

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/很楠不爱3/article/detail/693471
推荐阅读
相关标签
  

闽ICP备14008679号