dbo.plorig

 

Object Type

Table

Datasource

IPMA

Database

icsa

 


This table holds the original processing levels.

Use and Related Data

None.

Population

The table is populated by the script plorig.csh.
Columns
Name Datatype Null
ptype char(4) No
plevel char(1) No

column ptype

     Processing type.

column plevel.

     Processing level.
 
 

Table Usage (MB)

Distribution of Table Space

 

Data

0.00

Data

25.00 %

Indexes

0.00

Indexes

0.00 %

Unused

0.01

Unused

75.00 %

Total

0.02

Number of Rows

93

Dependencies
Referencing Objects
Object Name Object Type
Referenced Objects
Object Name Object Type

DDL

CREATE TABLE dbo.plorig 
(
    ptype  char(4) NOT NULL,
    plevel char(1) NOT NULL
)
LOCK ALLPAGES
go