vw_sql_pool_restore_points
Creates, updates, deletes, gets or lists a vw_sql_pool_restore_points
resource.
Overview
Name | vw_sql_pool_restore_points |
Type | View |
Id | azure.synapse.vw_sql_pool_restore_points |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
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';
SELECT
location as location,
json_extract_path_text(properties, '$.restorePointType') as "restore_point_type",
json_extract_path_text(properties, '$.earliestRestoreDate') as "earliest_restore_date",
json_extract_path_text(properties, '$.restorePointCreationDate') as "restore_point_creation_date",
json_extract_path_text(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';