0

Background:

We have a SQL Server instance that has pegged out a few times in the last few weeks. No one has been able to figure out how to get on and kill processes so they have just been rebooting the server (eek!).

I ended up posting on here in an effort to get access to the server when it's in this state and was directed to the DAC. From what I've read this will allow me to connect the next time it gets pegged (untested as of yet), but I'm wondering if I will be able to do anything once I'm connected or will my queries just time out?

Abe Miessler
  • 925
  • 4
  • 11
  • 20

2 Answers2

0

you should be able to most stuff in theory as per this MS article: http://msdn.microsoft.com/en-us/library/ms189595.aspx ; but I would imagine if the server isn't responding what so ever you still might run into issues. You should be able to at least run diagnostic commands (DMV's) and troubleshoot what is pegging your server.

Ian Chamberland
  • 680
  • 4
  • 8
0

One issue on a stressed SQL Server box is the memory pressure. Parts of the OS have been paged to disk and there isn't enough capacity to log onto the box.

I once read that you should enable this registry setting

[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Memory Management]
"DisablePagingExecutive"=dword:00000001

It's still on technet for Windows Server 2003 but maybe it's complete horlicks now

gbn
  • 6,079
  • 1
  • 18
  • 21