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 / 25454 < prev    next >
Text File  |  2010-06-15  |  3KB  |  102 lines

  1. CREATE PROCEDURE [dbo].[ISA_spTopUsersRDL]
  2.     @FromDate datetime,
  3.     @ToDate datetime,
  4.     @ReportType varchar(10),
  5.     @TopCount int,
  6.     @SortOrder varchar(100)
  7. AS
  8. BEGIN
  9.     DECLARE @SummTableName varchar(100)
  10.     SET @SummTableName = dbo.fnGetSummaryTableName('tblUserSummary', @FromDate, @ToDate, @ReportType)
  11.     DECLARE @OrderColumn varchar(100)
  12.     SET @OrderColumn =
  13.             CASE
  14.                 WHEN @SortOrder = 'Requests' THEN 'Requests'
  15.                 WHEN @SortOrder = 'BytesIn' THEN 'BytesIn'
  16.                 WHEN @SortOrder = 'BytesOut' THEN 'BytesOut'
  17.                 ELSE 'TotalBytes'
  18.             END;
  19.     CREATE TABLE #Table1
  20.     (
  21.         UserName nvarchar(514),
  22.         Requests bigint,
  23.         BytesIn bigint,
  24.         BytesOut bigint,
  25.         TotalBytes bigint,
  26.     )
  27.     IF OBJECT_ID (@SummTableName, 'u') IS NOT NULL
  28.     BEGIN
  29.         DECLARE @strQuery varchar(8000)
  30.         SET @strQuery =
  31.         'SELECT
  32.             UserName,
  33.             SUM(Requests) AS Requests,
  34.             SUM(BytesIn) AS BytesIn,
  35.             SUM(BytesOut) AS BytesOut,
  36.             SUM(TotalBytes) AS TotalBytes
  37.         FROM ' + @SummTableName + '
  38.         WHERE ([date] >= ' + QUOTENAME(CONVERT(varchar, @FromDate, 126),CHAR(39)) + ' AND [date] <= ' + QUOTENAME(CONVERT(varchar, @ToDate, 126),CHAR(39)) + ')
  39.               AND ([Requests] > 0)
  40.         GROUP BY [UserName]
  41.         ORDER BY ' + QUOTENAME(@OrderColumn) + ' DESC;
  42.         '
  43.         INSERT #Table1
  44.         EXEC(@strQuery)
  45.     END
  46.     CREATE TABLE #Table2
  47.     (
  48.         UserName nvarchar(514),
  49.         Requests bigint,
  50.         BytesIn bigint,
  51.         BytesOut bigint,
  52.         TotalBytes bigint,
  53.     )
  54.     INSERT INTO #Table2
  55.     SELECT TOP(@TopCount)
  56.         [UserName] AS UserName,
  57.         [Requests] AS Requests,
  58.         [BytesIn] AS BytesIn,
  59.         [BytesOut] AS BytesOut,
  60.         [TotalBytes] AS TotalBytes
  61.     FROM #Table1
  62.     WHERE [UserName] != N'{[23124]}'
  63.     INSERT INTO #Table2
  64.     SELECT
  65.        N'{[23124]}' As UserName,
  66.         SUM([Requests]) AS Requests,
  67.         SUM([BytesIn]) AS BytesIn,
  68.         SUM([BytesOut]) AS BytesOut,
  69.         SUM([TotalBytes]) AS TotalBytes
  70.     FROM #Table1 t1
  71.     WHERE NOT EXISTS
  72.         (SELECT * FROM #Table2 t2
  73.          WHERE t1.UserName = t2.UserName)
  74.     DECLARE @TotalRequests bigint
  75.     SET @TotalRequests = (SELECT SUM(Requests) FROM #Table2)
  76.     IF (@TotalRequests = 0)
  77.         SET @TotalRequests = 1
  78.     DECLARE @totalBytes bigint
  79.     SET @totalBytes = (SELECT SUM(TotalBytes) FROM #Table2)
  80.     IF (@totalBytes = 0)
  81.         SET @totalBytes = 1
  82.     DECLARE @TotalBytesIn bigint
  83.     SET @TotalBytesIn = (SELECT SUM(BytesIn) FROM #Table2)
  84.     IF (@TotalBytesIn = 0)
  85.         SET @TotalBytesIn = 1
  86.     DECLARE @TotalBytesOut bigint
  87.     SET @TotalBytesOut = (SELECT SUM(BytesOut) FROM #Table2)
  88.     IF (@TotalBytesOut = 0)
  89.         SET @TotalBytesOut = 1
  90.     SELECT
  91.         [dbo].[fnUserOrIpAddressToText]([UserName]) AS [UserName],
  92.         [Requests] AS Requests,
  93.         (CAST(Requests AS decimal) / @TotalRequests) AS RequestRatio,
  94.         [BytesIn] AS BytesIn,
  95.         (CAST(BytesIn AS decimal) / @TotalBytesIn) AS BytesInRatio,
  96.         [BytesOut] AS BytesOut,
  97.         (CAST(BytesOut AS decimal) / @TotalBytesOut) AS BytesOutRatio,
  98.         [TotalBytes] AS TotalBytes,
  99.         (CAST(TotalBytes AS decimal) / @totalBytes) AS TotalByteRatio
  100.     FROM #Table2
  101. END
  102.