Comments
Sort by recent activity
I figured it out.
Instead of using:
cmd /C "C:\Program Files\Red Gate\SQL Bundle 5\SQLCompare.exe" /database1:db name /makesnapshot:\\server\share
\snapshots\db_name.snp
I changed it to the old sytle path like this and I was able to use quotes around the parameters instead of the executable path:
cmd /C c:\progra~1\redgat~1\sqlbun~1\SQLCompare.exe "/database1:dn name" /makesnapshot:\\server\share
\snapshots\db_name.snp
I also replace any spaces in the /makeshapshot: parameter with _, otherwise I probably would have needed quotes around that as well.
Thanks. / comments
I figured it out.
Instead of using:
cmd /C "C:\Program Files\Red Gate\SQL Bundle 5\SQLCompare.exe" /database1:db name /makesnapshot:\\server\share
\snapshots\db_name.snp
I changed it to the old syt...