Table Dataflows
Description
No description available
Supported Operations
Below section contains supported CRUD operations. Each operation is executed by some EndPoint behind the scene.Method | Supported | Reference EndPoint |
---|---|---|
SELECT | get_dataflows | |
INSERT | ||
UPDATE | ||
UPSERT | ||
DELETE | ||
LOOKUP |
Examples
SSIS
Use Power BI Connector in API Source component to read data or in API Destination component to read/write data:
Read from Dataflows table using API Source
API Source - Power BI
Connect to your Power BI account and retrieve data, refresh datasets, etc.
Power BI
Dataflows
Optional Parameters | |
---|---|
WorkspaceId |

Read/write to Dataflows table using API Destination
API Destination - Power BI
Connect to your Power BI account and retrieve data, refresh datasets, etc.
Power BI
Dataflows
Select
Optional Parameters | |
---|---|
WorkspaceId |

ODBC application
Use these SQL queries in your ODBC application data source:
Dataflows - Get Dataflows
SELECT *
FROM Dataflows
SQL Server
Use these SQL queries in SQL Server after you create a data source in Data Gateway:
Dataflows - Get Dataflows
DECLARE @MyQuery NVARCHAR(MAX) = 'SELECT *
FROM Dataflows';
EXEC (@MyQuery) AT [LS_TO_POWER_BI_IN_GATEWAY];