You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
791 B
40 lines
791 B
typedef struct tagKEYSTATS
|
|
{
|
|
ULONG cRecords;
|
|
ULONG cbMinKey;
|
|
ULONG cbMaxKey;
|
|
ULONG cbTotalKey;
|
|
ULONG cbKeySavings;
|
|
ULONG cOccurrencesCurKey;
|
|
|
|
ULONG rgcKeyOccurrences[15];
|
|
} KEYSTATS;
|
|
|
|
typedef struct tagDBCCINFO
|
|
{
|
|
PIB *ppib;
|
|
DBID dbid;
|
|
FUCB *pfucb;
|
|
DBUTIL_OP op;
|
|
JET_GRBIT grbitOptions;
|
|
|
|
/* consistency check information
|
|
/**/
|
|
JET_TABLEID tableidPageInfo;
|
|
JET_TABLEID tableidSpaceInfo;
|
|
|
|
/* common information
|
|
/**/
|
|
ULONG ulIndentLevel;
|
|
CHAR szDatabase[JET_cbNameMost + 1];
|
|
CHAR szTable[JET_cbNameMost + 1];
|
|
CHAR szIndex[JET_cbNameMost + 1];
|
|
} DBCCINFO;
|
|
|
|
|
|
ERR ErrDUMPHeader( CHAR *szDatabase, BOOL fSetState );
|
|
ERR ErrDUMPCheckpoint( CHAR *szCheckpoint );
|
|
|
|
#ifdef DEBUG
|
|
ERR ErrDUMPLog( CHAR *szLog );
|
|
#endif
|