| Columns |
| Name | Datatype | Null |
| username | char(8) | No |
| internet_site | varchar(255) | No |
| mode | int | No |
| time | smalldatetime | No |
|
Table Usage (MB) |
Distribution of Table Space |
|
Data |
10.44 |
Data |
99.72 % |
|
Indexes |
0.00 |
Indexes |
0.00 % |
|
Unused |
0.03 |
Unused |
0.28 % |
|
Total |
10.47 |
Number
of Rows |
196442 |
| Dependencies |
| Referencing Objects |
| Object Name | Object Type |
| dbo.logquery_sp | PROCEDURE |
| Referenced Objects |
| Object Name | Object Type |
| DDL |
CREATE TABLE dbo.query_log
(
username char(8) NOT NULL,
internet_site varchar(255) NOT NULL,
mode int NOT NULL,
time smalldatetime NOT NULL
)
LOCK ALLPAGES
go