How to download all data in a Google BigQuery dataset? -
is there easy way directly download data contained in dataset on google bigquery? i'm downloading "as csv", making 1 query after another, doesn't allow me more 15k rows, , rows need download on 5m. thank you
you can run bigquery extraction jobs using web ui, command line tool, or bigquery api. data can extracted
for example, using command line tool:
first install , auth using these instructions: https://developers.google.com/bigquery/bq-command-line-tool-quickstart
then make sure have available google cloud storage bucket (see google cloud console purpose).
then, run following command: bq extract my_dataset.my_table gs://mybucket/myfilename.csv
more on extracting data via api here: https://developers.google.com/bigquery/exporting-data-from-bigquery
Comments
Post a Comment