Question

Similar to SHOW TABLES command, do we have any such command to list all databases created so far?

Was it helpful?

Solution

This page mentions the command SHOW DATABASES.

From the manual:

SHOW (DATABASES|SCHEMAS) [LIKE identifier_with_wildcards];

SHOW DATABASES lists all of the databases defined in the metastore. The optional LIKE clause allows the list of databases to be filtered using a regular expression. Wildcards in the regular expression can only be '' for any character(s) or '|' for a choice. Examples are 'employees', 'emp', 'emp*|*ees', all of which will match the database named 'employees'.

OTHER TIPS

show databases;

The above query will list all the databases available in the hive metastore.

For any such queries involving metadata of the objects, you must use the hive metastore deployed on databases such as MySQL or likes of MySQL. You can use the hive database installed on metastore and use the INFORMATION_SCHEMA views/tables for your queries

If you need to search database based on wildcards then we can use below commands

show databases like '%<DB_NAME>'

use your database name in place of <DB_NAME>

This will work

hive>show databases like 'office*';

It will display all databases whose name start wirh

show databases;

This query should work

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top