Corrupted SSIS package with error 0xC00CE504

北战南征 提交于 2021-02-08 23:37:07

问题


I have a corrupted SSIS package with the error message: Failed to load XML due to error 0xC00CE504 "A name was started with an invalid character. Line 13. Column 2". This happens when loading a package and the file cannot be opened or loaded correctly into XML document. This can be the result of either providing an incorrect file name to the LoadPackage method or the XML file specified having an incorrect format.

Basically I have created this package and stored in a SVN folder. It worked fine until someone else edited the package and I am not able to open the package in BIDS, nor am I able to run the package through DTexec or DTexecUI. Apparantely it works just fine on the end of the person whom edited it. I would like to know what does the error message mean exactly and how to tackle this issue correctly so that the package runs ok on my end.

Here's lines 13-17:

<<<<<<< .mine 
<DTS:Property DTS:Name="VersionBuild">10</DTS:Property> <DTS:Property DTS:Name="VersionGUID">{1363A1C9-45B2-408F-9EEB-5BE1AEA4831C}</DTS:Property> 
======= 
<DTS:Property DTS:Name="VersionBuild">13</DTS:Property> <DTS:Property DTS:Name="VersionGUID">{6A0D00D0-438F-49F2-89D6-662C2FEE766E}</DTS:Property> 
>>>>>>> .r582

Thanks a lot!

来源:https://stackoverflow.com/questions/21682834/corrupted-ssis-package-with-error-0xc00ce504

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!