Created
June 13, 2018 16:40
-
-
Save crawles/c70e1389bb98e2076b29ab29df41826b to your computer and use it in GitHub Desktop.
How to load a TSV file into BigQuery
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
# Can work for other delimiters as well | |
# Tab delimiter | |
bq load --source_format=CSV --field_delimiter=tab \ | |
--skip_leading_rows 1 -<destination_table> <source> \ | |
<schema> | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment