Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.server -> What's the error ?
Hi all ,
I have a procedure like the following :
create or replace procedure SP_BACKUP_T_PROJECT AS
week_day VARCHAR2(10);
cursor CUR_T_CURRENT_FCST_DATE (week_day varchar2) is
select SFCST_PLAN_CD from T_CURRENT_FCST_DATE where to_char(CUTOFF_W) = week_dayfor update of SFCST_PLAN_CD;
dbms_output.put_line('plan_cd :' || plan_cd);
end loop;
dbms_output.put_line(week_day);
END;
/
show errors procedure SP_BACKUP_T_PROJECT;
But it complains that PLS-00306: wrong number or types of arguments in call
to '||'
Why's that ?
THanks.
Perseus Received on Tue Feb 18 2003 - 08:56:43 CST
![]() |
![]() |