Creating a database schema
In this recipe, you will learn how to create a database in Hive.
Getting ready
The Create Database
statement is used to create a database in Hive. By default, there is a database in Hive named default
.
The general format of creating a database is as follows:
CREATE (DATABASE|SCHEMA) [IF NOT EXISTS] database_name [COMMENT database_comment] [LOCATION hdfs_path] [WITH DBPROPERTIES (property_name=property_value, ...)];
Where:
DATABASE|SCHEMA
: These are the same thing. These words can be used interchangeably.[IF NOT EXISTS]
: This is an optional clause. If not used, an error is thrown when there is an attempt to create a database that already exists.[COMMENT]
: This is an optional clause. This is used to place a comment for the database. ...
Get Apache Hive Cookbook now with O’Reilly online learning.
O’Reilly members experience live online training, plus books, videos, and digital content from 200+ publishers.