在sqlserver2005中导入excel文件

在sqlserver2005中导入excel文件可以有很多方法

1)DTS
2)编程
3)Sql Command。SQL提供两个函数来导入数据,这里以OPENROWSET为例


EXEC sp_configure 'show advanced option', '1';
go
RECONFIGURE;
go
sp_configure 'Ad Hoc Distributed Queries', 1;  --开启即席查询
go
sp_configure 'show advanced options', 0;  --关闭高级配置
GO
RECONFIGURE;
GO

SELECT * INTO #temp1 FROM OPENROWSET('Microsoft.Jet.OLEDB.4.0',
'Excel 8.0;HDR=YES;Database=d:/1.xls', Sheet$) 

D:/1.xls  路径名
Sheet$  工作表的名称,注意: $ 不能少

你可能感兴趣的:(数据库)