string tmpFile = Path.GetTempFileName();
string argument = string.Format(@" -S {0} -d {1} -i ""{2}"" -o ""{3}""",
ServerName, DatabaseName, fileName, tmpFile);
// append user/password if not use integrated security
if (!connection.IsIntegratedSecurity)
argument += string.Format(" -U {0} -P {1}", User, Password);
var process = Process.Start("sqlcmd.exe", argument);
process.StartInfo.UseShellExecute = false;
process.StartInfo.CreateNoWindow = true;
process.Start();
while (true)
{
// wait for the process exits. The WaitForExit() method doesn't work
if (process.HasExited)
break;
Thread.Sleep(500);
}
C#调用SQLCMD去批量执行sql脚本
原创
©著作权归作者所有:来自51CTO博客作者iteyer的原创作品,请联系作者获取转载授权,否则将追究法律责任
提问和评论都可以,用心的回复会被更多人看到
评论
发布评论
相关文章
-
C++栈应用题——车厢调动
C++栈应用题——车厢调动!
c++ #include ios i++ 其他 -
C#
IT。。。C#
C#简介