美文网首页
spark表中,修改SERDEPROPERTIES

spark表中,修改SERDEPROPERTIES

作者: hbtszyt | 来源:发表于2018-09-29 11:29 被阅读0次

    无分区:

    alter table credit_feature.20180824_morpho_label_df set serdeproperties(

    'hdfs://wejoyservice/user/hive/warehouse/credit_feature.db/20180824_morpho_label_df'

    );

    有分区:

    alter table tablename partition(dt=‘xxxx‘) set serdeproperties(‘field.delim‘=‘\t‘);

    布置只有外部表可以指定location,内部表也可以指定location。 

    alter table table_name [partition(...)] set location ‘path‘

    相关文章

      网友评论

          本文标题:spark表中,修改SERDEPROPERTIES

          本文链接:https://www.haomeiwen.com/subject/oyyvoftx.html