Top "Rollback" questions

A rollback is reverting data to a previous state.

Git rollback 1 pull

I have a web server that serves a project that is a git repository. When I do some changes to …

git rollback
How to rollback an update in PostgreSQL

While editing some records in my PostgreSQL database using sql in the terminal (in ubuntu lucid), I made a wrong …

postgresql rollback
Is there any way to recover recently deleted documents in MongoDB?

I have removed some documents in my last query by mistake, Is there any way to rollback my last query …

mongodb rollback
mysql transaction - roll back on any exception

Is it possible to roll back automatically if any error occurs on a list of mysql commands? for example something …

mysql transactions rollback
Cannot access SqlTransaction object to rollback in catch block

I've got a problem, and all articles or examples I found seem to not care about it. I want to …

c# sql transactions ado.net rollback
EJB3 transaction rollback

I'm using CMT in EJB3 state-less session beans. Also I've created my own Exception having the annotation "@ApplicationException (rollback=true)". …

java jakarta-ee transactions ejb-3.0 rollback
Stored Procedure Transaction

I have never used a Transaction, Commit and Rollback before and now I need to use one. I have checked …

sql-server stored-procedures transactions commit rollback
Automatic Rollback if COMMIT TRANSACTION is not reached

Consider the following: START TRANSACTION; BEGIN; INSERT INTO prp_property1 (module_name,environment_name,NAME,VALUE) VALUES ('','production','',…

mysql transactions rollback
How to roll back migrations using Flyway?

MyBatis migrations splits each SQL file into two sections: One for migrating forward one version One for migrating back one …

java database flyway rollback
Is there any way to rollback after commit in MySQL?

I did a big mistake that I updated a table without 'where' clause in MySQL :'( It is auto-committed. Is …

mysql sql-update rollback autocommit