dbo.pointing_ifpg

 

Object Type

Table

Datasource

IPMA

Database

icsa

 


This table links the pointing (in the aph table) to the IFPG dataset used for the first 21 revolutions.

Use and Related Data

This table is related to the ifpg table.

Population

See SCREW 392.
Columns
Name Datatype Null
dataset_id tinyint No
pointing_id int No

column dataset_id

     Dataset identifier.

column pointing_id

     Pointer identifier
 
 

Table Usage (MB)

Distribution of Table Space

 

Data

0.01

Data

7.50 %

Indexes

0.01

Indexes

15.00 %

Unused

0.06

Unused

77.50 %

Total

0.08

Number of Rows

353

Dependencies
Referencing Objects
Object Name Object Type
dbo.pointing_ifpg.pointing_ifpg_ix INDEX
dbo.pointing_ifpg.pointing_ifpg_ix2 INDEX
Referenced Objects
Object Name Object Type

DDL

CREATE TABLE dbo.pointing_ifpg 
(
    dataset_id  tinyint NOT NULL,
    pointing_id int     NOT NULL
)
LOCK ALLPAGES
go