In SQL 2012 is it possible to execute SSIS packages from agent by invoking dtexec? In SQL 2008 I was running bunch of jobs that invoked dtexec.exe and called packages. I am not having much luck with it.
In SQL 2008 I was executing packages stored in SQL Server by executing a main package that lived on the file system. In my SQL Server Agent job I would execute the main package by using the command line below:
"c:\Program Files (x86)\Microsoft SQL Server\100\DTS\Binn\dtexec" /f "\\cis-sql2008\sql\MSSQL\JOBS\dataload\dataloadMain.dtsx"
What would be the equivalent of the command above in SQL 2012. I see that Microsoft has introduced deployment models and I am sort of confused between SSISDB and SSIS Catalog.
Any thoughts?
Thanks
SQL Pro