One of our report runs under 2min in TEST environment, but over 10 min when deployed in production. After days of research, it turns out all we need to do is to recompile the stored procedure.
Below is from MSDN:
example:
USE AdventureWorks2012; GO EXEC sp_recompile N'Sales.Customer'; GO
https://msdn.microsoft.com/en-us/library/ms190439.aspx
No comments:
Post a Comment