April 2016
Beginner
268 pages
5h 32m
English
In this recipe, you will learn how to create a database in Hive.
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. ...