dbo.icons

 

Object Type

Table

Datasource

IPMA

Database

browseprod

 


This table contains an icon image for each observation. An icon is a browse product (browse products are icons, postcards and survey products). The browse products are generated, from the Auto Analysis Result (AAR) FITS products, by the browse product generator after BKRP using IPAC, PHT NDC and CAM NDC software.

Use and Related Data

The 'icon' of an observation is automatically displayed next to an observation description in the IDA UI. See also 'postcards' table in the following section.

Population

This table is populated by the script icons.csh after BKRP. The script uses the icon GIF files produced by the browse product generator.

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

no argsuments:


-build:


-build_all:


-compress:


-nodrop:

Columns
Name Datatype Null
obsno int No
icon image Yes


column icon

column obsno

Table Usage (MB)

Distribution of Table Space

 

Data

2.29

Data

1.21 %

Indexes

184.71

Indexes

97.33 %

Unused

2.78

Unused

1.47 %

Total

189.78

Number of Rows

59143

Dependencies
Referencing Objects
Object Name Object Type
dbo.icons.icons_ux INDEX
Referenced Objects
Object Name Object Type

DDL

CREATE TABLE dbo.icons 
(
    obsno int   NOT NULL,
    icon  image NULL
)
LOCK ALLPAGES
go