Hive - How to see the table created in metastore?

后端 未结 4 1482
广开言路
广开言路 2020-12-10 06:30

Here is our setup - We have Hive that uses MySQL on another machine as a metastore. I can start the Hive command line shell and create a table and describe it. But when I lo

4条回答
  •  悲哀的现实
    2020-12-10 06:58

    You can query the metastore schema in your MySQL database. Something like:

    mysql> select * from TBLS;

    More details on how to configure a MySQL metastore to store metadata for Hive and verify and see the stored metadata here.

提交回复
热议问题