Last active
August 29, 2015 13:56
Create Table At Alternative Path
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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