database_operations
Creates, updates, deletes, gets or lists a database_operations
resource.
Overview
Name | database_operations |
Type | Resource |
Id | azure.sql.database_operations |
Fields
Name | Datatype | Description |
---|---|---|
properties | object | The properties of a database operation. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
list_by_database | SELECT | databaseName, resourceGroupName, serverName, subscriptionId | Gets a list of operations performed on the database. |
cancel | EXEC | databaseName, operationId, resourceGroupName, serverName, subscriptionId | Cancels the asynchronous operation on the database. |
SELECT
examples
Gets a list of operations performed on the database.
SELECT
properties
FROM azure.sql.database_operations
WHERE databaseName = '{{ databaseName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND serverName = '{{ serverName }}'
AND subscriptionId = '{{ subscriptionId }}';