我試圖打開SQL Server Management Studio中,programitically,我已經使用過程打開SQL Server和已經使用start()方法打開的過程中,綁定到現有進程
using System.Diagnostics;
Process Sql = new Process();
string strfile1="example1.sql";
string strfile2="example2.sql";
Sql.StartInfo.FileName = "Ssms.exe";//sql server process
Sql.StartInfo.Arguments = strfile1;
Sql.Start();
Sql.StartInfo.Arguments = strfile2;
Sql.Start();
此代碼打開SQL Server的兩個實例,但我想檢查該進程是否已在運行,並重用現有進程並在同一Process中打開example2.sql。可以這樣做嗎?