Setting the transaction isolation level from command line

rmichelarmichela Posts: 2
edited January 15, 2013 5:59AM in SQL Compare Previous Versions
SQL Compare 10 has a new feature for setting the transaction isolation level within the application's GUI.

http://www.red-gate.com/supportcenter/C ... v10#o14908

How do I set this option from the command line when running SQL Compare from a deploy script?

Comments

  • Brian DonahueBrian Donahue Posts: 6,590 Bronze 1
    You can get all the command-line help by running the command-line with the verbose and question-mark arguments: there is a lot more there than what you find on the help pages of the website.
    sqlcompare /? /v | more
    
    To specify a transaction isolation level, use transactionIsolationLevel, or til
    sqlcompare /til:SERIALIZABLE
    sqlcompare /til:"READ COMMITTED"
    ...
    
    Hope this helps.
Sign In or Register to comment.