Learn R Programming

bigrquery (version 0.1.0)

insert_query_job: Create a new query job.

Description

This is a low-level function that creates a query job. To wait until it is finished and then retrieve the results, see query_exec

Usage

insert_query_job(query, project, destination_table = NULL,
  default_dataset = NULL)

Arguments

query
SQL query string
project
project name
destination_table
(optional) destination table for large queries, either as a string in the format used by BigQuery, or as a list with project_id, dataset_id, and table_id entries
default_dataset
(optional) default dataset for any table references in query, either as a string in the format used by BigQuery or as a list with project_id and dataset_id entries

Value

  • a job resource list, as documented at https://developers.google.com/bigquery/docs/reference/v2/jobs

See Also

API documentation for insert method: https://developers.google.com/bigquery/docs/reference/v2/jobs/insert

Other jobs: get_job; insert_upload_job; wait_for