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 / 25215 < prev    next >
Text File  |  2010-06-15  |  536b  |  14 lines

  1. IF OBJECT_ID ('tblBranchCacheSummary', 'u') IS NULL
  2. BEGIN
  3.     CREATE TABLE [dbo].[tblBranchCacheSummary](
  4.         [Date] [datetime] NULL,
  5.         [TMGCacheOutKB] [bigint] NULL,
  6.         [TMGCacheInKB] [bigint] NULL,
  7.         [HostedCacheOutKB] [bigint] NULL,
  8.         [HostedCacheInKB] [bigint] NULL
  9.     ) ON [PRIMARY]
  10.  
  11.     EXECUTE dbo.ISA_spDuplicateEmptyTable 'tblBranchCacheSummary', 'tblBranchCacheSummary_Daily', 0
  12.     EXECUTE dbo.ISA_spDuplicateEmptyTable 'tblBranchCacheSummary', 'tblBranchCacheSummary_Monthly', 0
  13. END
  14.