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
Read and write Microsoft Power BI data effortlessly. Access, refresh, and manage datasets, reports, and dashboards — almost no coding required.
Power BI
Dataflows
| Optional Parameters | |
|---|---|
| WorkspaceId | |
Read/write to Dataflows table using API Destination
API Destination - Power BI
Read and write Microsoft Power BI data effortlessly. Access, refresh, and manage datasets, reports, and dashboards — almost no coding required.
Power BI
Dataflows
Select
| Optional Parameters | |
|---|---|
| WorkspaceId | |
ODBC application
Use these SQL queries in your ODBC application data source:
Read dataflows
<p>Gets dataflows from the default workspace. To read from a specific workspace, supply <code>WorkspaceId</code> in the <code>WITH</code> clause.</p>
SELECT *
FROM Dataflows
SQL Server
Use these SQL queries in SQL Server after you create a data source in Data Gateway:
Read dataflows
<p>Gets dataflows from the default workspace. To read from a specific workspace, supply <code>WorkspaceId</code> in the <code>WITH</code> clause.</p>
DECLARE @MyQuery NVARCHAR(MAX) = 'SELECT *
FROM Dataflows';
EXEC (@MyQuery) AT [LS_TO_POWER_BI_IN_GATEWAY];