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
The provided code snippet demonstrates working with a Hive database Heres a breakdown of the command... View full answer
Get step-by-step solutions from verified subject matter experts
