• Home
  • History
  • Annotate
  • only in this directory
NameDateSize

..21-Jan-201171

commit.awkH A D04-May-2009127

count.awkH A D04-May-2009172

db_printlog.cH A D04-May-200913.1 KiB

dbname.awkH A D04-May-20091.3 KiB

fileid.awkH A D04-May-2009651

logstat.awkH A D04-May-2009718

pgno.awkH A D04-May-2009787

range.awkH A D04-May-2009611

READMEH A D04-May-20091.2 KiB

rectype.awkH A D04-May-2009579

status.awkH A D04-May-2009932

tagsH A D04-May-2009392.4 KiB

txn.awkH A D04-May-2009576

README

1# $Id: README,v 12.0 2004/11/17 03:43:23 bostic Exp $
2
3Berkeley DB log dump utility.  This utility dumps out a DB log in human
4readable form, a record at a time, to assist in recovery and transaction
5abort debugging.
6
7=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
8commit.awk	Output transaction ID of committed transactions.
9
10count.awk	Print out the number of log records for transactions
11		that we encountered.
12
13dbname.awk      Take a comma-separated list of database names and spit
14		out all the log records that affect those databases.
15
16fileid.awk      Take a comma-separated list of file numbers and spit out
17		all the log records that affect those file numbers.
18
19logstat.awk	Display log record count/size statistics.
20
21pgno.awk	Take a comma-separated list of page numbers and spit
22		out all the log records that affect those page numbers.
23
24range.awk	Print out a range of the log.
25
26rectype.awk     Print out a range of the log -- command line should
27		set RECTYPE to the a comma separated list of the
28		rectypes (or partial strings of rectypes) sought.
29
30status.awk	Read through db_printlog output and list the transactions
31		encountered, and whether they committed or aborted.
32
33txn.awk		Print out all the records for a comma-separated list of
34		transaction IDs.
35