Elias Ghali
Elias Ghali

Reputation: 853

Run SQL Server job steps in parallel

I have a SQL Server job that runs 6 steps, each executes the same exe command but with different parameters.

My question: is it possible to execute these steps all in parallel and not sequentially, without splitting the job into 6 jobs?

Upvotes: 0

Views: 424

Answers (1)

amokrane oulmi
amokrane oulmi

Reputation: 53

You can create an SSIS package or you can put all 6 jobs, then you create an SQL job that executes the package.

if it suits you, mark the answer as a solution.

Upvotes: 1

Related Questions