zoukankan
html css js c++ java
使用bcp,循环将本地txt文本导入远程sqlserver中
txt大文件导入远程数据库,使用bcp效率极高,关于bcp的资料比较少,写了个导入的方法,在项目中应用成功,代码如下
引用空间:
using
System;
using
System.Data;
using
System.Data.SqlClient;
using
System.Diagnostics;
private
void
Page_Load(
object
sender, System.EventArgs e)
{
//
在此处放置用户代码以初始化页面
string
Conn
=
"
data source=192.168.0.1;initial catalog=Test;user id=sa;password=1
"
;
SqlConnection sqlConn
=
new
SqlConnection(Conn);
SqlCommand cmd
=
new
SqlCommand();
cmd.Connection
=
sqlConn;
SqlDataAdapter sda
=
new
SqlDataAdapter(cmd);
sqlConn.Open();
cmd.CommandText
=
"
Select * from Files
"
;
DataSet ds
=
new
DataSet();
sda.Fill(ds);
if
(ds.Tables[
0
].Rows.Count
>
0
)
{
string
BcpExec
=
""
;
for
(
int
i
=
0
;i
<
ds.Tables[
0
].Rows.Count;i
++
)//循环取本地文件名
{
BcpExec
=
@"
bcp Test..Data in D:\test\
"
;
BcpExec
+=
ds.Tables[
0
].Rows[i][
"
path
"
].ToString();
BcpExec
+=
"
-S192.168.0.1 -Usa -P1 -c -t,
"
;//组合bcp命令
Response.Write(ExeCommand(BcpExec));//执行bcp命令并显示操作结果
}
}
}
/**/
///
<summary>
///
执行Cmd命令
///
确保已经server上已经安装sql,否则使用不了bcp命令,
///
如果没有安装sqlserver需要将bcp.exe拷贝到相应目录(这个条件尚未测试)
///
</summary>
///
<param name="commandText"></param>
///
<returns></returns>
public
static
string
ExeCommand(
string
commandText)
{
Process p
=
new
Process();
p.StartInfo.FileName
=
"
cmd.exe
"
;
p.StartInfo.UseShellExecute
=
false
;
p.StartInfo.RedirectStandardInput
=
true
;
p.StartInfo.RedirectStandardOutput
=
true
;
p.StartInfo.RedirectStandardError
=
true
;
p.StartInfo.CreateNoWindow
=
true
;
string
strOutput
=
null
;
try
{
p.Start();
p.StandardInput.WriteLine(commandText);
p.StandardInput.WriteLine(
"
exit
"
);
strOutput
=
p.StandardOutput.ReadToEnd();
p.WaitForExit();
p.Close();
}
catch
(Exception e)
{
strOutput
=
e.Message;
}
return
strOutput;
}
注:ExeCommand函数执行cmd命令是参考
秋枫@Blog
http://blog.csdn.net/zhzuo/archive/2004/12/25/229006.aspx
查看全文
相关阅读:
单片机控制蜂鸣器和弦音发音程序
Ajax发送Post请求
加壳学习笔记(一)-基础知识
每日一小练——等值数目
NTP配置实践
由查找session IP 展开---函数、触发器、包
单片机第13课:串口通信---向计算机发送数据
[think in java]知识点学习
【插件开发】—— 8 IPreferenceStore,插件的键/值存储!
【插件开发】—— 7 SWT布局详解,不能再详细了!
原文地址:https://www.cnblogs.com/cndsn/p/379019.html
最新文章
阿里云aliyunlive视频直播,设置元素浮在视频上方
apicloud,aliyunlive,测试成功
阿里云openapi接口使用,PHP,视频直播
融云消息接口apicloud
fs路径位置与widget路径转换
ECharts简单入门
JS控制光标定位,定位到文本的某个位置
PHP手机号中间四位用星号*代替显示
Yii modules中layout文件的调用
Yii路径总结
热门文章
haskell Types 和 Typeclasses
ruby条件控制结构
ruby面向对象class
《ruby编程语言》笔记2 对象
《ruby编程语言》笔记 1
ruby字符串相关方法
RubyGems使用
2-3-4树
Java动态 遍历List 时删除List特征元素 异常问题 及解决方案总结
Mysql 分别按月, 日为组group,进行统计排序order
Copyright © 2011-2022 走看看