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 / 25040 < prev    next >
Text File  |  2010-06-15  |  711b  |  20 lines

  1. IF OBJECT_ID ('tblUserSummary', 'u') IS NULL
  2. BEGIN
  3.     CREATE TABLE [dbo].[tblUserSummary](
  4.         [UserName] [nvarchar](514) NULL,
  5.         [BytesOut] [bigint] NULL,
  6.         [BytesIn] [bigint] NULL,
  7.         [TotalBytes] [bigint] NULL,
  8.         [Requests] [bigint] NULL,
  9.         [AuthorizedFailures] [bigint] NULL,
  10.         [WebBytesOut] [bigint] NULL,
  11.         [WebBytesIn] [bigint] NULL,
  12.         [WebTotalBytes] [bigint] NULL,
  13.         [WebRequests] [bigint] NULL,
  14.         [Date] [datetime] NULL
  15.     ) ON [PRIMARY]
  16.  
  17.     EXECUTE dbo.ISA_spDuplicateEmptyTable 'tblUserSummary', 'tblUserSummary_Daily', 0
  18.     EXECUTE dbo.ISA_spDuplicateEmptyTable 'tblUserSummary', 'tblUserSummary_Monthly', 0
  19. END
  20.