Google Cloud BigQuery data warehouse for analytics and machine learning
bigquery.listDatasets
projectId
(TEXT, Required): The Google Cloud project ID containing the datasetsbigquery.listTables
projectId
(TEXT, Required): The Google Cloud project ID
datasetId
(TEXT, Required): The dataset ID containing the tablesbigquery.getTableSchema
projectId
(TEXT, Required): The Google Cloud project ID
datasetId
(TEXT, Required): The dataset ID containing the tabletableId
(TEXT, Required): The table ID to get schema information forbigquery.executeQuery
projectId
(TEXT, Required): The Google Cloud project ID to execute the query in
query
(MULTI_LINE_TEXT, Required): The SQL query to execute in BigQueryuseLegacySql
(BOOLEAN, Optional): Whether to use legacy SQL syntax (default: false for Standard SQL)jobReference
: Job reference informationtotalRows
: Total number of rows in the resultrows
: Array of result rows containing field valuesschema
: Schema of the result fieldsjobComplete
: Whether the job completed successfullybigquery.getTableData
projectId
(TEXT, Required): The Google Cloud project ID
datasetId
(TEXT, Required): The dataset ID containing the tabletableId
(TEXT, Required): The table ID to retrieve data frommaxResults
(NUMBER, Optional): Maximum number of rows to return (optional)bigquery.createDataset
projectId
(TEXT, Required): The Google Cloud project ID
datasetId
(TEXT, Required): The ID for the new datasetdescription
(TEXT, Optional): Optional description for the datasetlocation
(TEXT, Optional): Geographic location for the dataset (e.g., US, EU)bigquery.createTable
projectId
(TEXT, Required): The Google Cloud project ID
datasetId
(TEXT, Required): The dataset ID to create the table intableId
(TEXT, Required): The ID for the new tabledescription
(TEXT, Optional): Optional description for the tableschema
(MULTI_LINE_TEXT, Optional): Table schema as JSON array of field objects (optional)bigquery.insertTableData
projectId
(TEXT, Required): The Google Cloud project ID
datasetId
(TEXT, Required): The dataset ID containing the tabletableId
(TEXT, Required): The table ID to insert data intorows
(MULTI_LINE_TEXT, Required): JSON array of row objects to insertignoreUnknownValues
(BOOLEAN, Optional): Whether to ignore unknown values in the dataskipInvalidRows
(BOOLEAN, Optional): Whether to skip rows that contain invalid databigquery.getDatasetInfo
projectId
(TEXT, Required): The Google Cloud project ID
datasetId
(TEXT, Required): The dataset ID to get information forIssue | Solution |
---|---|
Authentication failed | Verify your OAuth credentials |
Rate limit exceeded | Reduce request frequency |
Data not found | Check permissions and data availability |
Connection timeout | Verify network connectivity |