anupgupta
Newbie
Points: 7
More actions
July 7, 2002 at 8:04 pm
#105538
Hi All,
Is it possible to pass parameters to a cursor in t- sql, as we can do in PL/SQL?
I need to write a parameterized cursor in a stored procedure. Please help me out with it.
runelords
Ten Centuries
Points: 1275
February 28, 2005 at 3:22 pm
#544504
Any help on this at all. I have the same question.
Arthur Lorenzini
schleep
SSChampion
Points: 12583
March 1, 2005 at 8:46 am
#544623
The parm is to limit the cursor rows?
DECLARE mycursor CURSOR FOR
SELECT cols
FROM mytable
WHERE col1 = @myparm
OPEN mycursor.....
Viewing 3 posts - 1 through 2 (of 2 total)
You must be logged in to reply to this topic. Login to reply