フォルダ内のすべてのSQLファイルを実行したい。この質問の答えは役に立ちました。私は彼らのコマンドを使うことができ、それは期待通りに機能します。
C#コードから実行したい。いくつかの方法を試しましたが、結果が得られませんでした。以下は私が試したが成功しなかったコードです。
Process process = new Process();
Process process = new Process();
process.StartInfo.UseShellExecute = false;
process.StartInfo.RedirectStandardOutput = true;
process.StartInfo.RedirectStandardError = true;
process.StartInfo.CreateNoWindow = true;
process.StartInfo.FileName = "cmd.exe";
process.StartInfo.Arguments = string.Format("for %f in ({2}/*.sql) do sqlcmd /S {0} /d {1} /U {3} /P {4} /E /i {5}",
sqlServerName, databaseName, folder, sqlUserName, sqlPassword, @"""%f""");
process.StartInfo.WorkingDirectory = @"C:\";
process.Start();
process.WaitForExit();
for %f in (*.sql) do sqlcmd /S <servername> /d <dbname> /E /i "%f"
このDOSコマンドをC#コードに移動する方法を知りたい