0
HIVEテーブルからHANAにデータをエクスポートしようとしています.Sqoopエクスポートコマンドの--hcatalog
テーブルオプションを使用してデータをエクスポートできます。クエリを使用したSqoopエクスポート
しかし句
がsqoop exportコマンドにqueryオプションを使用することが可能とされている場合と、クエリオプションを使用してデータをロードしようとしたときに問題に直面して?
私のサンプル・スクープコマンドは
sqoop export -D sqoop.export.records.per.statement=1 -D mapreduce.map.memory.mb=16384 -D mapreduce.map.java.opts=-Xmx16384m --connect "jdbc:xxxxxx" --driver "com.sap.db.jdbc.Driver" --username "xxxxx" --password "xxxxxx" --table "hanaschema.table1" --query "select field1,substr(field2,1),field3,field4,from "hadoopschema.table" where field1 = 2017 and field3 = 4" --input-null-string '\\N' --input-null-non-string '\\N' --num-mappers 20 –-validate
おかげ Srini
あなたのテーブル構造は何ですか? – TKHN