dbo.access_log

 

Object Type

Table

Datasource

IPMA

Database

controls

 

Columns
Name Datatype Null
internet_site varchar(255) No
time smalldatetime No

Table Usage (MB)

Distribution of Table Space

 

Data

8.79

Data

99.80 %

Indexes

0.00

Indexes

0.00 %

Unused

0.02

Unused

0.20 %

Total

8.81

Number of Rows

104170

Dependencies
Referencing Objects
Object Name Object Type
dbo.logaccess_sp PROCEDURE
Referenced Objects
Object Name Object Type

DDL

CREATE TABLE dbo.access_log 
(
    internet_site varchar(255)  NOT NULL,
    time          smalldatetime NOT NULL
)
LOCK ALLPAGES
go