Search Results

0
votes

Executing a stored procedure within a stored procedure

Looks like this question is a duplicate. Please only ask your question o …
0
votes

SQL Server query execution plan shows wrong “actual row count” on an used index and performance is terrible slow

Have you run sp_spaceused to check if SQL Server's got the right summary for that table? I believe in SQL 2000 the engine used to use that sort of metadata when building execution …
0
votes

Passing default parameter value vs not passing parameter at all?

As stated, TSQL doesn't distinguish between supplying the default value and not supplying a value. I think the engine basically substitutes the default values for any missing parameters (or params …
1
vote

SQL Server IF NOT EXISTS Usage?

Have you verified that there is in fact a row where Staff_Id = @PersonID? What you've posted works fine in a test script, assuming the row exists. If you comment out the insert statement, then th …