Can I change a table from internal to external in hive?

北慕城南 提交于 2019-12-02 20:37:29
George TeVelde
ALTER TABLE <table> SET TBLPROPERTIES('EXTERNAL'='TRUE')

Note: EXTERNAL and TRUE need to caps or it will not work

You can copy your data files from the Hive data location to the location you planned to store your external table, drop the table and re-create it as external.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!