Hi,

I have an odd scenario where I need to update one table indicating the
progress of a very large and long running transaction.

What I have (is semi-pseudo-code) is something like:

DB.transaction do # Super long running transaction
    do_transactional_stuff
    update_table_indicating_progress # This must happen outside of the
transaction as an atomic update
    do_transactional_stuff
    update_table_indicating_progress # This must happen outside of the
transaction as an atomic update
    do_transactional_stuff
    update_table_indicating_progress # This must happen outside of the
transaction as an atomic update
end

Is this at all possible with Sequel?

Thank you,
Clive

-- 
You received this message because you are subscribed to the Google Groups 
"sequel-talk" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/sequel-talk?hl=en.

Reply via email to