Tasks After Restart

From Bitnami MediaWiki
Revision as of 18:29, 5 October 2023 by 99.255.206.241 (talk)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

1. Execute the following script when you know that SQL Server was restarted:

DECLARE @command varchar(1000) 
SELECT @command = '
USE [?]
IF (DB_NAME() LIKE ''%Novus'')
BEGIN
    EXECUTE [dbo].[usp_AsyncTaskMarkAsIdle] 
        ''EDI Scan Folder''
        ,''admin'';
    EXECUTE [dbo].[usp_AsyncTaskMarkAsIdle] 
        ''Orders Invoicing''
        ,''admin'';
    EXECUTE [dbo].[usp_AsyncTaskMarkAsIdle] 
        ''Invoice Printing''
        ,''admin'';
END
'

EXEC sp_MSforeachdb @command


Return to SQL Server