IBM Books

Administrative API Reference

SQLU-RLOG-INFO

This structure contains information regarding calls to sqlurlog - Asynchronous Read Log. The read log information structure contains information on the status of the call and the database log.

Table 69. Fields in the SQLU-RLOG-INFO Structure
Field Name Data Type Description
initialLSN SQLU_LSN Specifies the LSN value of the first log record written to the database after the first connect is issued. For more information on the SQLU_LSN structure, see SQLU-LSN.
firstReadLSN SQLU_LSN Specifies the LSN value of the first log record read.
lastReadLSN SQLU_LSN Specifies the LSN value of the last log record byte read.
curActiveLSN SQLU_LSN Specifies the LSN value of the current active log.
logRecsWritten UNSIGNED LONG Specifies the number of log records written to the buffer.
logBytesWritten UNSIGNED LONG Specifies the number of bytes written to the buffer.

Language Syntax

C Structure



typedef SQL_STRUCTURE SQLU_RLOG_INFO
{
SQLU_LSN       initialLSN ;
SQLU_LSN       firstReadLSN ;
SQLU_LSN       lastReadLSN ;
SQLU_LSN       curActiveLSN ;
unsigned long  logRecsWritten ;
unsigned long  logBytesWritten ;
} SQLU_RLOG_INFO;


[ Top of Page | Previous Page | Next Page | Table of Contents | Index ]

[ DB2 List of Books | Search the DB2 Books ]