home *** CD-ROM | disk | FTP | other *** search
/ moodle.waes.ac.uk / moodle.waes.ac.uk.zip / moodle.waes.ac.uk / TMG / SP1-TMG-KB981324-AMD64-ENU.msp / PCW_CAB_SHFx2 / F2143_msfpcui.dll / BINARY / 25060 < prev    next >
Text File  |  2010-06-15  |  671b  |  19 lines

  1. IF OBJECT_ID ('tblSiteSummary', 'u') IS NULL
  2. BEGIN
  3.     CREATE TABLE [dbo].[tblSiteSummary](
  4.         [Site] [varchar](2048) NULL,
  5.         [BytesIn] [bigint] NULL,
  6.         [BytesOut] [bigint] NULL,
  7.         [TotalBytes] [bigint] NULL,
  8.         [Requests] [bigint] NULL,
  9.         [URLCategoryId] [int] NULL,
  10.         [MalwareIncidents] [bigint] NULL,
  11.         [MalwareInspectionDuration] [bigint] NULL,
  12.         [Action] [int] NULL,
  13.         [Date] [datetime] NULL
  14.     ) ON [PRIMARY]
  15.  
  16.     EXECUTE dbo.ISA_spDuplicateEmptyTable 'tblSiteSummary', 'tblSiteSummary_Daily', 0
  17.     EXECUTE dbo.ISA_spDuplicateEmptyTable 'tblSiteSummary', 'tblSiteSummary_Monthly', 0
  18. END
  19.