Max Vernon shares a script to perform a find-and-replace across SQL Agent jobs:
Once in a while you might need to make common changes to a lot of SQL Server Agent Jobs. For example, if you change the path where you store SQL Server backup files, you might need to update many jobs to point at
\\SERVERB\Backups
instead of\\SERVERA\Backups
. The script below provides a simple instance-wide find-and-replace for SQL Server Agent job-step commands. It modifies the command text for all jobs that contain the matching@Find
parameter, replacing it with the provided@Replace
value. You can exclude jobs by adding them to the list of values in the#excludeJobs
table.
Click through for the script.
Comments closed