I have an SSIS Package that was created in SQL Server 2008 R2. When I attempt to execute the package using the SQL Server 2008 R2 execute package utility, I receive no errors. When I try the same with the SQL Server 2012 execute package utility, I get these errors:
Error: To run a SSIS package outside of SQL Server Data Tools you must install Derived Column of Integration Services or higher.
Error: To run a SSIS package outside of SQL Server Data Tools you must install Conditional Split of Integration Serivces or higher.
Error: To run a SSIS package outisde of SQL Server Data Tools you must install SSIS Log Provider For SQL Server of Integration Services or higher.
--****
When I attempt to run the package with a SQL Server 2012 Job, I receive this error:
Executed as user: NT Service\SQLSERVERAGENT. Microsoft (R) SQL Server Execute Package Utility Version 11.0.2100.60 for 32-bit Copyright (C) Microsoft Corporation. All rights reserved. Started: 10:20:56 AM Error: 2016-08-31 10:20:56.22 Code: 0xC0011007 Source: {F21F6C0C-91E9-4444-B3C2-8BD4670D8953} 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: 2016-08-31 10:20:56.22 Code: 0xC0011002 Source: {F21F6C0C-91E9-4444-B3C2-8BD4670D8953} Description: Failed to open package file "C:\IHA\IHA_HOSPF105.dtsx" due to error 0x80070005 "Access is denied.". 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 "C:\IHA\IHA_HOSPF105.dtsx" because of error 0xC0011002. Description: Failed to open package file "C:\IHA\IHA_HOSPF105.dtsx" due to error 0x80070005 "Access is denied.". 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: {F21F6C0C-91E9-4444-B3C2-8BD4670D8953} Started: 10:20:56 AM Finished: 10:20:56 AM Elapsed: 0.016 seconds. The package could not be found. The step failed.
Is it possible to configure the SQL Server Job to point to the SQL Server 2008 R2 execute package utility? In the 'steps' section of the Job, is there a way that I can change the 'Command Line' to do this?
Also, I noticed that the machine I am running the Jobs/packages from has the SQL Server Integration Services 10.0
service installed. I don't see version 11.0
. If I had that, I would assume that this would also correct the problem. Is that the case?