-
Notifications
You must be signed in to change notification settings - Fork 6
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Export RedCall Data to BigQuery #421
Comments
https://stackoverflow.com/questions/41774233/best-practice-to-migrate-data-from-mysql-to-bigquery Exporting data from MySQL SELECT * INTO OUTFILE 'filename.csv' CHARACTER SET 'utf8' Import into Big Query bq load --field_delimiter="\t" --null_marker="\N" --quote="" If you set the table schema in big query's web interface you won't need to specify it every time you load a CSV. I hope this works for you. |
|
Maybe use something like this : |
BigQuery would be then queried by Google Data Studio or Google Spreadsheet to do some analysis on the data.
(linked to #360, that must be splitted ;))
The text was updated successfully, but these errors were encountered: