'
I have a hierarcal menu system with 5 levels
Here is how I walk all 5 levels with NESTED SQL CURSORS without the global @@FETCH_STATUS messing up
'
-- First make a UDF
CREATE FUNCTION FetchStatusOfCursorNamed(@CursorName nvarchar(50))
RETURNS int AS
BEGIN
DECLARE @fetch_status int
select @fetch_status = fetch_status from sys.dm_exec_cursors(@@SPID) where name = @CursorName
RETURN @fetch_status
END
-- th
↧