commit-transaction
Commit a specified transaction in Microsoft SQL Server databases using the transaction ID for secure and controlled database operations.
Instructions
Commit a transaction
Input Schema
Name | Required | Description | Default |
---|---|---|---|
transactionId | Yes | The ID of the transaction to commit. |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"transactionId": {
"description": "The ID of the transaction to commit.",
"type": "string"
}
},
"required": [
"transactionId"
],
"type": "object"
}