ComplianceOperatorAudit Table

ComplianceOperatorAudit is a multi-tenant table that stores the last login and log out date and time for each operator per tenant

Note: To cater for multi-tenant mode, this table may contain data for multiple tenants. Access requires that the database TenantID has been set in the SQL Server connection context information. That setting filters an underlying table to produce this view of data for the single, selected tenant.
Table 1. Database columns for ComplianceOperatorAudit table

Database Column

Details

ComplianceOperatorID

Type: integer. Key

The operator of the setting. Foreign key to the ComplianceOperator table.

LastLogin

Type: datetime. Nullable

Last login datetime.

LastLogout

Type: datetime. Nullable

Last logout datetime.

LastActive

Type: datetime. Key. Nullable

Last active datetime.

IsActive

Type: boolean. Nullable

Indicates whether the operator has been active.

IsPermanent

Type: boolean

Indicates whether the operator is permanently active.