sql_pool_operations
Creates, updates, deletes, gets or lists a sql_pool_operations
resource.
Overview
Name | sql_pool_operations |
Type | Resource |
Id | azure.synapse.sql_pool_operations |
Fields
Name | Datatype | Description |
---|---|---|
properties | object | The properties of a Sql pool operation. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
list | SELECT | resourceGroupName, sqlPoolName, subscriptionId, workspaceName | Gets a list of operations performed on the SQL pool. |
SELECT
examples
Gets a list of operations performed on the SQL pool.
SELECT
properties
FROM azure.synapse.sql_pool_operations
WHERE resourceGroupName = '{{ resourceGroupName }}'
AND sqlPoolName = '{{ sqlPoolName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND workspaceName = '{{ workspaceName }}';