Hi everybody,
In our SQL 2019 Stage server we have SQL Server jobs running. Recently I started to observe this strange behavior - 2 of the extracts started to run in parallel. The problem is that once the extracts finish running, they re-run again for all regions but one resulting in incorrect data and file sizes. I'm trying to investigate a reason for this strange behavior and I see two separate accounts changing the extract detail records. I just don't understand what may suddenly cause this behavior in our SQL Server. Do you have any ideas what may cause this problem and how to make sure that the SQL Agent job runs under 1 account only and not in parallel by 2 accounts?
The job in question (although the same issue exists for another job) consists of 2 steps being run using the command similar to this
dtexec.exe /FILE E:\SSIS_ROOT\VA\package\Main_Extract.dtsx /SET "\package.variables[User::varJobNbrToProcess].Properties[Value]";33 /MAXCONCURRENT 1 /CHECKPOINTING OFF /REPORTING V
Thanks in advance.