Skip to content

Fetch From BigQuery

Description

The Fetch From BigQuery activity allows you to retrieve structured data by executing SQL queries on Google BigQuery, a serverless, highly scalable, and cost-effective cloud data warehouse.

This activity connects to your Google Cloud project, runs the specified query, and returns the results in tabular format. It is ideal for pulling real-time analytics, data transformations, or integrating cloud data into your workflow pipelines.

Use case:
Fetch customer order data by region for the last quarter directly from BigQuery to feed a dashboard or analytics engine.


Input

Not Applicable


Output

Output TypeFormatDescription
DataTableOutput of the executed BigQuery SQL query.

Configuration Fields

Field NameDescription
ConnectionGoogle BigQuery connection (OAuth or service account). Required for access.
ProjectGoogle Cloud Project ID containing the BigQuery datasets.
QueryThe SQL query string to be executed. Supports standard SQL syntax.

Sample Input

Not Applicable


Sample Configuration

FieldValue
ConnectionGoogle BigQuery OAuth
Projectcustomer-data-analytics
QuerySELECT region, COUNT(*) AS orders FROM orders_table WHERE order_date >= '2024-01-01' GROUP BY region

Sample Output

RegionOrders
North America15892
Europe10234
APAC7865