Topic Last Modified: 2010-11-07

The ErrorReport table stores information about errors that have occurred. Each record is one error occurrence. The errors are captured either by the CDR agent running on the front-end server or sent from the client.

Column Data Type Key/Index Details

ErrorTime

datetime

Primary

Date and time the error occurred.

ErrorReportSeq

int

Primary

ID number to identify the error report. Used in conjunction with ErrorTime to uniquely identify an error report.

ErrorId

int

Foreign

Unique ID of the error type. Reference to the ErrorDef Table.

FromUserId

int

Foreign

User who originated the request that caused the error. Reference to the Users Table.

ToUserId

int

Foreign

Destination user for the request that caused the error. Reference to the Users Table.

ConferenceUriId

int

Foreign

Conference URI related to the error. Reference to the ConferenceUris Table. Typically, if ConferenceUriId is not null, then either FromUserId or ToUserId will be null.

SessionIdTime

Datetime

Foreign

Used in conjunction with SessionIdSeq to uniquely identify a session. Reference to the Dialogs Table.

SessionIdSeq

int

Foreign

ID number to identify the session. Used in conjunction with SessionIdTime to uniquely identify a session. Reference to the Dialogs Table.

MsDiagHeader

image

 

More information about the error.

This data can be converted to text format by using: cast(cast(Detail as varbinary(max)) as varchar(max))

ClientVersionId

Int

Foreign

The client version of endpoint that sends the error report. Reference to ClientVersions Table.

IsCapturedByServer

bit

Is the error report captured by the CDR agent running on the front-end server, or sent by the client.

Flag

smallint

Reserved for future use.