| sep2006.tar |
Listing 6 SQL commands to create a sample capture table
CREATE DATABASE netwacc;
USE netwacc;
CREATE TABLE rawcpature (
tstamp DATETIME NOT NULL,
srcip INT UNSIGNED,
srcport INT UNSIGNED,
dstip INT UNSIGNED,
dstport INT UNSIGNED,
datalength INT UNSIGNED
);
|