I am trying to run an SSIS package from SQL Server. I was able to successfully import the package and run it manually. I was also able to run it manually from the SSIS Catalog. Neither work from the agent job. Oddly enough, when I set package source to sql server, the package does not show even though it is listed in the MSDB folder.
Account I am running the job from seems to have permission and I am running SSMS as admin.
Any ideas?
SELECT 'Found in SSISDB', * FROM SSISDB.catalog.folders AS F INNER JOIN SSISDB.catalog.projects AS P ON P.folder_id = F.folder_id INNER JOIN SSISDB.catalog.packages AS PKG ON PKG.project_id = P.project_id WHERE PKG.name LIKE '%MYPackageName%'
or this query and let us know which one listed the package you are trying to run – billinkc