programmher
Programmer
Does anyone know of an example I can follow that shows me how to handle fetch commands and cursors?
The existing stored proc is as follows:
OPEN MyFirstCursor
FETCH From MyFirstCursor INTO MyTabe
@var1,
@var2,
@var3
WHILE @@FETCH_STATUS <> -1
Begin next step
This is my first time encountering such an animal. Can anyone offer assistance?
The existing stored proc is as follows:
OPEN MyFirstCursor
FETCH From MyFirstCursor INTO MyTabe
@var1,
@var2,
@var3
WHILE @@FETCH_STATUS <> -1
Begin next step
This is my first time encountering such an animal. Can anyone offer assistance?