sql >> Database >  >> RDS >> Oracle

Uitzondering ORA-08103:object bestaat niet meer bij gebruik van setfetchsize van Hibernate

Hoogstwaarschijnlijk wordt een cursor geopend op basis van een globale tijdelijke tabel (GTT), die is gemaakt met ON COMMIT DELETE ROWS optie. En de oorzaak van het ORA-08103: object no longer exists fout is commit instructie die volgde direct na de delete uitspraak. Hier is een eenvoudig voorbeeld:

 SQL> declare
  2    type t_recs is table of number;
  3    l_cur sys_refcursor;    -- our cursor
  4    l_rec t_recs; 
  5  
  6  begin
  7  
  8    -- populating a global temporary table GTT1 with sample data  
  9    insert into GTT1(col)
 10      select level
 11        from dual
 12     connect by level <= 1000;
 13  
 14   open l_cur         -- open a cursor based on data from GTT1
 15    for select col
 16          from GTT1;
 17  
 18    -- here goes delete statement
 19    -- and
 20    commit;  <-- cause of the error. After committing  all data from GTT1 will be
 21              -- deleted and when we try to fetch from the cursor
 22    loop      -- we'll face the ORA-08103 error
 23      fetch l_cur    -- attempt to fetch data which are long gone.
 24       bulk collect into l_rec;
 25      exit when l_cur%notfound;
 26    end loop;
 27  
 28  end;
 29  /


ORA-08103: object no longer exists
ORA-06512: at line 24

Recreatie van globale tijdelijke tabel met on commit preserve rows clausule zal het mogelijk maken om veilig gegevens op te halen van een cursor die is gebaseerd op die tabel zonder bang te zijn voor ORA-08103: fout.



  1. PHP, MySQL en tijdzones

  2. MySQL-syntaxis voor Join Update

  3. Hoe repareer ik een InnoDB-tabel?

  4. Ga postgresql LIKE-query