sqlserver从xlsx读取数据

Posted Ender.Lu

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sqlserver从xlsx读取数据相关的知识,希望对你有一定的参考价值。

exec sp_configure \'show advanced options\',1
reconfigure
exec sp_configure \'Ad Hoc Distributed Queries\',1
RECONFIGURE
GO
EXEC master.dbo.sp_MSset_oledb_prop N\'Microsoft.ACE.OLEDB.12.0\', N\'AllowInProcess\', 1
EXEC master.dbo.sp_MSset_oledb_prop N\'Microsoft.ACE.OLEDB.12.0\', N\'DynamicParameters\', 1
GO
select *
from openrowset
(
	\'Microsoft.ACE.OLEDB.12.0\',
	\'Excel 12.0;Database=d:\\cc.xls\',
	\'select * from [t_employee$]\'
)

GO
exec sp_configure \'Ad Hoc Distributed Queries\',0
reconfigure
exec sp_configure \'show advanced options\',0
reconfigure 

  

AccessDatabaseEngine_X64.exe驱动,选择相应版本下载

下载地址:https://www.microsoft.com/zh-cn/download/details.aspx?id=13255

 

https://www.cnblogs.com/sevene/p/6256284.html

以上是关于sqlserver从xlsx读取数据的主要内容,如果未能解决你的问题,请参考以下文章

从xlsx文件获取数据时无法从文本单元格获取数值

从python中的xls或xlsx文件读取后将数据转换为字符串

从 .xlsx (Excel) 文件中读取数据并在数组中排列/管理或创建数组

在使用 apache poi 从扩展名为 xlsx 的 Excel 文件中读取数据时,需要很长时间

从Excel向MATLAB中导入数据出现了nan怎么处理

用 Apache POI 读取 XLSX 数据