标签:
http://blog.csdn.net/dbanote/article/details/8907650
目前版本的Sqoop中,使用自由形式查询导入,只提供简单的查询,没有复杂的和“OR”条件查询在where子句中。
http://blog.csdn.net/niityzu/article/details/42835273
sqoop list-databases --connect jdbc:mysql://54.75.233.199:3306/ --username greenwave --password green4irvine
sqoop import --connect jdbc:mysql://54.75.233.199:3306/gwr --username greenwave --password green4irvine --table AccountStats -m 1
sqoop import --connect jdbc:mysql://54.75.233.199:3306/gwr --username greenwave --password green4irvine --split-by Period -e ‘select s.*, a.UtilityAccountID from AccountStats s, Account a where a.AccountID=s.AccountID and $CONDITIONS‘ --target-dir /data -m 2
m 表示mapreduce进程数
标签:
原文地址:http://www.cnblogs.com/dataclimber/p/4920443.html