dbo.cam_common

 

Object Type

Table

Datasource

IPMA

Database

icsa

 

Table to hold general information used by all CAM AOTs: CAM01, CAM03 and CAM04.

The data attributes of this entity are derived directly from the uplink MDB table cam_common.

Use and Related Data

Every CAM observation (except CAM parallel) should have planning information. The details of the measurements are stored in the CAM measurement table. See the uplink mdb.ddl file for further details.

Population

This table is populated by the script uplink_data.csh. The script uses bcp dump files produced by the utility programs dump_mdb and dump_isolog.

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
nmes int Yes
nref int Yes
column nmes

Number of measurements.

column nref

Number of reference fields for C03.

column obsno

Observation number constructed as follows:
 


Please see SCREW 385 for further details.
 
 

Table Usage (MB)

Distribution of Table Space

 

Data

0.17

Data

59.03 %

Indexes

0.08

Indexes

29.86 %

Unused

0.03

Unused

11.11 %

Total

0.28

Number of Rows

7605

Dependencies
Referencing Objects
Object Name Object Type
dbo.cam_common.cam_common_pk INDEX
Referenced Objects
Object Name Object Type

DDL

CREATE TABLE dbo.cam_common 
(
    obsno int NOT NULL,
    nmes  int NULL,
    nref  int NULL
)
LOCK ALLPAGES
go