CREATE TABLE [dbo].[hosts] (
ts datetime DEFAULT CURRENT_TIMESTAMP NOT NULL,
rtime datetime,
filterid smallint NOT NULL,
rtype smallint,
method smallint,
reason smallint,
clt_ip char(16),
clt_port int,
srv_ip char(16),
srv_port int,
clt_bytes bigint,
srv_bytes bigint,
host char(250))
|