Table: dbo.User_Session_Override | |||
This table holds updates to rows in dbo.User_Session that would have otherwise been blocked. It is important to NOT have a relationship to dbo.User_Session so that we avoid any blocking on enforcing DRI. | |||
Columns | |||
Name | Type | Constraints | Description |
user_session_guid | uniqueidentifier (16) | NOT NULL | Key to the User_Session table. |
logout_date | datetime (8, 3) | NOT NULL | The date and time that the user logged out, or that the session was deemed expired or killed. |
last_access_date | datetime (8, 3) | NOT NULL | Date and time this session was last active. |
user_session_status_KEY | int (4) | NOT NULL | The status of this session (1=Open, 2=Closed, 3=Expired, 4=Killed) |