Viewing 5 posts - 1 through 5 (of 5 total)
Yes, as mentioned in that article, I could able to avoid recompile, by utilising the OPTION (keepfixed plan), but my execution time is getting increased, when compared to before implementing...
September 14, 2005 at 7:14 am
Please find the Below Entire SP:
CREATE PROCEDURE dbo.prcCtlLnkSelFavCust( @userid int, @UserPartId int , @UserType int) AS
DECLARE @ErrMsg VARCHAR(500)
,@SPRETVAL int
,@RetVal int
,@ErrSpName varchar(100)
SELECT @ErrSpName = 'Stored procedure:' + OBJECT_NAME(@@PROCID)
Create table ...
September 14, 2005 at 6:52 am
Hi, Thanks for making me , Exploring this article crystal clear.. Now I got the Reason for my SP getting recompiled, But one...
August 16, 2005 at 8:39 am
Hi, Thanks for your Prompt reply. I have already gone thru this article at microsoft site, But I have some SP's having #temp tables INSERT queries like below :
INSERT #Temp...
August 16, 2005 at 7:01 am
Hi , Thanks for your Reply, but Iam creating the #temp table in the sp_Parent procedure, which is calling the sp_A stored Procedure.
The exact procedure is like below :
CREATE PROCEDURE...
August 16, 2005 at 6:38 am
Viewing 5 posts - 1 through 5 (of 5 total)