以文本方式查看主题 - Foxtable(狐表) (http://foxtable.com/bbs/index.asp) -- 专家坐堂 (http://foxtable.com/bbs/list.asp?boardid=2) ---- 求助:我想设置一个button按钮,可实现把指定的TXT文件直接导入到Sql server 数据库中 (http://foxtable.com/bbs/dispbbs.asp?boardid=2&id=141930) |
-- 作者:Likai123 -- 发布时间:2019/10/14 16:45:00 -- 求助:我想设置一个button按钮,可实现把指定的TXT文件直接导入到Sql server 数据库中 求助:我想设置一个button按钮,可实现把指定的TXT文件直接导入到Sql server 数据库中 例如:sql语句:Bulk insert [数据库].[dbo].[数据分析] from \'C:\\Users\\Desktop\\9月\\仓库1.txt\' 可在Sql server中运行, 这个怎么改写可在Foxtable 中运行?
[此贴子已经被作者于2019/10/14 16:45:51编辑过]
|
-- 作者:有点蓝 -- 发布时间:2019/10/14 16:58:00 -- 把txt文件上传到服务器指定目录,然后调用sql即可:http://www.foxtable.com/webhelp/topics/0696.htm sql语句:Bulk insert [数据库].[dbo].[数据分析] from \'服务器某个指定目录\\仓库1.txt\'
|
-- 作者:Likai123 -- 发布时间:2019/10/15 8:32:00 -- 谢谢! |