[ZODB-Dev] oids affected by a transaction

Tim Peters tim.peters at gmail.com
Fri May 19 16:32:12 EDT 2006


[Pascal Peregrina]
> I would like to know if there is a way to get the list of affected oids
> knowing a transcaction id.

Nothing in the storage API reveals this.

> If not, any idea about what would be the simplest way to do that for a
> FileStorage ZODB?

Search the output of fsdump.py:

    http://zope.org/Wikis/ZODB/FileStorageBackup

for tid, and suck out the "oid=<number>" fields from following lines.

You could also look at the internal code executed by FileStorage.undo().

One way or another, you have to search the .fs file for the
transaction's record, then pick apart the data records the transaction
record contains.


More information about the ZODB-Dev mailing list