June 2001
Intermediate to advanced
688 pages
19h 18m
English
import com.sleepycat.db.*; public String[] log_archive(int flags) throws DbException;
The DbEnv.log_archive method returns an array of log or database filenames.
By default, DbEnv.log_archive returns the names of all of the log files that are no longer in use (for example, no longer involved in active transactions), and that may safely be archived for catastrophic recovery and then removed from the system. If there were no filenames to return, the memory location referenced by listp will be set to null.
The flags value must be set to 0 or by bitwise inclusively OR’ing together one or more of the following values.
Db.DB_ARCH_ABS All pathnames are returned as absolute pathnames, instead of relative to the database ...