dbo.swscaldetails

 

Object Type

Table

Datasource

IPMA

Database

icsa

 


Contains SWS specific references and information related to Calibration Observations (Calibration Observations Documentation).

Use and Related Data

The SWS calibration details table contains references to the following files contained on disk:
 


The SIDT has provided +/- 2000 documentation text files that document calibration observations. These documentation files are linked & viewable to a calibration observation through two relations that are specified below. There are seven types of files as can be seen below. The filenames are all unique and can contain a version number at the end.

For CUS observations, a table CAL_CUS has been delivered as an ascii file containing the following columns:
 


For AOT observations, a table CAL_AOT has been delivered as an ascii file containing the following columns:

Population

The table is populated by the script swscaldetails.csh using the bcp character dump file swscaldetails.bcp created by the script caldetails.pl.
 

The swscaldetails.csh script can take one or more of the following arguments:

no args:

-build: -build_all: -compress: -nodrop:
Columns
Name Datatype Null
obsno int No
co_param varchar(64) Yes
coif varchar(64) No
cob varchar(64) Yes
cus4_verbs varchar(64) Yes
cus4_idsdb varchar(64) Yes
cus4_ics varchar(64) Yes
cus4_icpt varchar(64) Yes


column co_param
column cob
column coif

     Reference to SWS calibration details files on disk.

column cus4_icpt
column cus4_ics
column cus4_idsdb
column cus4_verbs

     Reference to SWS CUS4 (16) files on disk.

column obsno

     Observation number constructed as follows:
 


     Please see SCREW 385.
 
 

Table Usage (MB)

Distribution of Table Space

 

Data

0.14

Data

72.92 %

Indexes

0.02

Indexes

9.38 %

Unused

0.03

Unused

17.71 %

Total

0.19

Number of Rows

1444

Dependencies
Referencing Objects
Object Name Object Type
dbo.swscaldetails.swscaldetails_pk INDEX
Referenced Objects
Object Name Object Type

DDL

CREATE TABLE dbo.swscaldetails 
(
    obsno      int         NOT NULL,
    co_param   varchar(64) NULL,
    coif       varchar(64) NOT NULL,
    cob        varchar(64) NULL,
    cus4_verbs varchar(64) NULL,
    cus4_idsdb varchar(64) NULL,
    cus4_ics   varchar(64) NULL,
    cus4_icpt  varchar(64) NULL
)
LOCK ALLPAGES
go