man > db5.3_dump(1)

๐Ÿ“› NAME

db5.3_dump - Write database to flat-text format

๐Ÿš€ Quick Reference

Use CaseCommandDescription
Dump database to stdout db5.3_dump mydb.db ๐Ÿ“„ Write portable flat-text dump
Dump to a file db5.3_dump -f output.txt mydb.db ๐Ÿ“ค Redirect output to file
Dump a specific database db5.3_dump -s dbname mydb.db ๐Ÿ“ Extract one database from file
List databases in file db5.3_dump -l mydb.db ๐Ÿ“‹ Show all databases in file
Debug dump (all info) db5.3_dump -d a mydb.db ๐Ÿ” Debug output with all internal info
Salvage corrupt file db5.3_dump -r mydb.db ๐Ÿ”ง Recover data from corrupt database
Aggressive salvage db5.3_dump -R mydb.db ๐Ÿ’ฅ Get all possible data, even deleted
Printable character dump db5.3_dump -p mydb.db ๐Ÿ–จ๏ธ Use printing chars for keys/data

๐Ÿ“– SYNOPSIS

db5.3_dump [-klNpRrV] [-d ahr] [-f output] [-h home] [-P password] [-s database] file

๐Ÿ“„ DESCRIPTION

The db5.3_dump utility reads the database file file and writes it to the standard output using a portable flat-text format understood by the db5.3_load utility. The file argument must be a file produced using the Berkeley DB library functions.

โš™๏ธ OPTIONS

๐Ÿ” -d

Dump the specified database in a format helpful for debugging the Berkeley DB library routines.

โš ๏ธ The output format of the -d option is not standard and may change, without notice, between releases of the Berkeley DB library.

๐Ÿ“ค -f

Write to the specified file instead of to the standard output. ๐Ÿ“

๐Ÿ  -h

Specify a home directory for the database environment; by default, the current working directory is used. ๐Ÿก

๐Ÿ”‘ -k

Dump record numbers from Queue and Recno databases as keys. ๐Ÿ”ข

๐Ÿ“‹ -l

List the databases stored in the file. ๐Ÿ“œ

โš ๏ธ -N

Do not acquire shared region mutexes while running. Other problems, such as potentially fatal errors in Berkeley DB, will be ignored as well. This option is intended only for debugging errors, and should not be used under any other circumstances. โ˜ข๏ธ

๐Ÿ”’ -P

Specify an environment password. Although Berkeley DB utilities overwrite password strings as soon as possible, be aware there may be a window of vulnerability on systems where unprivileged users can see command-line arguments or where utilities are not able to overwrite the memory containing the command-line arguments. ๐Ÿ”

๐Ÿ–จ๏ธ -p

If characters in either the key or data items are printing characters (as defined by isprint(3)), use printing characters in file to represent them. This option permits users to use standard text editors and tools to modify the contents of databases. ๐Ÿ“

๐Ÿ’ก Note: different systems may have different notions about what characters are considered printing characters, and databases dumped in this manner may be less portable to external systems.

๐Ÿงน -R

Aggressively salvage data from a possibly corrupt file. The -R flag differs from the -r option in that it will return all possible data from the file at the risk of also returning already deleted or otherwise nonsensical items. Data dumped in this fashion will almost certainly have to be edited by hand or other means before the data is ready for reload into another database. ๐Ÿ’ฅ

๐Ÿ”ง -r

Salvage data from a possibly corrupt file. When used on an uncorrupted database, this option should return equivalent data to a normal dump, but most likely in a different order. ๐Ÿš‘

๐Ÿ“ -s

Specify a single database to dump. If no database is specified, all databases in the database file are dumped. ๐ŸŽฏ

๐Ÿ“Œ -V

Write the library version number to the standard output, and exit. โ„น๏ธ

๐Ÿ’ก Dumping and reloading Hash databases that use user-defined hash functions will result in new databases that use the default hash function. Although using the default hash function may not be optimal for the new database, it will continue to work correctly.

โš ๏ธ Dumping and reloading Btree databases that use user-defined prefix or comparison functions will result in new databases that use the default prefix and comparison functions. In this case, it is quite likely that the database will be damaged beyond repair permitting neither record storage or retrieval.

The only available workaround for either case is to modify the sources for the db5.3_load utility to load the database using the correct hash, prefix, and comparison functions. ๐Ÿ› ๏ธ

The db5.3_dump utility output format is documented in the Dump Output Formats section of the Berkeley DB Reference Guide. ๐Ÿ“˜

The db5.3_dump utility may be used with a Berkeley DB environment (as described for the -h option, the environment variable DB_HOME, or because the utility was run in a directory containing a Berkeley DB environment). In order to avoid environment corruption when using a Berkeley DB environment, db5.3_dump should always be given the chance to detach from the environment and exit gracefully. To cause db5.3_dump to release all environment resources and exit cleanly, send it an interrupt signal (SIGINT). ๐Ÿ›‘

Even when using a Berkeley DB database environment, the db5.3_dump utility does not use any kind of database locking if it is invoked with the -d, -R, or -r arguments. If used with one of these arguments, the db5.3_dump utility may only be safely run on databases that are not being modified by any other process; otherwise, the output may be corrupt. โš ๏ธ

๐Ÿšช Exit Codes

The db5.3_dump utility exits 0 on success, and >0 if an error occurs.

๐ŸŒ ENVIRONMENT

DB_HOME
If the -h option is not specified and the environment variable DB_HOME is set, it is used as the path of the database home, as described in DB_ENV->open.

๐Ÿ‘ฅ AUTHORS

Sleepycat Software, Inc. This manual page was created based on the HTML documentation for db_dump from Sleepycat, by Thijs Kinkhorst <thijs AT kinkhorst.com>, for the Debian system (but may be used by others).

28 January 2005 DB5.3_DUMP(1)

db5.3_dump(1)
๐Ÿ“› NAME ๐Ÿš€ Quick Reference ๐Ÿ“– SYNOPSIS ๐Ÿ“„ DESCRIPTION โš™๏ธ OPTIONS
๐Ÿ” -d ๐Ÿ“ค -f ๐Ÿ  -h ๐Ÿ”‘ -k ๐Ÿ“‹ -l โš ๏ธ -N ๐Ÿ”’ -P ๐Ÿ–จ๏ธ -p ๐Ÿงน -R ๐Ÿ”ง -r ๐Ÿ“ -s ๐Ÿ“Œ -V
๐Ÿšช Exit Codes ๐ŸŒ ENVIRONMENT ๐Ÿ‘ฅ AUTHORS

Generated by phpman v4.9.22-1-g1b0fcb4 · Markdown · JSON · MCP Author: Che Dong Under GNU General Public License
2026-07-05 06:18 @216.73.216.52
CrawledBy Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)
Valid XHTML 1.0 Transitional!Valid CSS!
Enhanced by LLM: deepseek-v4-pro / taotoken.net / www.chedong.com - original format

^_top_^