Created
April 20, 2014 21:43
-
-
Save bradhe/11126024 to your computer and use it in GitHub Desktop.
This file contains 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 raw_facts ( | |
dimension1 STRING, | |
dimension2 STRING, | |
dimension3 STRING, | |
dimension4 STRING, | |
timestamp1 TIMESTAMP, | |
timestamp2 TIMESTAMP, | |
measure1 DECIMAL, | |
measure2 DECIMAL, | |
measure3 DECIMAL | |
) ROW FORMAT | |
DELIMITED FIELDS TERMINATED BY ',' | |
ESCAPED BY '\\' | |
STORED AS TEXTFILE | |
LOCATION 's3n://my-bucket/my-prefix/'; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment