dbo.caldetails

 

Object Type

Table

Datasource

IPMA

Database

icsa

 

Contains general references and information related to Calibration Observations (Calibration Observations Documentation) for the four ISO instruments (CAM, LWS, PHT and SWS).

The POF- and ICS blocks are extracted from the uplink MDB, aot_pof and aot_ics tables.

Use and Related Data

This information is available on observation basis, for CUS observations only.

Population

The table is populated by the script caldetails.csh.

The tables are populated with bcp character dump files of the uplink MDB
database tables aot_ics and aot_pof.

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

no args:

-build: -build_all: -compress: -nodrop:
Columns
Name Datatype Null
obsno int No
pof text Yes
ics text Yes
column ics
  column obsno column pof

Table Usage (MB)

Distribution of Table Space

 

Data

0.22

Data

0.52 %

Indexes

41.30

Indexes

99.40 %

Unused

0.03

Unused

0.08 %

Total

41.55

Number of Rows

4708

Dependencies
Referencing Objects
Object Name Object Type
dbo.caldetails.caldetails_pk INDEX
Referenced Objects
Object Name Object Type

DDL

CREATE TABLE dbo.caldetails 
(
    obsno int  NOT NULL,
    pof   text NULL,
    ics   text NULL
)
LOCK ALLPAGES
go