Archives of Support Questions (Read Only)

This is an archived board for historical reference. Information and links may no longer be available or relevant
Announcements
This board is archived and read-only for historical reference. To ask a new question, please post a new topic on the appropriate active board.

How to see a table belong to which database? or what all tables exists in a perticular database?

avatar
New Member

'Show tables' displays all the tables within Hive. Show databases displays all the database name.

How can I see database and tables exists inside same database?

e.g.

Database, table

db1, table1

db1,table2

db2,table1

1 ACCEPTED SOLUTION

avatar
Expert Contributor

If you have permissions to query the Hive metastore database directly, you could:

[root@hadoop01 ~]# mysql -u hive -p
Enter password: 
mysql> USE hive;
Database changed
mysql> SELECT
    ->     name AS db_name,
    ->     tbl_name
    -> FROM TBLS
    -> INNER JOIN DBS
    -> ON TBLS.DB_ID = DBS.DB_ID;
+----------+-------------------+
| db_name  | tbl_name          |
+----------+-------------------+
| medicaid | physician_compare |
| medicaid | sample            |
| medicaid | sample_orc        |
+----------+-------------------+
3 rows in set (0.00 sec)

View solution in original post

2 REPLIES 2

avatar
Expert Contributor

If you have permissions to query the Hive metastore database directly, you could:

[root@hadoop01 ~]# mysql -u hive -p
Enter password: 
mysql> USE hive;
Database changed
mysql> SELECT
    ->     name AS db_name,
    ->     tbl_name
    -> FROM TBLS
    -> INNER JOIN DBS
    -> ON TBLS.DB_ID = DBS.DB_ID;
+----------+-------------------+
| db_name  | tbl_name          |
+----------+-------------------+
| medicaid | physician_compare |
| medicaid | sample            |
| medicaid | sample_orc        |
+----------+-------------------+
3 rows in set (0.00 sec)

avatar
hive> USE DB1; 

Now, commands such as SHOW TABLES, will list the tables in this database DB1