vw_datasets
Creates, updates, deletes, gets or lists a vw_datasets
resource.
Overview
Name | vw_datasets |
Type | View |
Id | azure.data_factory.vw_datasets |
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, '$.structure') as "structure",
JSON_EXTRACT(properties, '$.schema') as "schema",
JSON_EXTRACT(properties, '$.linkedServiceName') as "linked_service_name",
JSON_EXTRACT(properties, '$.parameters') as "parameters",
JSON_EXTRACT(properties, '$.annotations') as "annotations",
JSON_EXTRACT(properties, '$.folder') as "folder",
subscriptionId,
resourceGroupName,
factoryName,
datasetName
FROM azure.data_factory.datasets
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, '$.structure') as "structure",
json_extract_path_text(properties, '$.schema') as "schema",
json_extract_path_text(properties, '$.linkedServiceName') as "linked_service_name",
json_extract_path_text(properties, '$.parameters') as "parameters",
json_extract_path_text(properties, '$.annotations') as "annotations",
json_extract_path_text(properties, '$.folder') as "folder",
subscriptionId,
resourceGroupName,
factoryName,
datasetName
FROM azure.data_factory.datasets
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND factoryName = 'replace-me';