我写了存储过程
CREATE OR REPLACE procedure testhttp
(
url varchar2
)
as
ch Varchar2(4000);
Begin
ch:=utl_http.request(url);    
Exception
When others Then
raise;
End;
/用9i调试没有问题,8i报错:
An exception occured in the anonymous block.
Check for syntax errors in the SetParameter dialog.
ORA-0510:PL/SQL:无法处理的用户自定义异常事件
ORA-0512:在“TESTHTTP”, line 12
ORA-6512:在 line7跪求高手帮忙,如何让这个过程在8i下正确执行!