Tagged Questions

5
votes
2answers
3k views

SQL poor stored procedure execution plan performance - parameter sniffing

I have a stored procedure that accepts a date input that is later set to the current date if no value is passed in: CREATE PROCEDURE MyProc @MyDate DATETIME = NULL AS IF @MyDate IS NULL SET ...
3
votes
2answers
85 views

Should you always anticipate problems caused by parameter sniffing?

Using sql server 2008, I have a simple stored procedure, the contents of which are DELETE FROM [ABC].[dbo].[LookUpPermissions] WHERE Code = @Code In a recent code review, the DBA said I should ...
2
votes
2answers
209 views

Is there a way to delay compilation of a stored procedure's execution plan?

(At first glance this may look like a duplicate of http://stackoverflow.com/questions/421275 or http://stackoverflow.com/questions/414336, but my actual question is a bit different) Alright, this ...
2
votes
4answers
680 views

At some point in your career with SQL Server does parameter sniffing just jump out and attack?

Today again, I have a MAJOR issue with what appears to be parameter sniffing in SQL Server 2005. I have a query comparing some results with known good results. I added a column to the results and ...
1
vote
3answers
759 views

T-SQL Process Design and Execution Plan (UDF Parameter Sniffing?)

On SQL Server 2005, I have a complex multi-level allocation process which looks like this (pseudo-SQL): FOR EACH @LVL_NUM < @MAX_LVL: INSERT INTO ALLOCS SELECT 'OUT', * FROM BALANCES(@LVL_NUM) ...
0
votes
2answers
126 views

Getting Around Parameter Sniffing in SQL Server 2005

I have seen people suggest copying the parameters to a local variable to avoid parameter sniffing in a stored proc. Say you have CREATE PROCEDURE List_orders_3 @fromdate datetime AS DECLARE ...
0
votes
2answers
65 views

Getting around cached plans in SQL Server 2005

Can someone please explain why this works. Here is the scenerio. I have a stored proc and it starts to run slow. Then I pick a parameter and declare a variable to house its value and in the proc ...
0
votes
2answers
280 views

strange SQL server report performance problem related with update statistics

I got a complex report using reporting service, the report connect to a SQl 2005 database, and calling a number of store procedure and functions. it works ok initially, but after a few months(data ...