I setup replication between my production and development servers so that all I need to do is LOAD DATA FROM MASTER on the production server to load all the changes made on development to the production environment. The problem is that it does this automatically, so that both sites may as well be connected the same database--defeating the purpose of having a development server for previewing changes. Is there any way I can make the slave database load data only on demand, eg. when I log in and type LOAD DATA FROM MASTER?
TIA.