ORA-01002: fetch out of sequence

WBOY
풀어 주다: 2016-06-07 17:36:16
원래의
2779명이 탐색했습니다.

ORA-01002: fetch out of sequence

错误定位:
 
SQL> !oerr ora 01002
 01002, 00000, "fetch out of sequence"
 // *Cause: This error means that a fetch has been attempted from a cursor
 //        which is no longer valid.  Note that a PL/SQL cursor loop
 //        implicitly does fetches, and thus may also cause this error.
 //        There are a number of possible causes for this error, including:
 //        1) Fetching from a cursor after the last row has been retrieved
 //            and the ORA-1403 error returned.
 //        2) If the cursor has been opened with the FOR UPDATE clause,
 //            fetching after a COMMIT has been issued will return the error.
 //        3) Rebinding any placeholders in the SQL statement, then issuing
 //            a fetch before reexecuting the statement.
 // *Action: 1) Do not issue a fetch statement after the last row has been
 //            retrieved - there are no more rows to fetch.
 //          2) Do not issue a COMMIT inside a fetch loop for a cursor
 //            that has been opened FOR UPDATE.
 //          3) Reexecute the statement after rebinding, then attempt to
 //            fetch again.
 
SQL>

查看pl sql:

declare
  cursor emp_cursor is
    select * from emp_text for update;
  v_object_name emp_text%rowtype;
begin
  open emp_cursor;
  loop
    fetch emp_cursor
      into v_object_name;
    if emp_cursor%found then
      update emp_text
        set object_id =
            (emp_seq.nextval)
      where object_name = v_object_name.object_name;
      COMMIT;
    end if;
    exit when emp_cursor%notfound;
  end loop;
  close emp_cursor;
 end;

正确写法:

declare
  cursor emp_cursor is
    select * from emp_text for update;
  v_object_name emp_text%rowtype;
begin
  open emp_cursor;
  loop
    fetch emp_cursor
      into v_object_name;
    if emp_cursor%found then
      update emp_text
        set object_id =
            (emp_seq.nextval)
      where object_name = v_object_name.object_name;
    end if;
    exit when emp_cursor%notfound;
  end loop;
  close emp_cursor;
  COMMIT;
end;

linux

관련 라벨:
원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿
회사 소개 부인 성명 Sitemap
PHP 중국어 웹사이트:공공복지 온라인 PHP 교육,PHP 학습자의 빠른 성장을 도와주세요!