Skip to main content

vw_sql_pool_restore_points

Creates, updates, deletes, gets or lists a vw_sql_pool_restore_points resource.

Overview

Namevw_sql_pool_restore_points
TypeView
Idazure.synapse.vw_sql_pool_restore_points

Fields

See the SQL Definition (view DDL) for fields returned by this view.

SQL Definition

SELECT
location as location,
JSON_EXTRACT(properties, '$.restorePointType') as "restore_point_type",
JSON_EXTRACT(properties, '$.earliestRestoreDate') as "earliest_restore_date",
JSON_EXTRACT(properties, '$.restorePointCreationDate') as "restore_point_creation_date",
JSON_EXTRACT(properties, '$.restorePointLabel') as "restore_point_label",
subscriptionId,
resourceGroupName,
workspaceName,
sqlPoolName,
restorePointName
FROM azure.synapse.sql_pool_restore_points
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND workspaceName = 'replace-me' AND sqlPoolName = 'replace-me';