I have CURSOR1, I want to copy the CURSOR1 structure to new cursor name CURSOR2.
When I try this one, the new cursor always locked:
It' will return error : Can not update the cursor cursor2, since it is read-only
So, anyone could help me how to copy CURSOR1 structure to CURSOR2 and then I can use CURSOR2 to add or delete data inside CURSOR2.
Thank you in advance.
When I try this one, the new cursor always locked:
Code:
SELECT * FROM cursor1 INTO CURSOR cursor2
SELECT cursor2
zap
So, anyone could help me how to copy CURSOR1 structure to CURSOR2 and then I can use CURSOR2 to add or delete data inside CURSOR2.
Thank you in advance.