Please start any new threads on our new site at https://forums.sqlteam.com. We've got lots of great SQL Server experts to answer whatever question you can come up with.

 All Forums
 SQL Server 2005 Forums
 SSIS and Import/Export (2005)
 Unable to load package as Xml

Author  Topic 

PanzerAttack
Yak Posting Veteran

71 Posts

Posted - 2011-07-11 : 05:47:17
I can see a couple of posts on this but I don't fully understand them.

I have created a package in BIDS but when I try to call it

USE master
GO
EXEC sp_configure 'show advanced options', 1
GO
RECONFIGURE WITH OVERRIDE
GO
EXEC sp_configure 'xp_cmdshell', 1
GO
RECONFIGURE WITH OVERRIDE
GO
EXEC sp_configure 'show advanced options', 0



EXEC xp_cmdshell 'dtexec /f "\\ukyorw0034\Shares\Decision Support\Commercial Decision Support\Visual Studio 2005\Projects\Import AvA GB11\Integration Services Project3\Import TAE GB11.dtsx"'


I get this error:

Microsoft (R) SQL Server Execute Package Utility
Version 9.00.4035.00 for 32-bit
Copyright (C) Microsoft Corp 1984-2005. All rights reserved.
NULL
Started: 10:38:49 AM
Error: 2011-07-11 10:38:49.79
Code: 0xC0011007
Source: {AC86597B-46A9-4719-AAD1-64C521D9E5BD}
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: 2011-07-11 10:38:49.79
Code: 0xC0011002
Source: {AC86597B-46A9-4719-AAD1-64C521D9E5BD}
Description: Failed to open package file "\\ukyorw0034\Shares\Decision Support\Commercial Decision Support\Visual Studio 2005\Projects\Import AvA GB11\Integration Services Project3\Import TAE GB11.dtsx" due to error 0x80070005 "Access is denied.". Thi
s happens when loading a package and the file cannot be opened or loaded correctly into the XML document. This can be the result of either providing an incorrect file name was specified when calling LoadPackage or the XML file was specified and has an inc
orrect format.
End Error
Could not load package "\\ukyorw0034\Shares\Decision Support\Commercial Decision Support\Visual Studio 2005\Projects\Import AvA GB11\Integration Services Project3\Import TAE GB11.dtsx" because of error 0xC0011002.
Description: Failed to open package file "\\ukyorw0034\Shares\Decision Support\Commercial Decision Support\Visual Studio 2005\Projects\Import AvA GB11\Integration Services Project3\Import TAE GB11.dtsx" due to error 0x80070005 "Access is denied.". This h
appens when loading a package and the file cannot be opened or loaded correctly into the XML document. This can be the result of either providing an incorrect file name was specified when calling LoadPackage or the XML file was specified and has an incorr
ect format.
Source: {AC86597B-46A9-4719-AAD1-64C521D9E5BD}
Started: 10:38:49 AM
Finished: 10:38:49 AM
Elapsed: 0.156 seconds
NULL

PanzerAttack
Yak Posting Veteran

71 Posts

Posted - 2011-07-11 : 06:18:40
Will this type of thing work?

http://blog.boxedbits.com/archives/25
Go to Top of Page
   

- Advertisement -