April 2016
Beginner
268 pages
5h 32m
English
In this recipe, you will learn how to use a database in Hive.
The USE DATABASE command is used to switch to the database, or it sets the database as the working database. It is analogous to the one used in the other RDBMS. The general format of using a database is as follows:
USE (DATABASE|SCHEMA) database_name;
Where:
DATABASE|SCHEMA: These are the same thing. These words can be used interchangeably.
The following command sets the database as the working database:
Use database Hive_learning;