Activity overview
Latest activity by richard_litzo
To be clearer, I'd like to know if the standard versions of SQL Compare and Data Compare are able to be called programatically - E.g. process = new Process(); process.StartInfo.FileName = sqlDataCompare; process.StartInfo.Arguments = string.Format("/backup1:{0} /backup2:{1} /scriptfile:{2}", currentBackup, previousBackup, sqlDataChanges); process.StartInfo.UseShellExecute = false; process.StartInfo.RedirectStandardOutput = true; process.StartInfo.RedirectStandardError = true; process.StartInfo.CreateNoWindow = true; process.StartInfo.WindowStyle = ProcessWindowStyle.Hidden; process.Start(); sqlCompareOutput = process.StandardOutput.ReadToEnd(); sqlComareError = process.StandardError.ReadToEnd(); process.WaitForExit(); / comments
To be clearer, I'd like to know if the standard versions of SQL Compare and Data Compare are able to be called programatically - E.g. process = new Process(); process.StartInfo.FileName = sqlD...