| 
				   
搞开发 你有可能会遇到导入 大批excel 数据   
第一步:exec sp_configure 'show advanced options',1 
reconfigure 
  
exec sp_configure 'Ad Hoc Distributed Queries',1 
reconfigure 
  www.2cto.com   
第二步:select * from OpenRowSet('Microsoft.Jet.OLEDB.4.0', 'Excel
  8.0;HDR=Yes;Database=E:\lin_tuser.xls', 'select * from [Sheet1$]') 
  
这两个为注册Microsoft.Jet.OLEDB.4.0 和安装下面的是调用 OpenRowSet 			
				 |