I have created a table in hive, I would like to know which directory my table is created in?
- 阅读更多 关于 I have created a table in hive, I would like to know which directory my table is created in?
问题 I have created a table in hive, I would like to know which directory my table is created in? I would like to know the path... 回答1: DESCRIBE FORMATTED my_table; or DESCRIBE FORMATTED my_table PARTITION (my_column='my_value'); 回答2: There are three ways to describe a table in Hive. 1) To see table primary info of Hive table, use describe table_name; command 2) To see more detailed information about the table, use describe extended table_name; command 3) To see code in a clean manner use describe