2017-12-18 5 views
0
Create table d_rel_t.Acty_dim_Csv(acty_cde   int, 
            acty_nm   string, 
            acty_typ   string, 
            gdgs_ind   string, 
            dly_growth_ind  string, 
            grc_ind   string, 
            acty_txn_lob_cde string, 
            txn_prd_seg_cde string 
           ) 
Row format delimited fields terminated by ',' 
partitioned by(acty_ctgry_cde string); 

エラー 'で' 'パーティション' 付近に入力を認識することはできません「(」serdeプロパティ仕様エラー文のコンパイル中に失敗しました::FAILED:はParseExceptionライン10:0はできませんはParseExceptionライン10:ステートメントのコンパイル中0 '(' serdeプロパティ仕様の

に、私はこのエラーを取得しています「」「によって仕切ら」、

答えて

0

partitioned byrow format仕様の前に行くお勧めしてください。

近くの入力を認識
create table d_rel_t.Acty_dim_Csv(acty_cde   int, 
            acty_nm   string, 
            acty_typ   string, 
            gdgs_ind   string, 
            dly_growth_ind  string, 
            grc_ind   string, 
            acty_txn_lob_cde string, 
            txn_prd_seg_cde string 
           ) 
partitioned by(acty_ctgry_cde string) 
row format delimited fields terminated by ',' 
; 
関連する問題