Replication does not maintain an identical copy of the database, it only replicates selected tables.
This leaves mirroring or log shipping:
- Delay: Mirroring will keep the two replicas more close to the current master copies (will always try to be up to date, continuously). Log shipping has a built-in operational delay due to the log backup frequency, usually around 15-30 minutes or so.
- Multiple copies: mirroring allows for exactly one replica copy. Log shipping allows for multiple copies.
- Replica access: mirroring does not allow access to the replica. You can create database snapshots on the secondary server and the snapshots can be accesses. Log shipping allows read-only access to the replica copy, but will disconnect all users when applying the next backup log received (eg. every 15-30 minutes).
- Ease of setup: this point is subjective, but I say log shipping is easier to set up (easier to understand)
- Ease of operation: same as above, subjective, I would again say log shipping just because is easier to troubleshoot.
- Security: log shipping requires file copy access, which requires a VPN or similar setup. Mirroring can work with certificate based security and traverse domains w/o trust, so it does not require a VPN.
Of course, you still have to make your own decision, based on your criteria.