Member since
05-01-2016
2
Posts
0
Kudos Received
0
Solutions
05-01-2016
08:25 PM
I ran following queries in Hive worsksheet. drop table if exists temp_batting;
create table temp_batting (col_value STRING);
drop table if exists batting;
create table batting (player_id STRING, year INT, runs INT); Query ran fine but I am unable to see tables in Hive databases even after refreshing Database Explorer view.
... View more