Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
Home -> Community -> Mailing Lists -> Oracle-L -> syntax variable question
Hi, Im trying to get a variable passed , something is obviously wrong
as every combination I've tried failed.
Any suggestions for this simple syntax ?
set serveroutput on
DECLARE
ranon varchar2(14);
BEGIN
select to_char(sysdate, 'YYYYMMDDHH24MISS')INTO ranon from dual;
execute immediate 'ALTER DATABASE backup CONTROLFILE to trace as
'||ranon||'ctl';
-- DBMS_OUTPUT.PUT_LINE(ranon);
END;
/
sorry I dont post much, I lurk ;-)
thanks!
bob
-- http://www.freelists.org/webpage/oracle-lReceived on Tue Apr 18 2006 - 21:15:09 CDT