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

  1. IF OBJECT_ID ('tblProtocolSummary', 'u') IS NULL
  2. BEGIN
  3.     CREATE TABLE [dbo].[tblProtocolSummary](
  4.         [Protocol] [nvarchar](128) NULL,
  5.         [BytesIn] [bigint] NULL,
  6.         [BytesOut] [bigint] NULL,
  7.         [TotalBytes] [bigint] NULL,
  8.         [Requests] [bigint] NULL,
  9.         [LogType] [bit] NULL,
  10.         [Date] [datetime] NULL
  11.     ) ON [PRIMARY]
  12.  
  13.     EXECUTE dbo.ISA_spDuplicateEmptyTable 'tblProtocolSummary', 'tblProtocolSummary_Daily', 0
  14.     EXECUTE dbo.ISA_spDuplicateEmptyTable 'tblProtocolSummary', 'tblProtocolSummary_Monthly', 0
  15. END
  16.