create or replace procedure tra_w_node_date_h AS
v_first_date date;
v_end_date date;
begin
select  max(t.data_time)+1  into v_first_date from  node_data_h  t where t.node_id='W6004';
select  to_date(to_char(max(t.data_time),'yyyy-mm-dd'),'yyyy-mm-dd')-1  into v_end_date from  node_data_h@R  t where t.node_id='6004';while v_first_date<=v_end_date loop
w_node_date_h(v_first_date,v_end_date);w_node_date_h这个是被调用的存储过程后面是传进去的参数
v_first_date:=v_first_date+1;
end loop;
end;
提示的错误是:PLS-00306:WRONG NUMBER OR TYPES OF ARGUMENTS IN CALL TO ‘W_NODE_DATE_H’