vw_data_flows
Creates, updates, deletes, gets or lists a vw_data_flows
resource.
Overview
Name | vw_data_flows |
Type | View |
Id | azure.data_factory.vw_data_flows |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
id as id,
name as name,
type as type,
etag as etag,
JSON_EXTRACT(properties, '$.type') as "type",
JSON_EXTRACT(properties, '$.description') as "description",
JSON_EXTRACT(properties, '$.annotations') as "annotations",
JSON_EXTRACT(properties, '$.folder') as "folder",
subscriptionId,
resourceGroupName,
factoryName,
dataFlowName
FROM azure.data_factory.data_flows
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND factoryName = 'replace-me';
SELECT
id as id,
name as name,
type as type,
etag as etag,
json_extract_path_text(properties, '$.type') as "type",
json_extract_path_text(properties, '$.description') as "description",
json_extract_path_text(properties, '$.annotations') as "annotations",
json_extract_path_text(properties, '$.folder') as "folder",
subscriptionId,
resourceGroupName,
factoryName,
dataFlowName
FROM azure.data_factory.data_flows
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND factoryName = 'replace-me';