refactor(sql): moved new queries to there own folder to make it more easy to work and migrate

This commit is contained in:
2026-02-16 19:01:23 -06:00
parent ace73fa919
commit 44d0cb63cf
5 changed files with 51 additions and 2 deletions

View File

@@ -0,0 +1,8 @@
/*
disables sql jobs.
*/
DECLARE @JobName varchar(max) = '[jobName]'
UPDATE msdb.dbo.sysjobs
SET enabled = 0
WHERE name = @JobName;