Question: Create a Working with Hive Database -- list available databases show databases; -- create a database for the twitter related analysis create database

Create a Working with Hive Database


 

-- list available databases

show databases;

 

-- create a database for the twitter related analysis

create database twitter;

 

-- change to the twitter database

use twitter;

 

-- check if twitter database has been listed

show databases;

 

-- show database details

describe database extended twitter;

 

 

--------------------------------------

--------------------------------------

Step by Step Solution

3.41 Rating (154 Votes )

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock

The provided code snippet demonstrates working with a Hive database Heres a breakdown of the command... View full answer

blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!