--Chris Skorlinski --Microsoft SQL Server Escalation Services
917825 How to use the Sqldumper.exe utility to generate a dump file in SQL Server 2005 http://support.microsoft.com/default.aspx?scid=kb;EN-US;917825
Use following steps to enable SQL Cluster Resource to automatically generate a dump of a SQL Server Named Instance before a shutdown/failover occurs.
In this example the SQL Server instance name is "SQL2K8R2"
Set the SqlDumperDumpFlags from a CMD window. Note there is no feedback in the CMD window if the setting was successful. Use 0x0120 to collect a "mini dump" of SQL Server executing threads. For more comprehensive and yes, larger memory dump, use flag 0x8100.
Default instance:
cluster resource "SQL Server" /priv SqlDumperDumpFlags = 0x0120 -- or --cluster resource "SQL Server" /priv SqlDumperDumpFlags = 0x8100
Name Instance
cluster resource "SQL Server(SQL2K8R2)" /priv SqlDumperDumpFlags = 0x0120-- or --cluster resource "SQL Server(SQL2K8R2)" /priv SqlDumperDumpFlags = 0x8100
Verify the "SqlDumperDumpFlags = 0x00008100.