On Thu, Apr 19, 2018 at 8:48 PM, Edmundo Robles <edmu...@sw-argos.com> wrote: > Yes, you are right, the replication is not a backup ;) , actually i > backup database daily at 3:00 am but if database crash, the amount of > data is big! that is the reason i want to replicate to reduce the data > loss. By the way a few days ago a job partner did a delete with no where.
Replication will happily replicate a delete with no where. Backup will at least have the day starting point. For this kind of things you need to do log-archiving + base backups. With this you can use PITR to roll forward from the last full backup to just before the delete. Francisco Olarte.