A Technique for Testing an Update Safely
Create a separate table
create table testtable as select * from realtable;
And execute the statement there.
In fact it wouldn't hurt to have an entire duplicate test database, which you can easily create with a data dump
create table testtable as select * from realtable;
And execute the statement there.
In fact it wouldn't hurt to have an entire duplicate test database, which you can easily create with a data dump
Labels: duplication, testing


