Start of Content Area

This graphic is explained in the accompanying text LOGSTATISTICS  Locate the document in its SAP Library structure

Prerequisites

Log on to the database instance DEMODB.

Examples

You can use the system tableLOGSTATISTICS to determine the following database information, among other things:

·        Size of the log area and used log area

SELECT usablesize, usedsize, usedsizepercentage
  FROM SYSINFO.LOGSTATISTICS

·        Number of log queues and their size(s)

SELECT queuecount, queuesize
  FROM SYSINFO.LOGSTATISTICS

·        Size of the log area that has not yet been backed up

SELECT notsavedsize, notsavedpercentage
  FROM SYSINFO.LOGSTATISTICS

 

End of Content Area