If a transaction encounters an issue and needs to be terminated without saving the changes, it should be ________.
- Rolled Back
- Committed
- Saved
- Isolated
To terminate a transaction without saving any changes, you should use the 'Rollback' operation. This undoes all changes made within the transaction, ensuring data consistency and integrity. 'Committed' is the opposite, indicating that the changes should be saved.
Loading...
Related Quiz
- In PHP forms, you can make a field required by using the required attribute in the HTML.
- What is the scope of a variable that is declared within a PHP function?
- The foreach loop in PHP is used exclusively for ______.
- What is an indexed array in PHP?
- You can call a user-defined function in PHP using a string variable that contains the function's name.