Thursday, July 14, 2011

Database Mirroring fact for developers

Connection string should include FailOver parameter

Server = myServerAddress;database=My Database;Integrated Security=SSPI;Failover Partner=Failover Server
Note: The Failover Partner keyword is not supported by .NET Framework version 1.0 or 1.1 , so if you application is built in VisualStudio 2003 database Mirroring will not work. True

No comments:

Post a Comment

Open default email app in .NET MAUI

Sample Code:  if (Email.Default.IsComposeSupported) {     string subject = "Hello!";     string body = "Excellent!";    ...