0
votes
0answers
125 views

Failover Azure VM running SQL Server? [closed]

I'm currently looking at hosting an SQL Server database on an Azure Virtual Machine Instance and connecting the website via two load balancing web-roles. Due to various limitations in our application ...
0
votes
0answers
78 views

SQL Server 2008R2 Failover And Mirroring [closed]

Does anybody knows the maximum latency times required to work in a SQL Server Failover + Mirroring with two nodes in different geographical places including the storage. thanks for the help
1
vote
1answer
176 views

Azure VM availability, mirroring

Apologies for the noob question, I've never dealt with failover before. Currently we have a single hardware server running Windows Server, SQL Server, ASP.NET and a single (very large) web ...
1
vote
1answer
1k views

What is best practice for SQL Server failover cluster database access tier?

In principle an SQL Server failover cluster presents itself as a virtual machine that applications can connect to oblivious to the fact that the SQL Server is actually a cluster of servers, hence, in ...
1
vote
2answers
1k views

Automatic failover with SQL mirroring and connection strings

I have 3 servers set up for SQL mirroring and automatic failover using a witness server. This works as expected. Now my application that connects to the database, seems to have a problem when a ...
1
vote
1answer
193 views

FailOver causes “The underlying provider failed”

We implemented database mirroring for WCF and set up failover partner in connectionstring as following ....Data Source=10.0.13.21,1433;Failover Partner=10.0.13.31,1433; ... 10.0.13.21 - primary ...
1
vote
2answers
3k views

Restart log shipping when out of sync

The scenario is. A database secondary server are for different reason out of sync or is suspected that is not sync. Someone has made the secondary databases online by mistake or other mishaps. If you ...
2
votes
1answer
1k views

SQL Server failover cluster - determine active node

Is there a way to programmatically determine which node in a SQL Server failover cluster is the active node? Or at least determine whether the current machine is the active node? I have a Windows ...
3
votes
1answer
1k views

How to change sqlConnectionString for sessionState in SQLServer mode at runtime?

We're trying to find a way to change the sessionState's sqlConnectionString (in SQLServer mode) at runtime. We're implementing a fail over for our SQL server and we want to catch when the sessionState ...
2
votes
1answer
824 views

Why is MSDTC not supported when using SQL Server Mirroring & Automatic Failover?

I have an application that I would like to have support SQL Server Mirroring. However, the architecture is currently such that multiple WCF services and DB connections will be enlisted in a single ...
5
votes
4answers
2k views

How to connect to mirrored SQL Server after failover?

I set up a database mirroring and then used this connectionstring to connect to it: Data Source={0};Failover Partner={1};Initial Catalog=AdventureWorks; Integrated Security=True; After ...
2
votes
1answer
209 views

Handling database queries that fail due to a server failover

In an environment with a SQL Server failover cluster or mirror, how do you prefer to handle errors? It seems like there are two options: Fail the entire current client request, and let the user ...
0
votes
4answers
413 views

SQL clustering or VM images

We currently have a failover sql cluster with two nodes. For a new large project which we have determined to be business critical, our development team is requesting a new 2 node failover sql ...
2
votes
3answers
4k views

Can I use Failover Partner in my SQL connection string without mirroring?

I admit I'm a bit of a cheapskate, but I don't want to spring for the three servers needed to get automatic failover for SQL Server via Mirroring, especially since one of the three would do nothing ...
0
votes
6answers
559 views

SQL Server 2005 Failover Cluster Using One Server?

I am developing an application that is hosted on a SQL Server 2005 failover cluster. The application (developed using C#, .Net 2.0) makes use of a number of the clustered resources (printers, file ...
0
votes
0answers
1k views

Simple Failover for IIS and MS SQL server

I have a client with a .Net 1.0 web app that uses IIS and a SQL 2000 database. It is hosted with a shared hosting service and does get not much traffic (a few visitors a day tops). The hosting has ...
12
votes
1answer
9k views

Determine Active Node in SQL Failover Cluster

Does anyone know how to determine the active node of a SQL Active-Passive Failover Cluster programmatically from T-SQL? @@SERVERNAME only returns the virtual server name, which is identical from both ...
1
vote
3answers
558 views

SqlClient.SqlException occurs during Database Fail Over

I have two Microsoft SQL 2005 databases setup in a fail over scenario. The application connection strings have the "Failover Partner" specified in the connection string. When the currently live ...
0
votes
1answer
303 views

Programatically Determine Master Server in SQL Failover Scenario

Part 1: In a Microsoft SQL Server 2005 failover scenario, how can the databases be queried to determine which server is the master and which server is the slave? I'm looking for something more elegant ...
1
vote
3answers
629 views

What's your disaster recovery plan?

And what would you recommend for an ASP Net web application, with a not so large SQL server database (around 10Gb)? I was just wondering, is that a good idea to have an Amazon EC2 instance configured ...
2
votes
4answers
2k views

Setting up a backup DB server in ASP.NET web.config file

I currently have an asp.net website hosted on two web servers that sit behind a Cisco load balancer. The two web servers reference a single MSSQL database server. Since this database server is a ...