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

Home -> Community -> Usenet -> c.d.o.server -> Re: Escape character.

Re: Escape character.

From: Jay Arbo <jra_at_ne.mediaone.net>
Date: Thu, 24 Jun 1999 22:56:16 -0400
Message-ID: <3772EFCF.DE8993A6@ne.mediaone.net>


You may shut off substitution prompting by doing the following:

SQL> set define off;

thats all there is to it!

Heres an example:

SQL> select '&j' from dual;
Enter value for j:
User requested Interrupt or EOF detected.

SQL> set define off;
SQL> select '&j' from dual;

'&
--
&j

-Jay

C. wrote:

> Hi All,
> Can anyone tell me what the escape character is for the & when trying
> to insert a string that contains the ampersand?
> Thanks in advance,
> Cindy Ferguson, c_ferguson_at_rationalconcepts.com
Received on Thu Jun 24 1999 - 21:56:16 CDT

Original text of this message

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