Skip to content

Instantly share code, notes, and snippets.

@virmundi
Last active August 29, 2015 13:56
Create Table At Alternative Path
CREATE EXTERNAL TABLE page_view(viewTime INT, userid BIGINT,
page_url STRING, referrer_url STRING,
ip STRING COMMENT 'IP Address of the User')
COMMENT 'This is the staging page view table'
ROW FORMAT DELIMITED FIELDS TERMINATED BY '\054'
STORED AS TEXTFILE
PARTITIONED BY(country STRING)
LOCATION '/shared/hive/tables/page_view';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment