ALTER PROCEDURE dbo.GetTargets
(
@filter nvarchar(1000),
@ReportDate int,
@numDays int
)
AS
SET LOCK_TIMEOUT -1
EXEC sp_indexoption 'DataHistory', 'disallowpagelocks', TRUE
EXEC sp_indexoption 'DataHistory', 'disallowrowlocks', TRUE
declare @query nvarchar(MAX)
SET @query='DECLARE @targets TABLE(Code nvarchar(30), target numeric(12,2));
INSERT INTO @targets SELECT Code, MAX(Target)
FROM Collector_Targets
WHERE (EndDate IS NULL OR (EndDate > ' + CAST((@ReportDate - @numDays) AS nvarchar(20)) + ' AND EndDate<' + CAST(@ReportDate AS NVARCHAR(20)) + ' ))
GROUP BY Code;'
SET @query= @query + 'SELECT SUM(target) as target, SUM(CollectComm) as Commission from
DataHistory INNER JOIN @targets as t ON DataHistory.CollectorCode=t.code
WHERE
DateNumber >= ' + CAST((@ReportDate - @numDays) AS nvarchar(20)) + ' AND
DateNumber < ' + CAST(@ReportDate AS NVARCHAR(20)) + ' AND ' + @filter
EXEC (@query)
EXEC sp_indexoption 'DataHistory', 'disallowpagelocks', FALSE
EXEC sp_indexoption 'DataHistory', 'disallowrowlocks', FALSE
|