I am trying to run ssis package through agent jobs. The packages and the sql server are on different machines. When the agent job tries to run ssis package step the job fails with following error:
Executed as user: Domain\username. Microsoft (R) SQL Server Execute Package Utility Version 13.0.5026.0 for 64-bit Copyright (C) 2016 Microsoft. All rights reserved. Started: 1:42:42 AM Error: 2020-01-23 01:42:42.49 Code: 0xC0011007
Source: {07BB41B6-D0DF-4349-B9AE-498397D214D7} Description: Unable to load the package as XML because of package does not have a valid XML format. A specific XML parser error will be posted. End Error Error: 2020-01-23 01:42:42.49 Code: 0xC0011002 Source: {07BB41B6-D0DF-4349-B9AE-498397D214D7} Description: Failed to open package file "D:\ssis_packages\package.dtsx" due to error 0x80070003 "The system cannot find the path specified.". This occurs when loading a package and the file cannot be opened or loaded correctly into the XML document. This can be the result of specifying an incorrect file name when calling LoadPackage or the specified XML file has an incorrect format. End Error Could not load package "D:\ssis_packages\package.dtsx" because of error 0xC0011002. Description: Failed to open package file "D:\ssis_packages\CoreLogic\CoreLogicSSIS\Real_Estate_Monthly.dtsx" due to error 0x80070003 "The system cannot find the path specified.". This occurs when loading a package and the file cannot be opened or loaded correctly into the XML document. This can be the result of specifying an incorrect file name when calling LoadPackage or the specified XML file has an incorrect format. Source: {07BB41B6-D0DF-4349-B9AE-498397D214D7} Started: 1:42:42 AM Finished: 1:42:42 AM Elapsed: 0.047 seconds. The package could not be found. The step failed.
I need some suggestion as what is the best way to run ssis package when sql server and packages are on different machines.