| Comment | SQLServer Stored Procedure
PURPOSE
Generate sqlserver agent settings text file.
The text filename name is info_sqlagent.txt and is dumped to the give dump_path.
The dump_path must exist and will be checked.
PARAMETERS
- 1 @dump_path VARCHAR(255) Path to dump file survivekit.sql to.
USED OBJECTS
For info_agent.txt
- msdb.dbo.sp_get_sqlagent_properties;
- xp_instance_regread (undocumented extended procedure)
SQLSERVER CONFIGURATION
- OLE Automation has to be enabled.
EXAMPLES
EXEC dbo.prc_dump_survive_info_agent @dump_path='C:\Data\MSSQL\survivekit'
HISTORY
2026-04-09 - Created procedure
TAGS
<program>
<description>Generate sqlserver agent settings text file</description>
<generic>0</generic>
<author>Gerrit Mantel</author>
<created>2026-04-09</created>
<lastmodified>2026-04-09</lastmodified>
</program> |