Package db
Class TableStatistics
java.lang.Object
db.TableStatistics
Table statistics data
-
Field Summary
FieldsModifier and TypeFieldDescriptionintTotal number of table nodesintTotal number of buffers used within chanined DBBuffers for record storage.intFor index tables, this indicates the indexed column within the primary table.intTotal number of interior nodesName of table (same name used by both primary table and related index tables)intTotal number of leaf/record nodes.intTotal size of table -
Constructor Summary
Constructors -
Method Summary
-
Field Details
-
name
Name of table (same name used by both primary table and related index tables) -
indexColumn
public int indexColumnFor index tables, this indicates the indexed column within the primary table. For primary tables, this value is -1 and does not apply. -
bufferCount
public int bufferCountTotal number of table nodes -
size
public int sizeTotal size of table -
interiorNodeCnt
public int interiorNodeCntTotal number of interior nodes -
recordNodeCnt
public int recordNodeCntTotal number of leaf/record nodes. -
chainedBufferCnt
public int chainedBufferCntTotal number of buffers used within chanined DBBuffers for record storage.
-
-
Constructor Details
-
TableStatistics
public TableStatistics()
-