dbo.postcards

 

Object Type

Table

Datasource

IPMA

Database

browseprod

 


This table contains a postcard image for each observation. A postcard is a browse product (browse products are icons, postcards and survey products). The browse products are generated, form the AAR FIRS products, by the browse product generator after BKRP using IPAC, PHT NDC and CAM NDC software.

Use and Related Data

A postcard can be displayed and manipulated using the Survey Product Display Tool (SPDT), which can be accessed by selecting the icon of an observation in the IDA UI.

See also 'icons' table.

Population

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

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
postcard image Yes


column obsno

column postcard

Table Usage (MB)

Distribution of Table Space

 

Data

10.50

Data

0.86 %

Indexes

1207.89

Indexes

98.82 %

Unused

3.97

Unused

0.32 %

Total

1222.37

Number of Rows

59143

Dependencies
Referencing Objects
Object Name Object Type
dbo.postcards.postcards_ux INDEX
Referenced Objects
Object Name Object Type

DDL

CREATE TABLE dbo.postcards 
(
    obsno    int   NOT NULL,
    postcard image NULL
)
LOCK ALLPAGES
go