Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Mailing Lists -> Oracle-L -> Re: syntax variable question

Re: syntax variable question

From: orcl <orcl_at_comcast.net>
Date: Wed, 19 Apr 2006 07:03:57 -0400
Message-ID: <4446191D.9090005@comcast.net>


Thats great! -thanks guys for the extra set of eyes.

bob

Domingo Diaz Saenz wrote:

> 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 <mailto: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
> <http://www.freelists.org/webpage/oracle-l>
>
>
>
>
>
> --
> Domingo Diaz Saenz

--
http://www.freelists.org/webpage/oracle-l
Received on Wed Apr 19 2006 - 06:03:57 CDT

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US