Bird
0
0

Which of the following SQL transaction commands is used to make all changes permanent, supporting the Durability property?

easy📝 Syntax Q12 of 15
SQL - Transactions and Data Integrity
Which of the following SQL transaction commands is used to make all changes permanent, supporting the Durability property?
AROLLBACK
BCOMMIT
CSAVEPOINT
DBEGIN TRANSACTION
Step-by-Step Solution
Solution:
  1. Step 1: Identify command for saving changes

    COMMIT saves all changes permanently, ensuring Durability.
  2. Step 2: Understand other commands

    ROLLBACK undoes changes, SAVEPOINT marks a point to rollback to, BEGIN TRANSACTION starts a transaction.
  3. Final Answer:

    COMMIT -> Option B
  4. Quick Check:

    Permanent save = COMMIT [OK]
Quick Trick: COMMIT makes changes permanent [OK]
Common Mistakes:
  • Choosing ROLLBACK to save changes
  • Confusing SAVEPOINT with COMMIT
  • Thinking BEGIN TRANSACTION saves data

Want More Practice?

15+ quiz questions · All difficulty levels · Free

Free Signup - Practice All Questions
More SQL Quizzes