Paul B. Henson wrote:...
I took another quick look at the BerkeleyDB documentation on the Oracle site and did not see anything that seemed relevant to copying databases between machines. Could I trouble you for a URL to see whether there is anything in those procedures that might have been violated?
http://www.oracle.com/technology/documentation/berkeley-db/db/ref/transapp/archival.html
At a guess, you failed to copy the transaction log files to the slaves.
(To quote the DBENV->set_flags() manual: DB_LOG_AUTOREMOVE If set, Berkeley DB will automatically remove log files that are no longer needed. Automatic log file removal is likely to make catastrophic recovery impossible.
...and catastrophic recovery is necessary for hot backups.)
Philip Guenther