Viewing 15 posts - 196 through 210 (of 758 total)
MarvinTheAndriod (5/23/2013)
Can anyone recommend a good step by step guide/article to setting up high availabilty
Perry Whittle has some excellent articles on this site for various High Availability configurations
Enjoy
Regards
May 29, 2013 at 5:27 am
That's why I said "I think..." Wasn't sure - Thanks for clearing up
May 23, 2013 at 7:52 am
Yes it will
Principal, Mirror and Witness constantly Ping each other - The Partner Timeout is how long after NOT receiving a reply must it perform an automatic failover. I think...
May 23, 2013 at 6:53 am
Partner Timeout is more to do with your network latency and how far Mirror and Partner are physically apart from each other - Database size plays little part here
May 23, 2013 at 6:45 am
Ok - You mean, how long will it take for the Mirror to take over as the Principal
As far as I know, it should be instant
Remember that your mirroring session...
May 23, 2013 at 5:51 am
Use the local_net_address column of sys.dm_exec_connections
May 23, 2013 at 5:21 am
Something like this to get server name and IP
declare @subject nvarchar (100)
declare @v-2 nvarchar(50)
set @v-2 = convert (nvarchar (50),case when CONNECTIONPROPERTY('local_net_address') is null then '' else CONNECTIONPROPERTY('local_net_address') end)
print @v-2
set @subject...
May 23, 2013 at 4:49 am
Perhaps I'm missing something here but I'm still not sure what you're asking
May 23, 2013 at 4:26 am
What do you mean by "Intervals"?
Mirroring is realtime which means that transactions are committed at both partners in realtime - Depending on your mirroring mode - Synchronous or Asynchronous
May 23, 2013 at 4:13 am
That is definately not normal
Something happened during/after the reboot.
Check error logs etc..
May 22, 2013 at 3:36 am
Those results are not conclusive enough to point you in a decent direction as to where your performance problems are.
You could look at your worst performing queries that are still...
May 22, 2013 at 12:32 am
What is among your top waits?
May 21, 2013 at 8:52 am
Have a look at the wait statistics on the server
SELECT TOP 15
wait_type ,
wait_time_ms ,
signal_wait_time_ms ,
wait_time_ms - signal_wait_time_ms AS resource_wait_time_ms ,
100.0 * wait_time_ms / SUM(wait_time_ms) OVER ( )
AS percent_total_waits ,
100.0 *...
May 21, 2013 at 8:04 am
I forgot to mention that after changing in to Async, I changed it back to Synchronous - Still same issue, automatic failover not working
Thanks
May 21, 2013 at 7:53 am
Viewing 15 posts - 196 through 210 (of 758 total)