From 780b92ada9afcf1d58085a83a0b9e6bc982203d1 Mon Sep 17 00:00:00 2001 From: Lorry Tar Creator Date: Tue, 17 Feb 2015 17:25:57 +0000 Subject: Imported from /home/lorry/working-area/delta_berkeleydb/db-6.1.23.tar.gz. --- docs/programmer_reference/arch_utilities.html | 138 +++++++++++++++++--------- 1 file changed, 93 insertions(+), 45 deletions(-) (limited to 'docs/programmer_reference/arch_utilities.html') diff --git a/docs/programmer_reference/arch_utilities.html b/docs/programmer_reference/arch_utilities.html index 3651fe58..63a2414e 100644 --- a/docs/programmer_reference/arch_utilities.html +++ b/docs/programmer_reference/arch_utilities.html @@ -14,7 +14,7 @@ -

The following are the standalone utilities that provide supporting -functionality for the Berkeley DB environment:

+

+ The following are the standalone utilities that provide + supporting functionality for the Berkeley DB + environment: +

db_archive utility
-
The db_archive utility supports database backup and archival, -and log file administration. It facilitates log reclamation and the -creation of database snapshots. Generally, some form of log archival -must be done if a database environment has been configured for logging -or transactions.
+
+ The db_archive utility supports database backup and + archival, and log file administration. It facilitates + log reclamation and the creation of database + snapshots. Generally, some form of log archival must + be done if a database environment has been configured + for logging or transactions. +
db_checkpoint utility
-
The db_checkpoint utility runs as a daemon process, monitoring -the database log and periodically issuing checkpoints. It facilitates -log reclamation and the creation of database snapshots. Generally, some -form of database checkpointing must be done if a database environment has -been configured for transactions.
+
+ The db_checkpoint utility runs as a daemon process, + monitoring the database log and periodically issuing + checkpoints. It facilitates log reclamation and the + creation of database snapshots. Generally, some form + of database checkpointing must be done if a database + environment has been configured for + transactions. +
db_deadlock utility
-
The db_deadlock utility runs as a daemon process, periodically -traversing the database lock structures and aborting transactions when it -detects a deadlock. Generally, some form of deadlock detection must be -done if a database environment has been configured for locking.
+
+ The db_deadlock utility runs as a daemon process, + periodically traversing the database lock structures + and aborting transactions when it detects a deadlock. + Generally, some form of deadlock detection must be + done if a database environment has been configured for + locking. +
db_dump utility
-
The db_dump utility writes a copy of the database to a flat-text file in a portable format.
+
+ The db_dump utility writes a copy of the database to a + flat-text file in a portable format. +
db_hotbackup utility
-
The db_hotbackup utility creates "hot backup" or "hot failover" -snapshots of Berkeley DB database environments.
+
+ The db_hotbackup utility creates "hot backup" or "hot + failover" snapshots of Berkeley DB database + environments. +
db_load utility
-
The db_load utility reads the flat-text file produced by the db_load utility and loads it into a database file.
+
+ The db_load utility reads the flat-text file produced + by the db_load utility and loads it into a database + file. +
db_printlog utility
-
The db_printlog utility displays the contents of Berkeley DB log files in a human-readable and parsable format.
+
+ The db_printlog utility displays the contents of + Berkeley DB log files in a human-readable and parsable + format. +
db_recover utility
-
The db_recover utility runs after an unexpected Berkeley DB or system -failure to restore the database to a consistent state. Generally, some -form of database recovery must be done if databases are being modified.
+
+ The db_recover utility runs after an unexpected + Berkeley DB or system failure to restore the database + to a consistent state. Generally, some form of + database recovery must be done if databases are being + modified. +
db_sql_codegen
-
The db_sql_codegen utility translates a - schema description written in a SQL Data Definition Language dialect - into C code that implements the schema using Berkeley DB.
+
+ The db_sql_codegen utility translates a schema + description written in a SQL Data Definition Language + dialect into C code that implements the schema using + Berkeley DB. +
db_stat utility
-
The db_stat utility displays statistics for databases and database -environments.
+
+ The db_stat utility displays statistics for databases + and database environments. +
db_tuner utility
-
The db_tuner utility suggests a page size for btree databases that optimizes cache efficiency and storage space requirements.
+
+ The db_tuner utility suggests a page size for btree + databases that optimizes cache efficiency and storage + space requirements. +
db_upgrade utility
-
The db_upgrade utility provides a command-line interface for upgrading underlying database formats.
+
+ The db_upgrade utility provides a command-line + interface for upgrading underlying database + formats. +
db_verify utility
-
The db_verify utility provides a command-line interface for verifying the database format.
+
+ The db_verify utility provides a command-line + interface for verifying the database + format. +
-

All of the functionality implemented for these utilities is also available -as part of the standard Berkeley DB API. This means that threaded applications -can easily create a thread that calls the same Berkeley DB functions as do the -utilities. This often simplifies an application environment by removing -the necessity for multiple processes to negotiate database and database -environment creation and shut down.

+

+ All of the functionality implemented for these utilities is + also available as part of the standard Berkeley DB API. This + means that threaded applications can easily create a thread + that calls the same Berkeley DB functions as do the utilities. + This often simplifies an application environment by removing + the necessity for multiple processes to negotiate database and + database environment creation and shut down. +

-- cgit v1.2.1