This is related to the accepted answer for What’s your #1 way to be careful with a live database?
Suppose you create a temp table for backup purpose and make your changes in the original. The changes break the system and you want to restore the backup. In the meantime some other records have also changed in the original table (it is a live db). Now if you restore the backup, the system will be in an inconsistent state.
Whats the best way to tackle this