So the question is in subject.
Backing up SQL database is very time consuming procedure.
How anyone make backups for such huge SQL databases?
I'm not about specific instruments but "architecture" of such thing.
So the question is in subject.
Backing up SQL database is very time consuming procedure.
How anyone make backups for such huge SQL databases?
I'm not about specific instruments but "architecture" of such thing.
First, (online) replication is not a backup at all, as many things you want a backup to protect you from would be immediately replicated out to your "backup". Accidentally dropped a table or messed up a DELETE
statement? Yeah, the data is gone in the replica too...
That said, you have multiple options to consider, e.g.
What you end up with will largely depend on your specific situation.