I have a sequence container which in turn calls other sequence containers containing calls to stored procedures via the execute SQL task. The outer most sequence container has an isolation level of snapshot, all other containers have an isolation of supported.
My hope and expectation was that I would only see committed data from the stored procs if they all successfully executed, however what I'm seeing is the default read committed behaviour. Can someone point me in the correct direction as to what I need to do
to get the desired transaction behaviour I want.
↧