How to list all hive databases being in use or created so far?

前端 未结 3 1484
离开以前
离开以前 2021-02-18 14:29

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

3条回答
  •  不思量自难忘°
    2021-02-18 15:07

    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'.

提交回复
热议问题