oracle11g - How to determine what the actual error is in an Oracle stored procedure, when "execution completed with warning"? -
i using following code
create or replace procedure phys_last_year_sales_sp (amdm_phys_id number(6)) begin dbms_output.put_line('amdm_phys_id= '||amdm_phys_id); end;
to create stored procedure every time execute above query shows following error
java.sql.sqlwarning: warning: execution completed warning
how find out actual error is?
Comments
Post a Comment