vw_restorable_dropped_sql_pools
Creates, updates, deletes, gets or lists a vw_restorable_dropped_sql_pools
resource.
Overview
Name | vw_restorable_dropped_sql_pools |
Type | View |
Id | azure.synapse.vw_restorable_dropped_sql_pools |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
location as location,
JSON_EXTRACT(properties, '$.databaseName') as "database_name",
JSON_EXTRACT(properties, '$.edition') as "edition",
JSON_EXTRACT(properties, '$.maxSizeBytes') as "max_size_bytes",
JSON_EXTRACT(properties, '$.serviceLevelObjective') as "service_level_objective",
JSON_EXTRACT(properties, '$.elasticPoolName') as "elastic_pool_name",
JSON_EXTRACT(properties, '$.creationDate') as "creation_date",
JSON_EXTRACT(properties, '$.deletionDate') as "deletion_date",
JSON_EXTRACT(properties, '$.earliestRestoreDate') as "earliest_restore_date",
subscriptionId,
resourceGroupName,
workspaceName,
restorableDroppedSqlPoolId
FROM azure.synapse.restorable_dropped_sql_pools
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND workspaceName = 'replace-me';
SELECT
location as location,
json_extract_path_text(properties, '$.databaseName') as "database_name",
json_extract_path_text(properties, '$.edition') as "edition",
json_extract_path_text(properties, '$.maxSizeBytes') as "max_size_bytes",
json_extract_path_text(properties, '$.serviceLevelObjective') as "service_level_objective",
json_extract_path_text(properties, '$.elasticPoolName') as "elastic_pool_name",
json_extract_path_text(properties, '$.creationDate') as "creation_date",
json_extract_path_text(properties, '$.deletionDate') as "deletion_date",
json_extract_path_text(properties, '$.earliestRestoreDate') as "earliest_restore_date",
subscriptionId,
resourceGroupName,
workspaceName,
restorableDroppedSqlPoolId
FROM azure.synapse.restorable_dropped_sql_pools
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND workspaceName = 'replace-me';