create database if not exists ${DB}; use ${DB}; drop table if exists nation; create table nation stored as ${FILE} TBLPROPERTIES('orc.bloom.filter.columns'='*','orc.compress'='ZLIB') as select distinct * from ${SOURCE}.nation;