This table contains the data quality comment
assignement history for each observation.
See the DQR entity for further information.
Columns |
Name | Datatype | Null |
date | datetime | No |
username | varchar(16) | No |
obsno | int | No |
comment | varchar(255) | Yes |
action | varchar(7) | No |
column date
The date of the comment modification.column username
Table Usage (MB) |
Distribution of Table Space |
Data |
2.64 |
Data |
47.91 % |
Indexes |
2.82 |
Indexes |
51.10 % |
Unused |
0.05 |
Unused |
0.99 % |
Total |
5.52 |
Number
of Rows |
31595 |
Dependencies |
Referencing Objects |
Object Name | Object Type |
dbo.dqr_comment_history.dqr_comment_history_ix1 | INDEX |
dbo.dqr_comment_history.dqr_comment_history_ix2 | INDEX |
dbo.dqr_comment_history.dqr_comment_history_ix3 | INDEX |
Referenced Objects |
Object Name | Object Type |
DDL |
CREATE TABLE dbo.dqr_comment_history
(
date datetime NOT NULL,
username varchar(16) NOT NULL,
obsno int NOT NULL,
comment varchar(255) NULL,
action varchar(7) NOT NULL
)
LOCK ALLPAGES
go