About 123,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. SQL TRANSACTIONS - GeeksforGeeks

    Jan 16, 2026 · Implicit Transactions: Automatically started by SQL Server for certain operations. Explicit Transactions: Manually controlled transactions where the user begins and ends the …

  3. 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.

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

    To disable autocommit mode implicitly for a single series of statements, use the START TRANSACTION statement: With START TRANSACTION, autocommit remains disabled until you …

  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. SQL BEGIN, COMMIT, ROLLBACK Transactions - Tutorial Reference

    Transaction Syntax BEGIN BEGIN (or START TRANSACTION) marks the start of a transaction. From this point forward, all SQL statements are part of the same logical unit of work. Nothing becomes …

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

    Nov 25, 2025 · Master SQL Server transactions! Learn BEGIN TRAN, COMMIT, and ROLLBACK for data integrity. Explore isolation levels, savepoints, and error handling best practices.

  8. 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.

  9. SQL Transactions Explained: BEGIN, COMMIT, ROLLBACK

    Apr 6, 2026 · BEGIN is used to start a new transaction in SQL. Once a transaction begins, all database changes remain temporary until they are either committed or rolled back.

  10. SQL Server Transaction

    Use the BEGIN TRANSACTION statement to start a transaction explicitly. Use the COMMIT statement to commit the transaction and ROLLBACK statement to roll back the transaction.