About 469,000 results
Open links in new tab
  1. BEGIN TRANSACTION (Transact-SQL) - SQL Server | Microsoft Learn

    Dec 17, 2025 · Marks the starting point of an explicit, local transaction. Explicit transactions start with the BEGIN TRANSACTION statement and end with the COMMIT or ROLLBACK statement.

  2. 15.3.1 START TRANSACTION, COMMIT, and ROLLBACK Statements - MySQL

    BEGIN and BEGIN WORK are supported as aliases of START TRANSACTION for initiating a transaction. START TRANSACTION is standard SQL syntax, is the recommended way to start an ad …

  3. SQL TRANSACTIONS - GeeksforGeeks

    Sep 8, 2025 · These commands help manage the start, commit, and rollback of changes made to the database. Below are the key transaction control commands in SQL, explained with syntax and …

  4. What does BEGIN TRAN, ROLLBACK TRAN, and COMMIT TRAN

    Apr 22, 2025 · In this part we cover transactions and how to begin a transaction and either rollback the changes or commit the changes to the database.

  5. SQL BEGIN TRANSACTION

    The BEGIN TRANSACTION statement is used to start a new transaction. It indicates the beginning of a sequence of SQL statements that are treated as a single unit of work.

  6. Mastering the BEGIN TRANSACTION Statement in SQL: A Deep Dive …

    The BEGIN TRANSACTION statement marks the start of a transaction, a sequence of SQL operations treated as a single unit. Think of it as opening a workspace where all your changes are temporary …

  7. How to Use Transactions in SQL Server (BEGIN TRAN, COMMIT, …

    SQL Server automatically starts a new transaction after a previous one is committed. Enable. Developer manually controls begin, commit, and rollback.

  8. PostgreSQL: Documentation: 18: START TRANSACTION

    Nov 13, 2025 · Refer to SET TRANSACTION for information on the meaning of the parameters to this statement. In the standard, it is not necessary to issue START TRANSACTION to start a transaction …

  9. MySQL START TRANSACTION Statement: Usage & Examples

    Learn how to use the MySQL `START TRANSACTION` statement for atomic operations, ensuring data integrity with examples, error handling, and best practices for effective transaction management.

  10. Transactions in SQL: BEGIN, COMMIT, and ROLLBACK Explained

    Transactions are fundamental to reliable and consistent SQL applications. By using BEGIN, COMMIT, and ROLLBACK wisely, you ensure that your application logic maintains data integrity — even in the …