INFO-如何再创建表时开启表元数据自动同步

适用模块

hive

具体说明

创建表时开启表元数据自动同步

使用示例

1Create table时使用:

create table xx.xx (id int,name string) TBLPROPERTIES ('SYNC_METASTORE'='ON');

2CTAS时使用:

create table xx.xx TBLPROPERTIES ('SYNC_METASTORE'='ON') as select xx from xx.xxx;

作者:林帅