vw_sql_pool_workload_groups
Creates, updates, deletes, gets or lists a vw_sql_pool_workload_groups
resource.
Overview
Name | vw_sql_pool_workload_groups |
Type | View |
Id | azure.synapse.vw_sql_pool_workload_groups |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
JSON_EXTRACT(properties, '$.minResourcePercent') as "min_resource_percent",
JSON_EXTRACT(properties, '$.maxResourcePercent') as "max_resource_percent",
JSON_EXTRACT(properties, '$.minResourcePercentPerRequest') as "min_resource_percent_per_request",
JSON_EXTRACT(properties, '$.maxResourcePercentPerRequest') as "max_resource_percent_per_request",
JSON_EXTRACT(properties, '$.importance') as "importance",
JSON_EXTRACT(properties, '$.queryExecutionTimeout') as "query_execution_timeout",
subscriptionId,
resourceGroupName,
workspaceName,
sqlPoolName,
workloadGroupName
FROM azure.synapse.sql_pool_workload_groups
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND workspaceName = 'replace-me' AND sqlPoolName = 'replace-me';
SELECT
json_extract_path_text(properties, '$.minResourcePercent') as "min_resource_percent",
json_extract_path_text(properties, '$.maxResourcePercent') as "max_resource_percent",
json_extract_path_text(properties, '$.minResourcePercentPerRequest') as "min_resource_percent_per_request",
json_extract_path_text(properties, '$.maxResourcePercentPerRequest') as "max_resource_percent_per_request",
json_extract_path_text(properties, '$.importance') as "importance",
json_extract_path_text(properties, '$.queryExecutionTimeout') as "query_execution_timeout",
subscriptionId,
resourceGroupName,
workspaceName,
sqlPoolName,
workloadGroupName
FROM azure.synapse.sql_pool_workload_groups
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND workspaceName = 'replace-me' AND sqlPoolName = 'replace-me';