QuestionQ94
Database SecurityYou encounter an insufficient-privilege error during a long transaction.
The database administrator is notified and immediately grants the needed privilege:
GRANT UPDATE ON world.city TO ‘user1’;
How can you continue the transaction with the least interruption?
- A Roll back the transaction and start the transaction again in the same session.
- B Re-execute the failed statement in your transaction.
- C Change the default database and re-execute the failed statement in your transaction.
- D Close the connection, reconnect, and start the transaction again.
Community Discussion