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 / 25050 < prev    next >
Text File  |  2010-06-15  |  625b  |  17 lines

  1. IF OBJECT_ID ('tblUsageSummary', 'u') IS NULL
  2. BEGIN
  3.     CREATE TABLE [dbo].[tblUsageSummary](
  4.         [Interval] [smalldatetime] NULL,
  5.         [CacheHits] [bigint] NULL,
  6.         [ProcessingTime] [bigint] NULL,
  7.         [TotalBytes] [bigint] NULL,
  8.         [Requests] [bigint] NULL,
  9.         [WebRequests] [bigint] NULL,
  10.         [MaxConcurrentConnectionsPerMinute] [bigint] NULL,
  11.         [Date] [datetime] NULL
  12.     ) ON [PRIMARY]
  13.  
  14.     EXECUTE dbo.ISA_spDuplicateEmptyTable 'tblUsageSummary', 'tblUsageSummary_Daily', 0
  15.     EXECUTE dbo.ISA_spDuplicateEmptyTable 'tblUsageSummary', 'tblUsageSummary_Monthly', 0
  16. END
  17.