sync current state§

This commit is contained in:
Thierry Schork
2023-01-04 16:52:04 +01:00
parent 37470b9e4b
commit c6c072f921
10 changed files with 176 additions and 20 deletions

View File

@@ -14,6 +14,8 @@ Creation : 30.12.2022 / TSC
Modifications:
=============================================================================*/
--If @allJobs is set to 0, then only a subset of jobs are checked (see insert into @jobs)
DECLARE @allJobs BIT = 0;
DECLARE @jobs TABLE (
[name] sysname NOT NULL
@@ -32,13 +34,13 @@ BEGIN
FROM [msdb].[dbo].[sysjobs] [s]
WHERE [s].[name] IN (
'zz_tsc OCTPDBA-440 supra'
,'__D70010 - After APSSynchroLoad'
,'_D73031 - SYNC - H Synchronize items and addresses - Central'
,'_D73061 - ITEM - 000 - Manage data before H synchronization - Central'
,'_D73071 - ITEM - Manage data after H synchronization - Central'
,'_D73110 - SYNC - V Synchronization extraction - Central'
,'D73130 - VESTA - SYNC - Interbase 2.0'
,'__D03011 - After working hours - Central'
--,'__D70010 - After APSSynchroLoad'
--,'_D73031 - SYNC - H Synchronize items and addresses - Central'
--,'_D73061 - ITEM - 000 - Manage data before H synchronization - Central'
--,'_D73071 - ITEM - Manage data after H synchronization - Central'
--,'_D73110 - SYNC - V Synchronization extraction - Central'
--,'D73130 - VESTA - SYNC - Interbase 2.0'
--,'__D03011 - After working hours - Central'
);
END
ELSE