I'm attempting to setup a Hybrid Cloud (private to AWS) HA Sql solution with SQL Server 2014 Standard Edition (not my first choice, but was the requirement that was given too me).
I'm wondering if it is possible and/or a best practice to log ship to a secondary mirrored set. In other words, I would configure two sets of mirrored databases and log ship between set a and set b. The configuration would be:
Server A <-Mirror->Server B---Log Ship->Server C<-Mirror->Server D
Or, the other option is to log ship into a single instance and enable mirroring on fail-over:
Server A <-Mirror->Server B--Log Ship->Server C
P.S. I know there are other HA options with SQL Server 2014; however, I'm not prepared to pay Enterprise Edition prices. I'm going to pay development cost to move to MySQL (replication)
O.k. After much research and trial and error, I've discovered that the pattern that can be followed for a log ship mirror.
First, read this technical article from MS: Database Mirroring and Log Shipping (SQL Server)
The basic steps are to:
On a "failure event" (failover to Server C and Server D):
RESTORE DATABASE <db name> WITH RECOVERY
Note: This was tested on Sql Server 2012