1

If I am executing a set of queries using transaction, and one of the queries failed to insert/update/delete. What will happen? Will the remaining queries continue executing by default?

mmvsbg
  • 3,570
  • 17
  • 52
  • 73
Rashad.Z
  • 2,494
  • 2
  • 27
  • 58

1 Answers1

0

The answer is no. A rollback will be performed restoring the database to its original state before the transaction began: http://en.wikipedia.org/wiki/Rollback_%28data_management%29

mmvsbg
  • 3,570
  • 17
  • 52
  • 73