mariadb/bdb/db_printlog/README

35 lines
1.2 KiB
Text
Raw Normal View History

2002-10-30 12:57:05 +01:00
# $Id: README,v 10.6 2002/06/20 14:52:54 bostic Exp $
2001-03-05 01:42:05 +01:00
Berkeley DB log dump utility. This utility dumps out a DB log in human
readable form, a record at a time, to assist in recovery and transaction
abort debugging.
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
commit.awk Output transaction ID of committed transactions.
count.awk Print out the number of log records for transactions
that we encountered.
2002-10-30 12:57:05 +01:00
dbname.awk Take a comma-separated list of database names and spit
out all the log records that affect those databases.
2001-03-05 01:42:05 +01:00
fileid.awk Take a comma-separated list of file numbers and spit out
all the log records that affect those file numbers.
2002-10-30 12:57:05 +01:00
logstat.awk Display log record count/size statistics.
2001-03-05 01:42:05 +01:00
pgno.awk Take a comma-separated list of page numbers and spit
out all the log records that affect those page numbers.
range.awk Print out a range of the log.
2002-10-30 12:57:05 +01:00
rectype.awk Print out a range of the log -- command line should
set RECTYPE to the a comma separated list of the
rectypes (or partial strings of rectypes) sought.
2001-03-05 01:42:05 +01:00
status.awk Read through db_printlog output and list the transactions
encountered, and whether they commited or aborted.
txn.awk Print out all the records for a comma-separated list of
transaction IDs.