A Microsoft platform for building enterprise-level data integration and data transformations solutions.
so I want to select multiple files at a same time
If you mean for a SQL Server-Agent job, it's not possible, you have to setup one-by-one.
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
I'm having multiple dtdx files in one project so I want to setup job for all of them , so I want to select multiple files at a same time
A Microsoft platform for building enterprise-level data integration and data transformations solutions.
A Microsoft online analytical data engine used in decision support and business analytics, providing the analytical data for business reports and client applications such as Power BI, Excel, Reporting Services reports, and other data visualization tools.
so I want to select multiple files at a same time
If you mean for a SQL Server-Agent job, it's not possible, you have to setup one-by-one.
Hi @YASHODHAN P JOSHI ,
You may try with below steps:
1.Create one SSIS package which is executed by ONE sql agent job. lets call this 'PackageExecution.dtsx'.
2.PackageExection then contains multiple Execute Package tasks for the packages you want to execute.
3.In the package you can apply any package execution rules - which packages have to run after the other, which packages can run concurrently, which packages should only run if previous succeeded.
4.Schedule agent job for PackageExecution.dtsx.
If you need to change the sequence, just update the PackageExecution package.
So that you could set one agent job to run multiple packages.
Regards,
Zoe Hui
If the answer is helpful, please click "Accept Answer" and upvote it.