| Table: dbo.Undo_Manager_Entry | |||
| This table stores the xml version of reports when a user is using the Undo Manager. | |||
| Columns | |||
| Name | Type | Constraints | Description |
| undo_manager_entry_KEY | int (4) | NOT NULL | Primary key for Undo_Manager_Entry |
| user_session_guid | uniqueidentifier (16) | NOT NULL | User session guid for Undo_Manager_Entry |
| report_definition_guid | uniqueidentifier (16) | NOT NULL | Report definition guid for Undo_Manager_Entry |
| frame_number | int (4) | NOT NULL | Number representing location in the stack |
| report_xml | nvarchar (-1) | NOT NULL | XML representation of the report |
| Primary key | |||
| Name | Columns | Description | |
| PK_Undo_Manager_Entry | undo_manager_entry_KEY | ||
| Foreign keys | |||
| Name | Columns | Referenced table | Description |
| FK_Undo_Manager_Entry__User_Session__user_session_guid | user_session_guid | User_Session (user_session_guid) | Foreign key for the user session guid. |
| FK_Undo_Manager_Entry__Report_Definition__report_definition_guid | report_definition_guid | Report_Definition (report_definition_guid) | Foreign key for the report definition guid. |