vw_service_objectives
Creates, updates, deletes, gets or lists a vw_service_objectives
resource.
Overview
Name | vw_service_objectives |
Type | View |
Id | azure.sql.vw_service_objectives |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
JSON_EXTRACT(properties, '$.serviceObjectiveName') as "service_objective_name",
JSON_EXTRACT(properties, '$.isDefault') as "is_default",
JSON_EXTRACT(properties, '$.isSystem') as "is_system",
JSON_EXTRACT(properties, '$.description') as "description",
JSON_EXTRACT(properties, '$.enabled') as "enabled",
subscriptionId,
resourceGroupName,
serverName,
serviceObjectiveName
FROM azure.sql.service_objectives
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND serverName = 'replace-me';
SELECT
json_extract_path_text(properties, '$.serviceObjectiveName') as "service_objective_name",
json_extract_path_text(properties, '$.isDefault') as "is_default",
json_extract_path_text(properties, '$.isSystem') as "is_system",
json_extract_path_text(properties, '$.description') as "description",
json_extract_path_text(properties, '$.enabled') as "enabled",
subscriptionId,
resourceGroupName,
serverName,
serviceObjectiveName
FROM azure.sql.service_objectives
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND serverName = 'replace-me';