dbo.cam_coords

 

Object Type

Table

Datasource

IPMA_1

Database

icsa

 


This table holds the coordinates for every reference source used by CAM03 (beam switching). Columns of this table are derived directly form the uplink MDB table cam_coords.

Use and RelatedData

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
count_index smallint No
orgepoch int Yes
orgra float Yes
orgdec float Yes
orgalat float Yes
orgalon float Yes
ra float Yes
dec float Yes
column count_index

column dec column obsno column orgalat column orgalon column orgdec column orgepoch column orgra column ra

Table Usage (MB)

Distribution of Table Space

 

Data

0.04

Data

35.71 %

Indexes

0.02

Indexes

16.07 %

Unused

0.05

Unused

48.21 %

Total

0.11

Number of Rows

490

Dependencies
Referencing Objects
Object Name Object Type
dbo.cam_coords.cam_common_coords_fk INDEX
dbo.cam_coords.cam_coords_pk INDEX
Referenced Objects
Object Name Object Type

DDL

CREATE TABLE dbo.cam_coords
(
    obsno       int      NOT NULL,
    count_index smallint NOT NULL,
    orgepoch    int      NULL,
    orgra       float    NULL,
    orgdec      float    NULL,
    orgalat     float    NULL,
    orgalon     float    NULL,
    ra          float    NULL,
    dec         float    NULL
)
LOCK ALLPAGES
go