This table contains the text of Quality Control comments about an observation. This can come from one of several sources:
QC CommentSeveral different comments (from different sources) may be available for a single observation.
Suspect Pointing List
PHT QCL2 parts 1 & 2
LWS Quality check files
OFRP QC
LWS Parallel QC (lwswarning)
A single comment may be contained in multiple table entries: the comment text is restricted to 255 characters and so longer comments must be split into multiple entries of this table. The 'line' column is used to distinguish the lines of a single comment.
These commens are displayed in the UI under the 'Details' of an observation.
Also note that this table is regularly updated as new information on the quality of observations is discovered.
Columns |
Name | Datatype | Null |
obsno | int | No |
source | tinyint | No |
line | int | No |
comment | varchar(255) | No |
Observation number.column source
An integer value indicating the source (origin) of the comment. This is one of:column line1 QC Comment
2 Suspect Pointing List
4 PHT QCL2 parts 1 & 2
5 LWS Quality check files
6 OFRP QC
7 LWS Parallel QC (lwswarning table)
Indicates the line number of a comment for comments that span multiple lines (i.e. more than 255 characters).column comment
The comment text.
Table Usage (MB) |
Distribution of Table Space |
Data |
2.15 |
Data |
70.81 % |
Indexes |
0.74 |
Indexes |
24.48 % |
Unused |
0.14 |
Unused |
4.70 % |
Total |
3.03 |
Number
of Rows |
31595 |
Dependencies |
Referencing Objects |
Object Name | Object Type |
dbo.comments.comments_ux | INDEX |
Referenced Objects |
Object Name | Object Type |
DDL |
CREATE TABLE dbo.comments
(
obsno int NOT NULL,
source tinyint NOT NULL,
line int NOT NULL,
comment varchar(255) NOT NULL
)
LOCK ALLPAGES
go