select *
from openrowset('Microsoft.Jet.OLEDB.4.0'
,'Excel 8.0;HDR=YES;IMEX=1;DATABASE=d:\folder\excel.xls',Sheet1$)
-------NOTE------
Setting IMEX=1 tells the driver to use Import mode. In this state, the registry setting ImportMixedTypes=Text will be noticed. This forces mixed data to be converted to text. For this to work reliably, you may also have to modify the registry setting, TypeGuessRows=8. The ISAM driver by default looks at the first eight rows and from that sampling determines the datatype. If this eight row sampling is all numeric, then setting IMEX=1 will not convert the default datatype to Text; it will remain numeric.
You must be careful that IMEX=1 not be used indiscriminately. This is IMPORT mode, so the results may be unpredictable if you try to do appends or updates of data in this mode.
The possible settings of IMEX are:
0 is Export mode
1 is Import mode
2 is Linked mode (full update capabilities)
Select data from an Excel sheet in MSSQL
2021-09-07 17:37数据库教程网 数据库技术
本文主要为大家介绍Select data from an Excel sheet in MSSQL的一些语句示例,有需要的朋友可以参考下
延伸 · 阅读
- 2022-03-08Linux下Select多路复用实现简易聊天室示例
- 2022-03-05MSSQL 附加数据库提示“错误 823”数据恢复实操
- 2022-01-11易语言调用MS SQL SERVER数据库方法
- 2021-12-26护卫神主机管理系统使用说明之主机MSSQL管理
- 2021-12-21IO复用之select poll epoll的总结(推荐)
- 2021-12-14Mybatis Plus select 实现只查询部分字段
- 数据库技术
在windows系统下如何安装memcached的讲解
今天小编就为大家分享一篇关于在windows系统下如何安装memcached的讲解,小编觉得内容挺不错的,现在分享给大家,具有很好的参考价值,需要的朋友一起跟...
- 数据库技术
在telnet下操作memcache详解(操作命令详解)
这篇文章主要介绍了在telnet下操作memcache详解,telnet下的memcache操作命令详解,需要的朋友可以参考下...
- 数据库技术
关于多写入点数据库集群的一些想法
在分布式数据库系统领域, 多主(多写入点, Leader-less)是一个非常诱人的特性, 因为客户端可以随机请求任何一个节点. 这种可随机选择访问点(写入点)的特性...
- 数据库技术
如何利用分析函数改写范围判断自关联查询详解
这篇文章主要给大家介绍了关于如何利用分析函数改写范围判断自关联查询的相关资料,文中通过示例代码介绍的非常详细,对大家学习或者使用sql具有一...
- 数据库技术
12个数据库安全故障和错误,看看你“踩雷”没?
为了帮助企业认识错误并保持警觉,列出了12种不同的故障模式,即便是团队中最优秀的人也不可避免地会出现这些失误。...
- 数据库技术
解决navicat远程连接mysql报错10038的问题
这篇文章主要介绍了解决navicat远程连接mysql报错10038的问题,本文分步骤通过图文并茂的形式给大家介绍的非常详细,对大家的学习或工作具有一定的参考借...
- 数据库技术
颜值与实用性并存的数据库建模工具Chiner教程
这篇文章主要为大家介绍了一款颜值与实用性并存的数据库建模工具Chiner,推荐大家使用,有需要的朋友可以共同学习参考下,希望能够有所帮助,祝大家...
- 数据库技术
SQL实现分页查询方法总结
这篇文章介绍了SQL实现分页查询方法总结,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧...