Run the following in an SQL window:
In version 7.0 you can view the contents of the cursor.
In version 7.1 the error "ORA-01001: invalid cursor" is displayed when trying to view the contents of the cursor.
We use a lot of nested cursors in our code and under 7.1 we can no longer test our select statements.
Code:
SELECT dummy, CURSOR (SELECT dummy FROM dual) FROM dual;
In version 7.1 the error "ORA-01001: invalid cursor" is displayed when trying to view the contents of the cursor.
We use a lot of nested cursors in our code and under 7.1 we can no longer test our select statements.