CREATE PROC myProc(@year int, @month int) As -- Temporary table to hold just the relevant cost centers CREATE TABLE #CC ( CCID int, CCName varchar(1000) ); -- Add the cost centers to the temp table INSERT INTO #CC SELECT DISTINCT C.Id, C.Name FROM AccountsInCostCenters AI INNER JOIN CostCenters C ON AI.CostCenterId=C.Id WHERE AI.Year=@year or AI.Year=@year-1 -- calculate the results and add them to the results table INSERT INTO DemoViewFinalResults(GroupID,AccountLevel,RowType,Value,[Year],[Month],(...),CostCenterID,CostCenterName) SELECT D.GroupID, D.GroupOrder,D.RowOrder,D.AccountID,A.[Description],D.AccountSign, D.AccountLevel,4, (SELECT SUM(F2.Value) FROM DemoViewFinalResults F2 WHERE F2.AccountID IN (SELECT C.AccountID FROM CalcRowAssociatedAccountID C WHERE C.RefRowID=D.RowID) AND F2.GroupID = D.GroupID AND F2.Month=@month and F2.Year=@year AND F2.CostCenterID=C.CCID) As Value, @year,@month,NULL,D.OriginalRow, C.CCID,C.CCName FROM DemoViewAccountsAssociatedRowModel D INNER JOIN Accounts A ON A.Id = D.AccountId, #CC C WHERE D.RowType=2 AND D.IncludeAccount=1; (...)The stored procedure was being executed multiples times, one for each month needed, with a simple loop, as illustrated below.
DECLARE @month int DECLARE @year int SET @month = 1 WHILE @month < 8 BEGIN exec myProc @year,@month ENDSome investment had been done making sure each query running in the stored procedure was optimized. The queries are used to implement a datasheet recursive model, so it was rather hard to avoid correlated subqueries and the individual query performance was good enough. The problem was that, in some cases, we needed to execute the stored procedure for multiple months and the overall execution time for was unsatisfactory, so we need to do much better in such situations. The solution for the performance issue, was of course, in taking advantage of set operations. Instead of looping for each month, we could just execute the code once, if we had a way to have all the required year / month pairs in a table, just as we had done for the cost centers (you can, in line #30 see that the temporary table #CC is cross-joined into the query). The approach used in the final stored procedure is shown below. Lines #23-34 show the new temporary table and the code used to add all the needed records, which are the ones resulting from a cross-join between the “previous version” table and a new temporary table containing all the month / year pairs.
CREATE PROC myProcForMultipleMonths(@year int, @startMonth int) As CREATE TABLE #Months_Years ( [Month] int, [Year] int ); DECLARE @tMonth int, @tYear int SET @tMonth = 1 WHILE @tMonth <= @startMonth BEGIN INSERT INTO #Months_Years SELECT @tMonth,@year SET @tMonth = @tMonth + 1 END CREATE TABLE #CC ( CCID int, CCName varchar(1000), [Month] int, [Year] int ); INSERT INTO #CC SELECT DISTINCT C.Id, C.Name, MY.[Month],MY.[Year] FROM AccountsInCostCenters AI INNER JOIN CostCenters C ON AI.CostCenterId=C.Id, #Months_Years MY WHERE AI.Year=@year or AI.Year=@year-1 INSERT INTO DemoViewFinalResults (GroupID,GroupOrder,RowOrder,AccountID,AccountDescription,AccountSign,AccountLevel,RowType,Value,[Year],[Month],Reference,OriginalRow,CostCenterID,CostCenterName) SELECT D.GroupID, D.GroupOrder,D.RowOrder,D.AccountID,A.[Description],D.AccountSign, D.AccountLevel,4, (SELECT SUM(IsNULL(F2.Value,0)) FROM DemoViewFinalResults F2 WHERE F2.AccountID IN (SELECT C.AccountID FROM CalcRowAssociatedAccountID C WHERE C.RefRowID=D.RowID) AND F2.GroupID = D.GroupID AND F2.Month=C.month and F2.Year=C.year AND F2.CostCenterID=C.CCID) As Value, C.year,C.month,NULL,D.OriginalRow, C.CCID,C.CCName FROM DemoViewAccountsAssociatedRowModel D INNER JOIN Accounts A ON A.Id = D.AccountId, #CC C WHERE D.RowType=2 AND D.IncludeAccount=1; (...)This approach resulted in a very obvious performance improvement, since execution time was reduced to less than a third of the time needed to execute the first version of the procedure for the same number of months. The execution time is obviously reduced because operations that were being performed as many times as there were months, now are done just once, regardless of the number of months. The join including the year and month ensures that. This major improvement was essential to validate this approach as a feasible solution to to initial performance problem we set to solve. This overall result showed, yet again, the advantages of adopting a set based “thinking” and it made clear that we can avoid cursors and still fall into a similar performance trap. The solution here came from a temporary table, used in a cross-join. A simple solution with a remarkable impact on performance.
Leave a Reply