I have a mysql master server and a mysql slave server replicating the master, when an error occurs the slave replication stop's by default it's set this way. With "slave_skip_errors" flag you can set the error's code you want to skip for the slave to stop, but, this leave you blind about the error (you don't know when it happens) so you can't fix it. I want to allow the slave server to keep replicate master and let me know if theres an error, but keep going so i can repair the error later.
Is there any way?
Thanks.