Skip to main content

sql_pool_operation_results_location_header_results

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

Overview

Namesql_pool_operation_results_location_header_results
TypeResource
Idazure.synapse.sql_pool_operation_results_location_header_results

Fields

NameDatatypeDescription
collationtextfield from the properties object
create_modetextfield from the properties object
creation_datetextfield from the properties object
locationtextThe geo-location where the resource lives
max_size_bytestextfield from the properties object
operationIdtextfield from the properties object
provisioning_statetextfield from the properties object
recoverable_database_idtextfield from the properties object
resourceGroupNametextfield from the properties object
restore_point_in_timetextfield from the properties object
skutextThe resource model definition representing SKU
source_database_deletion_datetextfield from the properties object
source_database_idtextfield from the properties object
sqlPoolNametextfield from the properties object
statustextfield from the properties object
storage_account_typetextfield from the properties object
subscriptionIdtextfield from the properties object
tagstextResource tags.
workspaceNametextfield from the properties object

Methods

NameAccessible byRequired ParamsDescription
getSELECToperationId, resourceGroupName, sqlPoolName, subscriptionId, workspaceNameGet the status of a SQL pool operation

SELECT examples

Get the status of a SQL pool operation

SELECT
collation,
create_mode,
creation_date,
location,
max_size_bytes,
operationId,
provisioning_state,
recoverable_database_id,
resourceGroupName,
restore_point_in_time,
sku,
source_database_deletion_date,
source_database_id,
sqlPoolName,
status,
storage_account_type,
subscriptionId,
tags,
workspaceName
FROM azure.synapse.vw_sql_pool_operation_results_location_header_results
WHERE operationId = '{{ operationId }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND sqlPoolName = '{{ sqlPoolName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND workspaceName = '{{ workspaceName }}';