ORA-29270: Too Many Open HTTP Requests 错误原因 ORA-29270 是一个 Oracle 数据库错误,具体含义为“打开的 HTTP 请求太多”。这个错误通常发生在 Oracle 数据库尝试通过 UTL_HTTP 包或UTL_HTTP.REQ 包发起 HTTP 请求时,如果同时打开的 HTTP 请求数量超过了数据库实例的配置限制,就会触发
Catch too many requests exception to handle it by closing the request and response: EXCEPTION WHEN UTL_HTTP.TOO_MANY_REQUESTS THEN UTL_HTTP.END_REQUEST(req); UTL_HTTP.END_RESPONSE(resp); Ending the request at the end of your program UTL_HTTP.END_REQUEST(req); 0 Reply Share You must l...