April 2016
Beginner
268 pages
5h 32m
English
In this recipe, you will learn how to alter table properties in Hive.
The ALTER TABLE properties command alters the table properties. The general format of using the ALTER TABLE command is as follows:
ALTER TABLE table_name SET TBLPROPERTIES table_properties;
Follow these steps to alter a table in Hive. The following statement changes the old comment to a new one:
Alter Table Hive_Test_table SET TBLPROPERTIES ('comment' = 'This is a new comment');