dbo.observers

 

Object Type

Table

Datasource

IPMA

Database

publications

 

Columns
Name Datatype Null
code char(19) No
obsid char(8) No

Table Usage (MB)

Distribution of Table Space

 

Data

0.01

Data

25.00 %

Indexes

0.02

Indexes

45.83 %

Unused

0.01

Unused

29.17 %

Total

0.05

Number of Rows

384

Dependencies
Referencing Objects
Object Name Object Type
dbo.observers.mail_ux INDEX
Referenced Objects
Object Name Object Type

DDL

CREATE TABLE dbo.observers 
(
    code  char(19) NOT NULL,
    obsid char(8)  NOT NULL
)
LOCK ALLPAGES
go