私はハイブを新しくしました。 2つの外部ハイブ・テーブルを作成し、sqoopを使用してoracleからデータをインポートしました。また、私は、私は上記の外部表に2つの外部表のデータをマージする方法を知ってはいけない、今2つの外部ハイブテーブルを1つの新しいテーブルにマージする
create external table transaction_usa_canada
(
tran_id int,
acct_id int,
tran_date string,
amount double,
description string,
branch_code string,
tran_state string,
tran_city string,
speendby string,
tran_zip int,
source_table string
)
row format delimited
stored as textfile
location '/user/gds/bank_ds/tran_usa_canada';
を次のように両方のExternal table 1 and External table 2
のデータを持つことになり、新たな外部表を作成しました。
助けてください。
table1とtable2のメタデータを提供できますか。テーブル3も? – Farooque
Plsは私の新しい質問を参照しています... http://stackoverflow.com/questions/37299136/insert-data-of-2-hive-external-tables-in-new-external-table-with-additional -colu – user2998990