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
查看全文
相关阅读:
Qt之QLabel
在Servlet中使用spring注入的bean
Matlab中图片保存的5种方法
LATEX中优化问题如何排列Max——s.t.格式
Latex 初学者入门(四)-- 多个作者共享同一个地址
一份不太简短的LaTeX教程 lshort – A short introduction to LATEX 2elshort – A short introduction to LATEX 2e
LaTeX技巧:LaTeX括号总结
Bibtex使用方法
Latex初学者入门(三)-- 用BibTeX生成参考文献
LaTeX之参考文献的写法
原文地址:https://www.cnblogs.com/cndsn/p/379019.html
最新文章
printf 与c的基本类型之间的关系
Destination Host Unreachable
No space left on device you must specify the filesystem type--Linux重启挂在失败
IE11 的区别
JS判断是否为IE浏览器 包含了IE11
No space left on device 解决Linux系统磁盘空间满的办法
Linuxc:创建与监控多个子进程
矩阵乘法
Tomcat安装及配置教程
jQuery UI全教程之一(dialog的使用教程)
热门文章
如何去除图片上的文字(PS使用教程)
Android学习之GridView图片布局适配经验
HDU 4390 Number Sequence (容斥原理+组合计数)
了解自己主动内存管理
计算日期
套接字源代码分析
图的基本算法(最小生成树)
JDK1.7中的ThreadPoolExecutor源代码剖析
POJ3624 Charm Bracelet 【01背包】
C经典之14-双向链表存储1-10---ShinePans
Copyright © 2011-2022 走看看