Oracle
 sql >> डेटाबेस >  >> RDS >> Oracle

अपवाद ORA-08103:हाइबरनेट के setfetchsize का उपयोग करने पर ऑब्जेक्ट अब मौजूद नहीं है

सबसे अधिक संभावना है कि एक वैश्विक अस्थायी तालिका (जीटीटी) के आधार पर एक कर्सर खोला गया है, जिसे ON COMMIT DELETE ROWS के साथ बनाया गया था। विकल्प। और ORA-08103: object no longer exists त्रुटि है commit स्टेटमेंट जो delete . के ठीक बाद आता है बयान। यहाँ एक सरल उदाहरण है:

 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

on commit preserve rows . के साथ वैश्विक अस्थायी तालिका का मनोरंजन क्लॉज ORA-08103: का सामना किए बिना उस तालिका पर आधारित कर्सर से डेटा को सुरक्षित रूप से लाने की अनुमति देगा त्रुटि।



  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. जब मैं JDBC एप्लिकेशन में ReadyedStatement.cancel() को कॉल करता हूं, तो क्या यह वास्तव में इसे Oracle डेटाबेस में मारता है?

  2. Oracle प्रक्रिया बनाएं

  3. Oracle ODP.Net और EF CodeFirst - SaveChanges Error

  4. मैन्युअल रूप से डीबी अपडेट के बाद हाइबरनेट द्वितीय स्तर कैश साफ़ करें

  5. Oracle में किसी दिनांक से लघु दिन का नाम लौटाएं