Interop.SQLXMLBULKLOADLib.dll 问题
我将旧的 dts 包转换为 SSIS 包并尝试在 Windows 2008 服务器上运行它。此 SSIS 包运行一个 Win32 exe 文件,该文件使用 Interop.SQLXMLBULKLOADLib.dll 并尝试将一些 XML 数据加载到数据库中。但当执行此 exe 时,我收到以下错误。
COM 异常:由于出现以下错误,检索 CLSID {8270CB2F-B0E6-4C37-8A40-D70778F47894} 的组件的 COM 类工厂失败:80040154。
我正在尝试运行 .exe 文件Windows 2000 兼容模式。如果您有任何建议,请告诉我。
谢谢
I converted an old dts package into SSIS package and trying to run it Windows 2008 server. This SSIS package runs an Win32 exe file which is using Interop.SQLXMLBULKLOADLib.dll and trying to load some XML data into database. But i get following error when this exe gets executed.
COM Exception: Retrieving the COM class factory for component with CLSID {8270CB2F-B0E6-4C37-8A40-D70778F47894} failed due to the following error: 80040154.
I'm trying to run the .exe file in Windows 2000 compatability mode. Please let me know if you have any suggestions.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
该 CLSID 属于 SQLXML 3.0。您可以在此处下载 3.0 sp3。仅供参考 0x80040154 = REGDB_E_CLASSNOTREG。
据我所知,SQLXML 4 没有实现相同的 CLSID,所以我认为即使您已经安装了 4 个,实际上也必须安装 3 个。
That CLSID belongs to SQLXML 3.0. You can download 3.0 sp3 here. FYI 0x80040154 = REGDB_E_CLASSNOTREG.
As far as I can tell SQLXML 4 does not implement the same CLSID, so I think you'll actually have to install 3 even if you have 4 installed already.