Most voted "rollback" questions
In database technologies, a rollback (reversal) is an operation that returns the database to a previous state. Rollbacks are important for database integrity because it means that the database can be restored to a clean copy even after erroneous operations are performed.
Learn more…6 questions
Sort by count of
-
2
votes2
answers510
viewsHow to return the git add --all command
I ended up using this command improperly, and added many files that should not, wanted to return the previous state, command git reset HEAD <file> returns only one file, and as there are many…
-
1
votes1
answer586
viewscommit/rollback in two tables with PDO
First of all, the code below works, there is no error (but possibly can be improved). I have the following method in PHP: <?php public function ajustarUnidadeServidor($ajusteExercicio){ try {…
-
1
votes1
answer1942
viewsTRANSACTION - How to correct a shipping error?
I think you can understand what I’m trying to do there: This method will make a foreach for each item in my movement list, and send each as a parameter to the method that will save them in the BD. I…
-
0
votes2
answers11150
viewsHow to Mount a Transaction with Commit and Rollback on Oracle?
I’m trying to mount a transaction on Oracle, but I don’t know how to perform a Rollback in case there’s an error in one of the querys. I searched some websites, but I couldn’t find anything clear…
-
0
votes0
answers58
viewsSpring Boot rollback in chain transactions
After validating all entities, I call a method to perform several operations in the bank, in which if one of them goes wrong, all the above must be undone. When arriving at the "throw new…
-
-1
votes1
answer354
viewsFiredac Fdquery with Mysql Transaction.commit and rollback does not work
I am running a test with Fdconnection and Fdquery and Mysql database. In my test table there is only one field called key with Primary key. Running command below, rollback does not work. Relate the…