Cursor <str> is an INSERT ONLY cursor Explanation: The cursor referenced in the statement was defined as INSERT ONLY. Thus, UPDATE, FETCH and DELETE statements are illegal. User Action: Either change either the cursor declaration to UPDATE, or do not attempt to update the cursor.