vw_libraries
Creates, updates, deletes, gets or lists a vw_libraries
resource.
Overview
Name | vw_libraries |
Type | View |
Id | azure.synapse.vw_libraries |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
JSON_EXTRACT(properties, '$.name') as "name",
JSON_EXTRACT(properties, '$.path') as "path",
JSON_EXTRACT(properties, '$.containerName') as "container_name",
JSON_EXTRACT(properties, '$.uploadedTimestamp') as "uploaded_timestamp",
JSON_EXTRACT(properties, '$.type') as "type",
JSON_EXTRACT(properties, '$.provisioningStatus') as "provisioning_status",
JSON_EXTRACT(properties, '$.creatorId') as "creator_id",
subscriptionId,
resourceGroupName,
workspaceName,
libraryName
FROM azure.synapse.libraries
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND workspaceName = 'replace-me';
SELECT
json_extract_path_text(properties, '$.name') as "name",
json_extract_path_text(properties, '$.path') as "path",
json_extract_path_text(properties, '$.containerName') as "container_name",
json_extract_path_text(properties, '$.uploadedTimestamp') as "uploaded_timestamp",
json_extract_path_text(properties, '$.type') as "type",
json_extract_path_text(properties, '$.provisioningStatus') as "provisioning_status",
json_extract_path_text(properties, '$.creatorId') as "creator_id",
subscriptionId,
resourceGroupName,
workspaceName,
libraryName
FROM azure.synapse.libraries
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND workspaceName = 'replace-me';