直接用sql语句把dbf导入sqlserver(Import the DBF directly into the sqlserver using the SQL statement).docVIP
- 1、本文档共15页,可阅读全部内容。
- 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
- 5、该文档为VIP文档,如果想要下载,成为VIP会员后,下载免费。
- 6、成为VIP后,下载本文档将扣除1次下载权益。下载后,不支持退款、换文档。如有疑问请联系我们。
- 7、成为VIP后,您将拥有八大权益,权益包括:VIP文档下载权益、阅读免打扰、文档格式转换、高级专利检索、专属身份标志、高级客服、多端互通、版权登记。
- 8、VIP文档为合作方或网友上传,每下载1次, 网站将根据用户上传文档的质量评分、类型等,对文档贡献者给予高额补贴、流量扶持。如果你也想贡献VIP文档。上传文档
查看更多
直接用sql语句把dbf导入sqlserver(Import the DBF directly into the sqlserver using the SQL statement)
直接用sql语句把dbf导入sqlserver(Import the DBF directly into the sqlserver using the SQL statement)
http: / / 43: 8080 / ahnubyspq /
直接用sql语句把dbf导入sqlserver
在sqlserver中执行
select * into bmk from opendatasource (microsoft.jet.oledb.4.0 , data source = e: share; user id = admin; password =; extended properties = dbase 5.0)...bmk
这样就可以把e: share中的bmk.dbf表导入到sqlserver中,
速度是最快的
----------------------------
dbf - sql server
drop table dbf
select * into dbf
from opendatasource (microsoft.jet.oledb.4.0
data source = e: superdatasuperdate _ 停电预演rundataengine东海工程合并; user id =; password =; extended properties = 5.0)...dbf dbase
go
------------------------------------------------------ 成功
excel - sql server
select * into yourtablename from
openrowset (msdasql.1 , driver = microsoft excel driver (*. xls); dbq = d: excelbook2.xls
select * from [sheet1 $] )
成功 --
access -- sql server
insert into access
select * into access
from opendatasource (microsoft.jet.oledb.4.0 , data source = d: mapx _ web.mdb; jet oledb: database password = )...layer _ styleindex
---------------------------------------------- 成功
function tform1.boolean _ excel _ to _ sqlserver _ usingstringlist (p _ str _ machinename: string;
p _ str _ databasename: string;
p _ str _ username: string;
p _ str _ password: string;
p _ stringlist _ filenameandpath: tstringlist;
p: tprogressbar _ progressbar
): boolean;
var / / false: 操作失败
m _ adoconnection: tadoconnection;
m _ str _ filenameandpath: string;
m _ str _ filename: string;
m _ str _ pathname: string;
m _ strsql: string;
m _ strsql1: string;
m _ _ itempos: integer; integer
begin
m _ adoconnection: = tadoconnection.create (nile);
_ adoconnection.connectionstring: = m
provider = sqloledb.1; +
password = + p _ str _ password +, +
persist security info = true; +
user id = + p _ str _ username +, +
initial catalog = + p _ str _ databasename + , +
data source = + p _ str _ machinename;
m _ adoconnection.loginprompt: = false;
try
/ / 连接数据库服务器
m _ adoconnection.connected: = true
您可能关注的文档
- 用ps去水印(Use PS to watermark).doc
- 用什么办法能最有效的减轻压力(What can be the most effective way to relieve stress).doc
- 用tmpgenc 将 avi 转 svcd,vcd 的人必犯的严重错误设定(Using TMPGEnc to turn avi to SVCD, VCD people must commit a serious error setting).doc
- 用友软件应收款、应付款模块操作教程(UFIDA Software receivables, payable module operations tutorial).doc
- 生长激素缺乏症(Growth hormone deficiency).doc
- 用kmplayer看高清hd影片的最优设置方案(Using KMPlayer to see the best scheme of High Definition HD Movie).doc
- 用好autocad的线型比例(Use the linear ratio of AutoCAD).doc
- 用心做事展(Doing things by heart).doc
- 用于圆片级封装的金凸点研制(Development of gold bumps for wafer level packaging).doc
- 用嗅觉再深入认识中药药性(Further understanding of Chinese medicine properties with olfaction).doc
- 直接登陆到桌面(Login directly to the desktop).doc
- 盐酸特比萘芬(Terbinafine Hydrochloride).doc
- 直接访问webbrowser控件中的html源码(Directly access the HTML source in the WebBrowser control).doc
- 直接把格式rm刻盘(Directly to the RM disk format).doc
- 直接通过odbc读写excel(Read and write directly through Excel ODBC).doc
- 直线电机(Linear motor).doc
- 直肠滴入在临床上的应用(Clinical application of rectal instillation).doc
- 直肠癌(rectal cancer).doc
- 直销业的规范发展与社会稳定(Standard development of direct selling industry and social stability).doc
- 直销--请你止步(Direct marketing - please stop.).doc
文档评论(0)