vw_start_stop_managed_instance_schedules
Creates, updates, deletes, gets or lists a vw_start_stop_managed_instance_schedules
resource.
Overview
Name | vw_start_stop_managed_instance_schedules |
Type | View |
Id | azure.sql.vw_start_stop_managed_instance_schedules |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
systemData as system_data,
JSON_EXTRACT(properties, '$.description') as "description",
JSON_EXTRACT(properties, '$.timeZoneId') as "time_zone_id",
JSON_EXTRACT(properties, '$.scheduleList') as "schedule_list",
JSON_EXTRACT(properties, '$.nextRunAction') as "next_run_action",
JSON_EXTRACT(properties, '$.nextExecutionTime') as "next_execution_time",
subscriptionId,
resourceGroupName,
managedInstanceName,
startStopScheduleName
FROM azure.sql.start_stop_managed_instance_schedules
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND managedInstanceName = 'replace-me' AND startStopScheduleName = 'replace-me';
SELECT
systemData as system_data,
json_extract_path_text(properties, '$.description') as "description",
json_extract_path_text(properties, '$.timeZoneId') as "time_zone_id",
json_extract_path_text(properties, '$.scheduleList') as "schedule_list",
json_extract_path_text(properties, '$.nextRunAction') as "next_run_action",
json_extract_path_text(properties, '$.nextExecutionTime') as "next_execution_time",
subscriptionId,
resourceGroupName,
managedInstanceName,
startStopScheduleName
FROM azure.sql.start_stop_managed_instance_schedules
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND managedInstanceName = 'replace-me' AND startStopScheduleName = 'replace-me';