博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Insert data from excel to database
阅读量:5280 次
发布时间:2019-06-14

本文共 819 字,大约阅读时间需要 2 分钟。

USE  ESPATruncate table dbo.Interface_Customer--Delete the table data but retain the structureexec sp_configure "show advanced options",1reconfiguregoexec sp_configure "Ad Hoc Distributed Queries",1reconfigure go--Open peripheral component and service related to data imput and exportINSERT INTO Interface_Customer  (Cust_Code,Cust_Name, Src_Sys_Code,Currency,Customer_group)  SELECT  Cust_Code,[Cust_Name ( Chinese)],Src_Sys_Code,Currency,[Customer group]from  OPENDATASOURCE ('Microsoft.ACE.OLEDB.12.0','Data Source="E:\eSPA_database\eSpa2_Test_data-Product.xls";Extended properties=Excel 8.0')...sheet1$--Insert data from excel to database exec sp_configure "Ad Hoc Distributed Queries",0reconfiguregoexec sp_configure "show advanced options",0reconfigurego

贴在这里,图个方便

转载于:https://www.cnblogs.com/Elsie/p/3267404.html

你可能感兴趣的文章
Teamcenter10 step-by-step installation in Linux env-Oracle Server Patch
查看>>
Struts2学习(三)
查看>>
Callable和Runnable和FutureTask
查看>>
GitHub 多人协作开发 三种方式:
查看>>
文本域添加编辑器
查看>>
Yum安装MySQL以及相关目录路径和修改目录
查看>>
java获取hostIp和hostName
查看>>
关于web服务器和数据库的各种说法(搜集到的)
查看>>
C# Stream 和 byte[] 之间的转换
查看>>
OMG: daily scrum nine
查看>>
redis与spring结合错误情况
查看>>
第六章 字节码执行方式--解释执行和JIT
查看>>
字符串方法title()、istitle()
查看>>
yield语句
查看>>
查看linux系统中占用cpu最高的语句
查看>>
[洛谷P1738]洛谷的文件夹
查看>>
ubuntu server设置时区和更新时间
查看>>
【京东咚咚架构演进】-- 好文收藏
查看>>
【HTML】网页中如何让DIV在网页滚动到特定位置时出现
查看>>
文件序列化
查看>>