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

后端 未结 2 1023
遇见更好的自我
遇见更好的自我 2021-02-01 17:51

I created a table in hive as a managed table, but it was supposed to be external, is it possible to change the table type of the table without losing the data?

2条回答
  •  隐瞒了意图╮
    2021-02-01 18:16

    ALTER TABLE  SET TBLPROPERTIES('EXTERNAL'='TRUE')
    

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

    提交回复
    热议问题