dbo.observations

 

Object Type

Table

Datasource

IPMA

Database

publications

 

Columns
Name Datatype Null
code char(19) No
obsno int No

Table Usage (MB)

Distribution of Table Space

 

Data

0.79

Data

27.68 %

Indexes

1.98

Indexes

69.45 %

Unused

0.08

Unused

2.87 %

Total

2.86

Number of Rows

28949

Dependencies
Referencing Objects
Object Name Object Type
dbo.add_observation PROCEDURE
dbo.delete_all_observations PROCEDURE
dbo.delete_publication PROCEDURE
dbo.observations.observations_ux INDEX
dbo.observations.observations_ix INDEX
Referenced Objects
Object Name Object Type

DDL

CREATE TABLE dbo.observations 
(
    code  char(19) NOT NULL,
    obsno int      NOT NULL
)
LOCK ALLPAGES
go