Created 2001-02-15 by Andre Lorbach.
To create a Microsoft SQL-Server Table for WinSyslog 3.x, you can simply use this sample-script.
CREATE TABLE.Syslog ( ID int IDENTITY (1, 1) NOT NULL, ReceivedAt datetime NULL, Facility smallint NULL, Priority smallint NULL, FromHost nvarchar (60) NULL, Message text )