This table contains the data quality flag
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 |
| flagno | numeric(3,0) | No |
| action | varchar(7) | No |
column date
The date of the action indicated.column username
The observation number affected.column flagno
The action taken: this is one of INITIAL, ADDED, REMOVED
|
Table Usage (MB) |
Distribution of Table Space |
|
Data |
5.98 |
Data |
29.17 % |
|
Indexes |
14.47 |
Indexes |
70.52 % |
|
Unused |
0.06 |
Unused |
0.31 % |
|
Total |
20.52 |
Number
of Rows |
156232 |
| Dependencies |
| Referencing Objects |
| Object Name | Object Type |
| dbo.dqr_history.dqr_history_ix1 | INDEX |
| dbo.dqr_history.dqr_history_ix2 | INDEX |
| dbo.dqr_history.dqr_history_ix3 | INDEX |
| Referenced Objects |
| Object Name | Object Type |
| DDL |
CREATE TABLE dbo.dqr_history
(
date datetime NOT NULL,
username varchar(16) NOT NULL,
obsno int NOT NULL,
flagno numeric(3,0) NOT NULL,
action varchar(7) NOT NULL
)
LOCK ALLPAGES
go