在Hive Metastore db中,如何获取alter table的update_time

时间:2017-08-22 07:05:06

标签: mysql hive metastore

我使用" alter table"更改了Hive中的表格。像这样。

alter table tbl_name add columns (...);
alter table tbl_name change col1 col2 string comment 'test';

在Hive Metastore数据库的表TBLS中,它只记录表的create_time。如何获取 alter table 的更新时间。

1 个答案:

答案 0 :(得分:0)

使用以下命令

  

desc格式化tbl_name

并查找 last_modified_time

它将在上次更新时提供给您。 它将在unixtimestamp中。