G
gus bjorklund
Guest
> On Apr 13, 2018, at 3:59 PM, ChUIMonster wrote: > > Do SQL queries support any handy syntax like "no-lock" that can be liberally sprinkled throughout the user code? > > you can set the “isolation level” to the exact equivalent of no-lock. SET TRANSACTION ISOLATION LEVEL READ UNCOMMITTED; all other isolation levels require the use of locks to work properly.
Continue reading...
Continue reading...