Skip to content

Instantly share code, notes, and snippets.

Embed
What would you like to do?
How to unset TBLPROPERTIES in Hive
-- unset a subset of the properties and some non-existed properties without if exists
ALTER TABLE testTable UNSET TBLPROPERTIES ('c', 'x', 'y', 'z');
Releavnt Link - https://github.com/apache/hive/search?utf8=%E2%9C%93&q=unset&type=
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment