Icon ServerSessionStatistics Table

Structure
CREATE TABLE "ServerSessionStatistics"
(
"SessionID" INTEGER,
"SessionName" VARCHAR(40) COLLATE "ANSI_CI",
"DatabaseName" VARCHAR(40) COLLATE "ANSI_CI",
"TableName" VARCHAR(40) COLLATE "ANSI_CI",
"BufferMgr" VARCHAR(40) COLLATE "ANSI_CI",
"MaxBufferSize" INTEGER,
"CurrentBufferSize" INTEGER,
"Hits" BIGINT,
"Misses" BIGINT,
"HitRatio" DECIMAL(19,2),
"Reads" BIGINT,
"BytesRead" BIGINT,
"Writes" BIGINT,
"BytesWritten" BIGINT
)

CREATE INDEX "SessionID" ON "ServerSessionStatistics"
("SessionID")
   
CREATE INDEX "SessionName" ON "ServerSessionStatistics"
("SessionName")

CREATE INDEX "DatabaseName" ON "ServerSessionStatistics"
("DatabaseName")

CREATE INDEX "TableName" ON "ServerSessionStatistics"
("TableName")

Description
This table reflects the table buffer manager statistics for all of the sessions that are present on the ElevateDB server that the current session is logged in to. This information is useful in determining how efficient the ElevateDB Server is with respect to I/O, and also how much I/O is actually taking place. For example, a large number of reads for the row buffer manager for a table may indicate that you have an un-optimized query or filter present in your application that is causing an inordinate number of row reads. The current user must be granted the system-defined Administrators role in order to view this table. Please see the User Security topic for more information.

The BufferMgr column values are as follows:

BufferMgrDescription
RowThe statistics are for the row buffer manager for the table
Index pageThe statistics are for the index page buffer manager for the table
BLOB blockThe statistics are for the BLOB block buffer manager for the table
Published updates log blockThe statistics are for the published updates log block buffer manager for the table

Related DDL Statements
StatementDescription
DISCONNECT SERVER SESSIONDisconnects an existing server session
REMOVE SERVER SESSIONRemoves an existing server session
Image