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 / 25105 < prev    next >
Text File  |  2010-06-15  |  568b  |  15 lines

  1. IF OBJECT_ID ('tblDestinationSummary', 'u') IS NULL
  2. BEGIN
  3.     CREATE TABLE [dbo].[tblDestinationSummary](
  4.         [DestinationIP] [uniqueidentifier] NULL,
  5.         [BytesIn] [bigint] NULL,
  6.         [BytesOut] [bigint] NULL,
  7.         [TotalBytes] [bigint] NULL,
  8.         [Requests] [bigint] NULL,
  9.         [Date] [datetime] NULL
  10.     ) ON [PRIMARY]
  11.  
  12.     EXECUTE dbo.ISA_spDuplicateEmptyTable 'tblDestinationSummary', 'tblDestinationSummary_Daily', 0
  13.     EXECUTE dbo.ISA_spDuplicateEmptyTable 'tblDestinationSummary', 'tblDestinationSummary_Monthly', 0
  14. END     
  15.