Sometimes extensive updates have to be made to a table using an update query or loop through a record set.
In order to be able to undo changes in case of a mistake I am thinking about the following procedure:
In code:
1 - Make a copy of the table
2 - Make the changes in the original
3 - Check if updates are correct and if so: delete the copy and if not:
delete the default table and rename the copy so it will be the original.
Is that common practice or not?
Thanks
In order to be able to undo changes in case of a mistake I am thinking about the following procedure:
In code:
1 - Make a copy of the table
2 - Make the changes in the original
3 - Check if updates are correct and if so: delete the copy and if not:
delete the default table and rename the copy so it will be the original.
Is that common practice or not?
Thanks