Skip to content

Instantly share code, notes, and snippets.

@yujihamaguchi
Last active August 29, 2015 14:04
Show Gist options
  • Save yujihamaguchi/f30aa24815e881a2e869 to your computer and use it in GitHub Desktop.
Save yujihamaguchi/f30aa24815e881a2e869 to your computer and use it in GitHub Desktop.
[Redshift] COPYコマンド
COPY <table name> FROM 's3://<bucket name>/<dir name>/'
credentials 'aws_access_key_id=<access key>;aws_secret_access_key=<secret key>'
NULL AS 'This is null value'
GZIP
COPY <table name> FROM 's3://<bucket name>/<dir name>/<file name>.csv'
credentials 'aws_access_key_id=<access key>;aws_secret_access_key=<secret key>' CSV DATEFORMAT 'YYYYMMDD' TRIMBLANKS
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment