Power BI Connector
Documentation
Version: 2
Documentation
Endpoint

Insert Rows into Push Dataset Table


Name

insert_push_dataset_table_rows

Description

Inserts rows into a Push Dataset Table

Related Tables

[Dynamic Table]

Parameters

Parameter Label Required Options Description
TableName TableName YES
DatasetId DatasetId NO
WorkspaceId WorkspaceId NO
Option Value
Default

Output Columns

Label Data Type (SSIS) Data Type (SQL) Length Raw Description
Status DT_WSTR nvarchar(30) 30 False
If the column you are looking for is missing, consider customizing Power BI Connector.

Input Columns

Label Data Type (SSIS) Data Type (SQL) Length Raw Description
-Dynamic- DT_WSTR nvarchar(4000) 4000 False
Required columns that you need to supply are bolded.

Examples

SSIS

Use Power BI Connector in API Source component to read data or in API Destination component to read/write data:

Insert into [Dynamic Table] table using API Destination

This Endpoint belongs to [Dynamic Table] table, therefore you cannot work with it directly. Use this table and table-operation pair instead:

Power BI
[Dynamic Table]
Insert
SSIS API Destination - Access table operation

ODBC application

Use these SQL queries in your ODBC application data source:

Insert Rows into Push Dataset Table

-- We are out of SQL query examples for this Endpoint, sorry!
-- But will try to get some very very soon!

insert_push_dataset_table_rows endpoint belongs to [Dynamic Table] table(s), and can therefore be used via those table(s).

SQL Server

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

Insert Rows into Push Dataset Table

DECLARE @MyQuery NVARCHAR(MAX) = '-- We are out of SQL query examples for this Endpoint, sorry!
-- But will try to get some very very soon!';

EXEC (@MyQuery) AT [LS_TO_POWER_BI_IN_GATEWAY];

insert_push_dataset_table_rows endpoint belongs to [Dynamic Table] table(s), and can therefore be used via those table(s).