Snort mailing list archives
BASE / SQL Server 2008 and 'create_base_tbls_mssql_extra.sql' ????
From: "Michael Steele" <michaels () winsnort com>
Date: Sun, 14 Aug 2011 18:36:17 -0400
I'm working SQL Server 2008. I know I have to add the main database schema
file (create_base_tbls_mssql.sql) for BASE. However there is another file
called 'create_base_tbls_mssql_extra.sql'.
Does anyone know what this is for, a purpose?
I'm thinking that it wasn't included in the main
'create_base_tbls_mssql.sql' because it's optional?
Contents:
-----------\
-- Copyright (C) 2004 Kevin Johnson
-- Portions Copyright (C) 2002 Carnegie Mellon University
--
-- Author: Kevin Johnson <kjohnson () secureideas net
-- Based upon work by Roman Danyliw <roman () danyliw com>
--
-- This program is free software; you can redistribute it and/or modify
-- it under the terms of the GNU General Public License as published by
-- the Free Software Foundation; either version 2 of the License, or
-- (at your option) any later version.
--
-- This program is distributed in the hope that it will be useful,
-- but WITHOUT ANY WARRANTY; without even the implied warranty of
-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-- GNU General Public License for more details.
--
-- You should have received a copy of the GNU General Public License
-- along with this program; if not, write to the Free Software
-- Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
USA.
--
-- - Purpose:
-- Add referential integrity to the database schema
ALTER TABLE acid_event
ADD CONSTRAINT acid_event_fkey_sid_cid
FOREIGN KEY (sid,cid) REFERENCES event (sid,cid)
ON DELETE CASCADE
ON UPDATE CASCADE;
ALTER TABLE acid_ag_alert
ADD CONSTRAINT acid_ag_alert_fkey_sid_cid
FOREIGN KEY (ag_sid,ag_cid) REFERENCES event (sid,cid)
ON DELETE CASCADE
ON UPDATE CASCADE;
ALTER TABLE iphdr
ADD CONSTRAINT iphdr_fkey_sid_cid
FOREIGN KEY (sid,cid) REFERENCES event (sid,cid)
ON DELETE CASCADE
ON UPDATE CASCADE;
ALTER TABLE tcphdr
ADD CONSTRAINT tcphdr_fkey_sid_cid
FOREIGN KEY (sid,cid) REFERENCES event (sid,cid)
ON DELETE CASCADE
ON UPDATE CASCADE;
ALTER TABLE udphdr
ADD CONSTRAINT udphdr_fkey_sid_cid
FOREIGN KEY (sid,cid) REFERENCES event (sid,cid)
ON DELETE CASCADE
ON UPDATE CASCADE;
ALTER TABLE icmphdr
ADD CONSTRAINT icmphdr_fkey_sid_cid
FOREIGN KEY (sid,cid) REFERENCES event (sid,cid)
ON DELETE CASCADE
ON UPDATE CASCADE;
ALTER TABLE opt
ADD CONSTRAINT opt_fkey_sid_cid
FOREIGN KEY (sid,cid) REFERENCES event (sid,cid)
ON DELETE CASCADE
ON UPDATE CASCADE;
ALTER TABLE data
ADD CONSTRAINT data_fkey_sid_cid
FOREIGN KEY (sid,cid) REFERENCES event (sid,cid)
ON DELETE CASCADE
ON UPDATE CASCADE;
-----------/
Kindest regards,
Michael...
------------------------------------------------------------------------------
FREE DOWNLOAD - uberSVN with Social Coding for Subversion.
Subversion made easy with a complete admin console. Easy
to use, easy to manage, easy to install, easy to extend.
Get a Free download of the new open ALM Subversion platform now.
http://p.sf.net/sfu/wandisco-dev2dev
_______________________________________________
Snort-users mailing list
Snort-users () lists sourceforge net
Go to this URL to change user options or unsubscribe:
https://lists.sourceforge.net/lists/listinfo/snort-users
Snort-users list archive:
http://www.geocrawler.com/redir-sf.php3?list=snort-users
Please see http://www.snort.org/docs for documentation
Current thread:
- BASE / SQL Server 2008 and 'create_base_tbls_mssql_extra.sql' ???? Michael Steele (Aug 14)
- Re: BASE / SQL Server 2008 and 'create_base_tbls_mssql_extra.sql' ???? Nigel Houghton (Aug 14)
- Re: BASE / SQL Server 2008 and 'create_base_tbls_mssql_extra.sql' ???? Michael Steele (Aug 14)
- Re: BASE / SQL Server 2008 and 'create_base_tbls_mssql_extra.sql' ???? Nigel Houghton (Aug 14)
