Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Mailing Lists -> Oracle-L -> Re: syntax variable question
Hi Bob,
You can try this code:
DECLARE
ranon varchar2(16);
BEGIN
select to_char(sysdate, 'YYYYMMDDHH24MISS') INTO ranon from dual;
execute immediate 'ALTER DATABASE backup CONTROLFILE to trace as
'''||ranon||'.ctl''';
END;
/
Best Regards
On 4/19/06, orcl <orcl_at_comcast.net> wrote:
>
> 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-l
>
>
>
-- Domingo Diaz Saenz -- http://www.freelists.org/webpage/oracle-lReceived on Wed Apr 19 2006 - 02:13:04 CDT
![]() |
![]() |