dbo.lws_hdr

 

Object Type

Table

Datasource

IPMA

Database

icsa

 


General header information from LGIF, LIAC and LSCA product files requested from LIDT.

Use and Related Data

None.

Population

This table has been populated during BKRP by db-import.
Columns
Name Datatype Null
obsno int No
tmrate smallint No
lphotom char(1) No
lgifrel char(1) No
liacnmis int No
column lgifrel
    Flag. If set to true then relative responsivity information was generated for this file:
T     True
F     False.


column liacnmis

     Number of mismatches of ICS.

column lphotom

     Flag indicating if observation is a photometric observation:

T     True
F     False.
column obsno

     Observation number constructed as follows:

revolution number * 1000000 + target number * 1000 + observation sequence number * 10 + type.
     Please see SCREW 385.

column tmrate

     Telemetry rate in Kilobits per second.

Table Usage (MB)

Distribution of Table Space

 

Data

0.06

Data

51.79 %

Indexes

0.00

Indexes

1.79 %

Unused

0.05

Unused

46.43 %

Total

0.11

Number of Rows

3603

Dependencies
Referencing Objects
Object Name Object Type
dbo.lws_hdr.lws_hdr_ucx INDEX
Referenced Objects
Object Name Object Type

DDL

CREATE TABLE dbo.lws_hdr 
(
    obsno    int      NOT NULL,
    tmrate   smallint NOT NULL,
    lphotom  char(1)  NOT NULL,
    lgifrel  char(1)  NOT NULL,
    liacnmis int      NOT NULL
)
LOCK ALLPAGES
go