There are server-side methods for executing a package without using SQL Server Business Intelligence Development Studio.
1. Run the SSIS package using the command line utility (DTEXEC.EXE):
Use the command line utility and navigate to the path to the file where your SSIS package is stored. It is possible that DTEXEC.EXE is on a different path on your computer, so check this out before.
Example: C: \ Program Files \ Microsoft SQL Server \ 100 \ DTS \ Binn> DTEXEC.EXE / F "C: \ Packages \ SSISPackageToRun.dtsx"
2. Run the SSIS package using the Execute Package Utility (DTEXECUI.EXE):
Run the Execute Package Utility and select the package that you want to run from the file system. Click the Run button to start the package.
You can also go directly to the package in the file system with the right mouse button and select open (or open it using the Execute Package Utility, depending on the settings) and Run the Batch Utility (DTEXECUI.EXE). Click the Run button to start the package.
3. Running the SSIS package using Microsoft SQL Management Studio:
Find your package in the Object Browser with the right mouse button and select Run Package.
4. Running the SSIS package using the SQL Server Agent job:
Create an SQL job and run the package inside the job step. After that, run the sql job that includes your package.
Here is a summary of good solutions: https://www.mssqltips.com/sqlservertip/1775/different-ways-to-execute-a-sql-server-ssis-package/
St. Kluge
source share