Reference

Endpoint Create Dataset


Name

post_dataset

Description

Creates a new empty dataset. [API reference]

Parameters

Parameter Required Options
Name: Name

Label: Dataset Name

Enter dataset name
YES
Name: ProjectId

Label: ProjectId

Name: Description

Label: Description

Output Columns

Label Data Type (SSIS) Data Type (SQL) Length Description
datasetId DT_WSTR nvarchar(255) 255
projectId DT_WSTR nvarchar(255) 255
kind DT_WSTR nvarchar(100) 100
id DT_WSTR nvarchar(100) 100
location DT_WSTR nvarchar(100) 100
friendlyName DT_WSTR nvarchar(255) 255
description DT_WSTR nvarchar(1000) 1000
access DT_WSTR nvarchar(1000) 1000
If the column you are looking for is missing, consider customizing Google BigQuery Connector.

Input Columns

Label Data Type (SSIS) Data Type (SQL) Length Description
There are no Static columns defined for this endpoint. This endpoint detects columns dynamically at runtime.

Examples

SSIS

Use Google BigQuery Connector in API Source or in API Destination SSIS Data Flow components to read or write data.

API Source

API Source - Google BigQuery
Read / write Google BigQuery data inside your app without coding using easy to use high performance API Connector
Google BigQuery
Create Dataset
Required Parameters
Dataset Name Fill-in the parameter...
Optional Parameters
ProjectId
Description This is dataset description
SSIS API Source - Read from table or endpoint

API Destination

API Destination - Google BigQuery
Read / write Google BigQuery data inside your app without coding using easy to use high performance API Connector
Google BigQuery
Create Dataset
Required Parameters
Dataset Name Fill-in the parameter...
Optional Parameters
ProjectId
Description This is dataset description
SSIS API Destination - Access table or endpoint

ODBC application

Use these SQL queries in your ODBC application data source:

Create dataset

SELECT * FROM post_dataset
WITH
(
    "Name" = 'abcd-1234-name'
)

SQL Server

Use these SQL queries in SQL Server after you create a data source in Data Gateway:

Create dataset

DECLARE @MyQuery NVARCHAR(MAX) = 'SELECT * FROM post_dataset
WITH
(
    "Name" = ''abcd-1234-name''
)';

EXEC (@MyQuery) AT [LS_TO_GOOGLE_BIGQUERY_IN_GATEWAY];