Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Mailing Lists -> Oracle-L -> RE: SQLPlus Substitution Variables
Something like this, perhaps.
accept var1 char prompt 'What grantee? ';
select *
from dba_sys_privs
where grantee = upper('&&var1');
> -----Original Message-----
> From: Erik Williams [mailto:ewilliams_at_brownco.com]
> Sent: Wednesday, January 15, 2003 10:04 AM
> To: Multiple recipients of list ORACLE-L
> Subject: SQLPlus Substitution Variables
>
>
> I am using substitution variables in SQLPlus, but don't want
> to be prompted
> for their values. I want to set them at the start of the
> script. Kind of
> like a preprocessor directive. Is this possible?
>
> Erik
> --
> Please see the official ORACLE-L FAQ: http://www.orafaq.net
> --
> Author: Erik Williams
> INET: ewilliams_at_brownco.com
>
> Fat City Network Services -- 858-538-5051 http://www.fatcity.com
> San Diego, California -- Mailing list and web hosting services
> ---------------------------------------------------------------------
> To REMOVE yourself from this mailing list, send an E-Mail message
> to: ListGuru_at_fatcity.com (note EXACT spelling of 'ListGuru') and in
> the message BODY, include a line containing: UNSUB ORACLE-L
> (or the name of mailing list you want to be removed from). You may
> also send the HELP command for other information (like subscribing).
>
>
-- Please see the official ORACLE-L FAQ: http://www.orafaq.net -- Author: Anderson, Brian INET: andersob_at_darton.edu Fat City Network Services -- 858-538-5051 http://www.fatcity.com San Diego, California -- Mailing list and web hosting services --------------------------------------------------------------------- To REMOVE yourself from this mailing list, send an E-Mail message to: ListGuru_at_fatcity.com (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing).Received on Wed Jan 15 2003 - 09:39:22 CST
![]() |
![]() |