dbo.tmdrop_log

 

Object Type

Table

Datasource

IPMA

Database

icsa

 

Columns
Name Datatype Null
start_time char(21) No
end_time char(21) No
frames_missed int No
start_utk int No
end_utk int No

Table Usage (MB)

Distribution of Table Space

 

Data

0.30

Data

36.96 %

Indexes

0.41

Indexes

51.21 %

Unused

0.10

Unused

11.84 %

Total

0.81

Number of Rows

5149

Dependencies
Referencing Objects
Object Name Object Type
dbo.tmdrop_log.tmdrop_log_ux1 INDEX
dbo.tmdrop_log.tmdrop_log_ux2 INDEX
dbo.tmdrop_log.tmdrop_log_ux3 INDEX
dbo.tmdrop_log.tmdrop_log_ux4 INDEX
Referenced Objects
Object Name Object Type

DDL

CREATE TABLE dbo.tmdrop_log 
(
    start_time    char(21) NOT NULL,
    end_time      char(21) NOT NULL,
    frames_missed int      NOT NULL,
    start_utk     int      NOT NULL,
    end_utk       int      NOT NULL
)
LOCK ALLPAGES
go