i have a specific Question.
My Stored Procedure don\'t work correctly.. I will show you the Procedure, the database and the parameter:
ALTER PROCEDURE [d
The fetch statement in the while block may be the cause. Currently it reads:
FETCH NEXT FROM ServiceProviderChildren_Cursor INTO @childSPPId;
try replacing it with:
FETCH NEXT FROM ServiceProviderChildren_Cursor INTO @childSPPId, @isDeleted;