Note: use db3_ for newer version of DB ============================== berkeley_db_svc [-Vv] [-h home] [-I seconds] [-L file] [-t seconds] [-T seconds] Description The berkeley_db_svc utility is the Berkeley DB RPC server. ------------------------------ db_dump [-klNpRrV] [-d ahr] [-f output] [-h home] [-P password] [-s database] file db_dump185 [-p] [-f output] file ------------------------------ db_checkpoint The db_checkpoint utility runs as a daemon process, monitoring the database log and periodically issuing checkpoints. ------------------------------ db_deadlock The db_deadlock utility runs as a daemon process, periodically traversing the database lock structures and aborting transactions when it detects a deadlock. ------------------------------ db_archive The db_archive utility supports database backup and archival, and log file administration. ------------------------------ db_load The db_load utility reads the flat-text file produced by db_dump and loads it into a database file. ------------------------------ db_printlog The db_printlog utility displays the contents of Berkeley DB log files in a human-readable and parsable format. ------------------------------ db_recover The db_recover utility runs after an unexpected Berkeley DB or system failure to restore the database to a consistent state. ------------------------------ db_stat The db_stat utility displays statistics for databases and database environments. ------------------------------ db_upgrade The db_upgrade utility provides a command-line interface for upgrading underlying database formats. ------------------------------ db_verify The db_verify utility provides a command-line interface for verifying the database format. ------------------------------ Loading text into databases awk -F: '{print $1; print $0}' < /etc/passwd |\ sed 's/\\/\\\\/g' | db_load -T -t hash passwd.db ------------------------------ ------------------------------