Hi there,
I have two database servers running SQL Server 2005 Enterprise that i want to make one of them as mirror database server.
What i need is, create exact copy a database from primary server on mirror server, so when the primary server was down, we could switch database IP on application to use mirror server.
I have examined "mirror" feature on SQL Server 2005, and based on this article:
http://aspalliance.com/1388_Database_Mirroring_in_Microsoft_SQL_Server_2005.all
The mirror database cannot be accessed directly; however snapshots of the mirror database can be taken for read only purposes. (Prerequisites no. 4)
So how it can be useful when i can't access it when primary server was down?
I've been thinking about creating a regular backup on primary server and restore it on mirror server on hourly basis, but that's quite inefficient (slow) especially if i want exact copy (since hundreds data's are added once in minute).
Any other suggestion?
EDIT:
Maybe what i mean was a replication things... not a mirror (thanks JP for commenting)