Table Comments Using ALTER in Hive

There will be certain database objects introduced during deployments and hotfixes. Comments are frequently used to indicate which item is introduced in which deployment. However, this is true for OLTP.

Comments are also necessary to understand why the object was formed and what information it would store. This is applicable to both OLTP and OLAP.

While creating the database, table, and table columns, Apache Hive allows you to add comments. These comments can be left blank if you don’t want to. In this post, we’ll look at how to add table comments if the table is already exists.

Here is the syntax to add comments while creating the table.
ALTER TABLE <tableName> SET TBLPROPERTIES (‘comment’ = ‘Comments here’);

Example:
ALTER TABLE EMP SET TBLPROPERTIES (‘Comment’ = ‘This table holds the employee info’);

Hope you find this article helpful.

Please subscribe for more interesting updates.

4 comments

  1. Ι will right away grasp your rss feeԁ as I can not find your email subscriptіon link oг e-newsletter
    service. Do you have any? Pleɑse allow me reaⅼize
    in оrder that I may just subscribe. Thanks.

    Like

    1. I spend a lot of time writing blog posts and frequently forget to express gratitude to my readers and followers. Your feedback is really valuable to me. Thanks a lot.

      Like

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Twitter picture

You are commenting using your Twitter account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s