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

ORA-29471 को dbms_sql.open_cursor पर कैसे हल करें?

एकमात्र कारण (इस समय दूसरा नहीं देख सकता) आपका कोड ORA-29471 क्यों उठाता है क्या आपने पहले ही dbms_sql बना लिया है? अमान्य कर्सर आईडी प्रदान करके आपके सत्र में निष्क्रिय:

/* dbsm_sql detects invalid cursor ID in this session  */ 
SQL> declare
  2    c_1 number := 5;  -- invalid cursor ID. There is no cursor 
  3    l_res boolean;    -- opened with ID = 5     
  4  begin
  5    l_res := dbms_sql.is_open(c_1);
  6  end;
  7  /
declare
*
ERROR at line 1:
ORA-29471: DBMS_SQL access denied 
ORA-06512: at "SYS.DBMS_SQL", line 1104 
ORA-06512: at line 5 


/* An attempt to execute this simple anonymous PL/SQL block after 
   an invalid cursor ID has already been detected by the dbms_sql 
   in the current session will lead to ORA-29471 error  
*/

SQL> declare
  2    c_2 number;
  3  begin
  4    c_2 := dbms_sql.open_cursor();
  5  end;
  6  /
declare
*
ERROR at line 1:
ORA-29471: DBMS_SQL access denied 
ORA-06512: at "SYS.DBMS_SQL", line 1084 
ORA-06512: at line 4 

नए स्थापित सत्र . में उस कोड को निष्पादित करने का प्रयास करें ।



  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. सभी कॉलम और एक और का चयन करते समय गुम अभिव्यक्ति

  2. पैरामीटर के साथ PHP-OCI कॉल संग्रहीत प्रक्रिया

  3. क्या मैं एक्सेल में बाहरी डेटाबेस कनेक्शन के लिए पासवर्ड पास करने के लिए वीबीए का उपयोग कर सकता हूं?

  4. Oracle तालिका चर/सरणी से मूल्यों का चयन करना?

  5. मैं टी-एसक्यूएल स्क्रिप्ट में पैरामीटर कैसे पास कर सकता हूं?