Ran wants the transaction journal to be a permanent transaction log, with the ability to explicitly run a rollback operation on it (after the transaction was committed). Unlimited undo support using only the transaction control statements.
To answer the question, no, there's no support for that. I do not know how hard it would be to do, but considering the journal is designed to be temporary and database crash recovery depends on that property, it would probably be nontrivial work. Also note that the journal is page-oriented with respect to DB changes, so several transactions in journal form would likely take up more space than a row-oriented log. ----------------------------------------------------------------------------- To unsubscribe, send email to [EMAIL PROTECTED] -----------------------------------------------------------------------------