Viewing 5 posts - 1 through 5 (of 5 total)
All the data comes from the same table. It needs to read from the table called dsdba.itemgroups to find all records with the same parentguid and it is into this...
December 9, 2002 at 8:48 am
DO you think it is possible to do without calling a new stored procedure because it needs to execute everything thats done in the existing stored procedure but i'm conscious...
December 9, 2002 at 8:11 am
The stored procedure im using is below, i'm unclear as to where i would put the while statement into here, also is there no way i can do the while...
December 9, 2002 at 4:01 am
thats great, thankyou
December 6, 2002 at 4:24 am
I have tried the code like you suggested where i changed the fetch command to:
FETCH NEXT FROM TABLECURSOR INTO @PART,@DIGIT
.....
.....
BEGIN
PRINT @PART
PRINT @DIGIT
FETCH NEXT FROM TABLECURSOR INTO @PART,@DIGIT
but i get...
December 6, 2002 at 4:16 am
Viewing 5 posts - 1 through 5 (of 5 total)