解决在Sql Server2005查询分析器中读取Excel表出现的一些问题

时间:2021-11-20 16:24:17

解决步骤:

1、是否允许OPENDATASOURCE 支持

  sql server 外围应用服务器 -->功能外围应用配置 -->找到即席运程查询, 启用openrowset 及opendatasourse
2. 配置sql server 的登录身份 ,

   sql server 配置管理器-->右键'sql server'服务-->属性  --> 内置账户 选择“Local System"

  启用Ad Hoc Distributed Queries:
exec sp_configure 'show advanced options',1
reconfigure
exec sp_configure 'Ad Hoc Distributed Queries',1
reconfigure


    使用完成后,关闭Ad Hoc Distributed Queries:
exec sp_configure 'Ad Hoc Distributed Queries',0
reconfigure
exec sp_configure 'show advanced options',0
reconfigure

SELECT *  into newtable3

 FROM OPENROWSET('Microsoft.Jet.OLEDB.4.0',

'Excel 8.0;Database=C:\yyyy_wind.xls;HDR=YES;IMEX=1', sheet1$ )

发现根本原因了:management studio--->服务器对象-->链接服务器-->Microsoft.Jet.OLEDB.4.0-->右键属性-->访问接口选项:全都不选

http://www.cnblogs.com/huangting2009/archive/2009/10/12/1581679.html

http://wep2008.blogbus.com/logs/35390970.html