The Excel Connection Manager is not supported in the 64-bit version of SSIS, as no OLE DB provider i

简介:

 昨天朋友在64位环境开发SSIS的时候遇到一个问题:


The Excel Connection Manager is not supported in the 64-bit version of SSIS, as no OLE DB provider is available.

 

由于没有64位的Microsoft OLE DB Provider for Jet,所以在64位机器上使用SSIS调用Excel会遇到两个问题,一个是开发的时候遇到错误,另外一个是部署SSIS的时候遇到这个错误。

 

解决开发错误将Debugging属性“Run64BitRuntime”值改为False:

 

 

 

解决JOB部署错误,将执行选项使用32位运行时环境:

 

问题解决,JOB运行成功:

 

更多信息参考在 64 位计算机上使用Integration Services 时的注意事项


本文转自 lzf328 51CTO博客,原文链接:

http://blog.51cto.com/lzf328/1027082

相关文章
|
开发者 Python
【Python】已解决:(pandas read_excel 读取Excel报错)ImportError: Pandas requires version ‘2.0.1’ or newer of ‘x
【Python】已解决:(pandas read_excel 读取Excel报错)ImportError: Pandas requires version ‘2.0.1’ or newer of ‘x
824 0
|
Python
Python无法打开.xlsx文件:xlrd.biffh.XLRDError: Excel xlsx file; not supported
了解Python无法打开.xlsx文件:xlrd.biffh.XLRDError: Excel xlsx file; not supported。
347 0
Python无法打开.xlsx文件:xlrd.biffh.XLRDError: Excel xlsx file; not supported
pandas读excel类型文件报错: xlrd.biffh.XLRDError: Excel xlsx file; not supported
pandas读excel类型文件报错: xlrd.biffh.XLRDError: Excel xlsx file; not supported
Python+Excel:xlrd.biffh.XLRDError: Excel xlsx file; not supported,两种解决方案
Python+Excel:xlrd.biffh.XLRDError: Excel xlsx file; not supported,两种解决方案
427 0
Python+Excel:xlrd.biffh.XLRDError: Excel xlsx file; not supported,两种解决方案
openpyxl库由于不支持数据验证扩展导致的读取excel报“Data Validation extension is not supported and will be removed“错解决方法
openpyxl库由于不支持数据验证扩展导致的读取excel报“Data Validation extension is not supported and will be removed“错解决方法
2665 0
openpyxl库由于不支持数据验证扩展导致的读取excel报“Data Validation extension is not supported and will be removed“错解决方法
|
SQL Java C++
excel数据导入DB
一、excel的好处:可以方便非程序专业的人写数据,然后由程序导入。 二、导入方式:   1.使用excel宏读excel表中数据,用字符串拼接生成sql语句,把sql语句拷贝到DB工具中执行,生成表与数据   2.用java或VB或c++写工具,用来读取指定文件路径下的excel,自动生成sql语言,并调用 DB接口把数据写入DB(基础表数据,虚拟数据)   3.写成工具或网页,让数据录入员在这个界面上输入,可以根据实际情况限制输入数据的规范,保证数据的正确与安全性。
1110 0
|
4月前
|
Python
如何根据Excel某列数据为依据分成一个新的工作表
在处理Excel数据时,我们常需要根据列值将数据分到不同的工作表或文件中。本文通过Python和VBA两种方法实现该操作:使用Python的`pandas`库按年级拆分为多个文件,再通过VBA宏按班级生成新的工作表,帮助高效整理复杂数据。

热门文章

最新文章