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: quote in string

RE: quote in string

From: Koivu, Lisa <lkoivu_at_qode.com>
Date: Wed, 27 Sep 2000 16:28:32 -0400
Message-Id: <10632.118068@fatcity.com>


This message is in MIME format. Since your mail reader does not understand this format, some or all of this message may not be legible.

------_=_NextPart_001_01C028C1.810F8110
Content-Type: text/plain;

        charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable

Thanks for your suggestions.=20
However the root of the problem is the replace(). I can get around it = with
what you have suggested though by substr() and concatenating it back together. =20

Thanks again
Lisa

-----Original Message-----
From: elkinsl_at_flash.net [mailto:elkinsl_at_flash.net] Sent: Wednesday, September 27, 2000 4:32 PM To: Multiple recipients of list ORACLE-L Subject: Re: quote in string

Lisa,

Try coding the INSTR as:

instr(name,'''') > 0

The first quote denotes the start of the string, the second and third = quotes

gives one quote, and the fourth closes the string. Try the following 2 queries=20
to get a feel for it:

select 'O''Connor' From Dual; 2 quotes outputting one quote select '''' from dual; Now outputting just a single quote

If seeing so many tickies starts to get confusing, you can use the CHR function=20
directly in the INSTR:

instr(name,chr(39)) > 0

Or some people like to assign CHR(39) (or '''') to a variable and refer = to
the=20
variable throughout their code. Those are just a few of the *many* ways = to=20
handle this. You may prefer other suggestions that are sure to appear.

Regards,

L. Elkins

On Wed Sep 27 14:36:39 2000, "Koivu, Lisa" <lkoivu_at_qode.com>,ORACLEL @fatcity.com wrote:

> Hi all -=20

>=20
> I'm putting my developer hat on again. I am writing a procedure
that=20
parses
> through a string. However, the single quote ( ' ) is becoming a =
headache.
I
> can't replace() it, I can't instr() and look for it. I am beginning =
to
think
> the only way I can get around this when I trip onto it in my code =
(and get
> it out of my string) is to fall into an exception and check character =
by
> character and recreate the string in a variable, and handle the =
exception
> caused by the single quote when it occurs, ignoring the current =
character,
> and continuing.=20

>=20

> Has anyone got a better idea? =20
> Thanks in advance for any suggestions.=20
>=20

> Lisa Rutland Koivu
> Oracle Database Administrator
> Qode.com
> 4850 North State Road 7
> Suite G104
> Fort Lauderdale, FL 33319
>=20

> V: 954.484.3191, x174
> F: 954.484.2933=20
> C: 954.658.5849
> http://www.qode.com

>=20
> "The information contained herein does not express the opinion or =
position
> of Qode.com and cannot be attributed to or made binding upon =
Qode.com."
>=20
>=20

> Hi all -=20

>=20
> I'm putting my developer hat on again. I am writing a procedure
that=20
parses
> through a string. However, the single quote ( ' ) is becoming a =
headache.
I
> can't replace() it, I can't instr() and look for it. I am beginning =
to
think
> the only way I can get around this when I trip onto it in my code =
(and get
> it out of my string) is to fall into an exception and check character =
by
> character and recreate the string in a variable, and handle the =
exception
> caused by the single quote when it occurs, ignoring the current =
character,
> and continuing.=20
>=20

> Has anyone got a better idea? =20
> Thanks in advance for any suggestions.=20
>=20

> Lisa Rutland Koivu
> Oracle Database Administrator
> Qode.com
> 4850 North State Road 7
> Suite G104
> Fort Lauderdale, FL 33319
>=20

> V: 954.484.3191, x174
> F: 954.484.2933=20
> C: 954.658.5849
> http://www.qode.com

>=20
> "The information contained herein does not express the opinion or =
position
> of Qode.com and cannot be attributed to or made binding upon =
Qode.com."
>=20

> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
> <HTML>
> <HEAD>
> <META HTTP-EQUIV=3D"Content-Type" CONTENT=3D"text/html;
> charset=3Diso-8859-1">
> <META NAME=3D"Generator" CONTENT=3D"MS Exchange Server version
> 5.5.2650.12">
> <TITLE>quote in string</TITLE>
> </HEAD>
> <BODY>
>=20

> <P><FONT SIZE=3D2 FACE=3D"Arial">Hi all - </FONT>
> </P>
>=20

> <P><FONT SIZE=3D2 FACE=3D"Arial">I'm putting my developer hat on
> again.=A0 I am writing a procedure that parses through a string.=A0 =
However,
the
> single quote ( ' ) is becoming a headache. I can't replace() it, I =
can't
instr
() and look
> for it. I am beginning to think the only way I can get around this =
when I=20
trip onto it in
> my code (and get it out of my string) is to fall into an exception =
and
check=20
character by
> character and recreate the string in a variable, and handle the =
exception=20
caused by the
> single quote when it occurs, ignoring the current character, and
continuing.
> </FONT></P>
>=20

> <P><FONT SIZE=3D2 FACE=3D"Arial">Has anyone got a better idea?=A0
> </FONT>
> <BR><FONT SIZE=3D2 FACE=3D"Arial">Thanks in advance for any
> suggestions. </FONT>
> </P>
>=20

> <P><B><FONT SIZE=3D1 FACE=3D"Arial">Lisa Rutland
> Koivu</FONT></B>
> <BR><FONT SIZE=3D1 FACE=3D"Arial">Oracle Database
> Administrator</FONT>
> <BR><FONT SIZE=3D1 FACE=3D"Arial">Qode.com</FONT>
> <BR><FONT SIZE=3D1 FACE=3D"Arial">4850 North State Road 7</FONT>
> <BR><FONT SIZE=3D1 FACE=3D"Arial">Suite G104</FONT>
> <BR><FONT SIZE=3D1 FACE=3D"Arial">Fort Lauderdale, FL=A0
> 33319</FONT>
> </P>
>=20

> <P><FONT SIZE=3D1 FACE=3D"Arial">V: 954.484.3191, x174</FONT>
> <BR><FONT SIZE=3D1 FACE=3D"Arial">F: 954.484.2933 </FONT>
> <BR><FONT SIZE=3D1 FACE=3D"Arial">C: 954.658.5849</FONT>
> <BR><FONT SIZE=3D1 FACE=3D"Arial"><A
> HREF=3D"http://www.qode.com"
> TARGET=3D"_blank">http://www.qode.com</A></FONT>
> </P>
>=20

> <P><I><FONT COLOR=3D"#000000" SIZE=3D1
> FACE=3D"Arial">"The information contained herein does not express the
> opinion or position of Qode.com and cannot be attributed to or made
binding=20
upon
> Qode.com."</FONT></I></P>
>=20

> </BODY>
> </HTML>

--=20
Please see the official ORACLE-L FAQ: http://www.orafaq.com --=20
Author:=20
  INET: elkinsl_at_flash.net

Fat City Network Services    -- (858) 538-5051  FAX: (858) 538-5051
San Diego, California        -- Public Internet access / Mailing Lists
--------------------------------------------------------------------
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).

------_=_NextPart_001_01C028C1.810F8110
Content-Type: text/html;

        charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
<HTML>
<HEAD>
<META HTTP-EQUIV=3D"Content-Type" CONTENT=3D"text/html; =
charset=3Diso-8859-1">
<META NAME=3D"Generator" CONTENT=3D"MS Exchange Server version = 5.5.2650.12">
<TITLE>RE: quote in string</TITLE>
</HEAD>
<BODY>

<P><FONT SIZE=3D2>Thanks for your suggestions. </FONT> <BR><FONT SIZE=3D2>However the root of the problem is the replace(). I = can get around it with what you have suggested though by substr() and = concatenating it back together.&nbsp; </FONT></P>

<P><FONT SIZE=3D2>Thanks again</FONT>
<BR><FONT SIZE=3D2>Lisa</FONT>
</P>
<BR>

<P><FONT SIZE=3D2>-----Original Message-----</FONT> <BR><FONT SIZE=3D2>From: elkinsl_at_flash.net [<A = HREF=3D"mailto:elkinsl_at_flash.net">mailto:elkinsl_at_flash.net</A>]</FONT>

<BR><FONT SIZE=3D2>Sent: Wednesday, September 27, 2000 4:32 PM</FONT>
<BR><FONT SIZE=3D2>To: Multiple recipients of list ORACLE-L</FONT>
<BR><FONT SIZE=3D2>Subject: Re: quote in string</FONT>
</P>
<BR>

<P><FONT SIZE=3D2>Lisa,</FONT>
</P>

<P><FONT SIZE=3D2>Try coding the INSTR as:</FONT> </P>

<P><FONT SIZE=3D2>instr(name,'''') &gt; 0</FONT> </P>

<P><FONT SIZE=3D2>The first quote denotes the start of the string, the = second and third quotes </FONT>
<BR><FONT SIZE=3D2>gives one quote, and the fourth closes the string. = Try the following 2 queries </FONT>
<BR><FONT SIZE=3D2>to get a feel for it:</FONT> </P>

<P><FONT SIZE=3D2>select 'O''Connor' From Dual; 2 quotes outputting one = quote</FONT>
<BR><FONT SIZE=3D2>select '''' from =
dual;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Now outputting just a = single quote</FONT>
</P>

<P><FONT SIZE=3D2>If seeing so many tickies starts to get confusing, = you can use the CHR function </FONT>
<BR><FONT SIZE=3D2>directly in the INSTR:</FONT> </P>

<P><FONT SIZE=3D2>instr(name,chr(39)) &gt; 0</FONT> </P>

<P><FONT SIZE=3D2>Or some people like to assign CHR(39) (or '''') to a = variable and refer to the </FONT>
<BR><FONT SIZE=3D2>variable throughout their code. Those are just a few = of the *many* ways to </FONT>
<BR><FONT SIZE=3D2>handle this. You may prefer other suggestions that = are sure to appear.</FONT>
</P>

<P><FONT SIZE=3D2>Regards,</FONT>
</P>

<P><FONT SIZE=3D2>L. Elkins</FONT>
</P>

<P><FONT SIZE=3D2>On Wed Sep 27 14:36:39 2000, &quot;Koivu, Lisa&quot; = &lt;lkoivu_at_qode.com&gt;,ORACLE-</FONT>
<BR><FONT SIZE=3D2>L_at_fatcity.com wrote:</FONT> </P>

<P><FONT SIZE=3D2>&gt; Hi all - </FONT>
<BR><FONT SIZE=3D2>&gt; </FONT>
<BR><FONT SIZE=3D2>&gt; I'm putting my developer hat on =
again.&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; I am writing a = procedure that </FONT>
<BR><FONT SIZE=3D2>parses</FONT>
<BR><FONT SIZE=3D2>&gt; through a string.&nbsp; However, the single = quote ( ' ) is becoming a headache. I</FONT> <BR><FONT SIZE=3D2>&gt; can't replace() it, I can't instr() and look = for it. I am beginning to think</FONT>
<BR><FONT SIZE=3D2>&gt; the only way I can get around this when I trip = onto it in my code (and get</FONT>
<BR><FONT SIZE=3D2>&gt; it out of my string) is to fall into an = exception and check character by</FONT>
<BR><FONT SIZE=3D2>&gt; character and recreate the string in a = variable, and handle the exception</FONT> <BR><FONT SIZE=3D2>&gt; caused by the single quote when it occurs, = ignoring the current character,</FONT>
<BR><FONT SIZE=3D2>&gt; and continuing. </FONT>
<BR><FONT SIZE=3D2>&gt; </FONT>
<BR><FONT SIZE=3D2>&gt; Has anyone got a better idea?&nbsp; </FONT>
<BR><FONT SIZE=3D2>&gt; Thanks in advance for any suggestions. </FONT>
<BR><FONT SIZE=3D2>&gt; </FONT>
<BR><FONT SIZE=3D2>&gt; Lisa Rutland Koivu</FONT>
<BR><FONT SIZE=3D2>&gt; Oracle Database Administrator</FONT>
<BR><FONT SIZE=3D2>&gt; Qode.com</FONT>
<BR><FONT SIZE=3D2>&gt; 4850 North State Road 7</FONT>
<BR><FONT SIZE=3D2>&gt; Suite G104</FONT>
<BR><FONT SIZE=3D2>&gt; Fort Lauderdale, FL&nbsp; 33319</FONT>
<BR><FONT SIZE=3D2>&gt; </FONT>
<BR><FONT SIZE=3D2>&gt; V: 954.484.3191, x174</FONT>
<BR><FONT SIZE=3D2>&gt; F: 954.484.2933 </FONT>
<BR><FONT SIZE=3D2>&gt; C: 954.658.5849</FONT>
<BR><FONT SIZE=3D2>&gt; <A HREF=3D"http://www.qode.com" =
TARGET=3D"_blank">http://www.qode.com</A></FONT> <BR><FONT SIZE=3D2>&gt; </FONT>
<BR><FONT SIZE=3D2>&gt; &quot;The information contained herein does not = express the opinion or position</FONT>
<BR><FONT SIZE=3D2>&gt; of Qode.com and cannot be attributed to or made = binding upon Qode.com.&quot;</FONT>
<BR><FONT SIZE=3D2>&gt; </FONT>
<BR><FONT SIZE=3D2>&gt; </FONT>
<BR><FONT SIZE=3D2>&gt; Hi all - </FONT>
<BR><FONT SIZE=3D2>&gt; </FONT>
<BR><FONT SIZE=3D2>&gt; I'm putting my developer hat on =
again.&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; I am writing a = procedure that </FONT>
<BR><FONT SIZE=3D2>parses</FONT>
<BR><FONT SIZE=3D2>&gt; through a string.&nbsp; However, the single = quote ( ' ) is becoming a headache. I</FONT> <BR><FONT SIZE=3D2>&gt; can't replace() it, I can't instr() and look = for it. I am beginning to think</FONT>
<BR><FONT SIZE=3D2>&gt; the only way I can get around this when I trip = onto it in my code (and get</FONT>
<BR><FONT SIZE=3D2>&gt; it out of my string) is to fall into an = exception and check character by</FONT>
<BR><FONT SIZE=3D2>&gt; character and recreate the string in a = variable, and handle the exception</FONT> <BR><FONT SIZE=3D2>&gt; caused by the single quote when it occurs, = ignoring the current character,</FONT>
<BR><FONT SIZE=3D2>&gt; and continuing. </FONT>
<BR><FONT SIZE=3D2>&gt; </FONT>
<BR><FONT SIZE=3D2>&gt; Has anyone got a better idea?&nbsp; </FONT>
<BR><FONT SIZE=3D2>&gt; Thanks in advance for any suggestions. </FONT>
<BR><FONT SIZE=3D2>&gt; </FONT>
<BR><FONT SIZE=3D2>&gt; Lisa Rutland Koivu</FONT>
<BR><FONT SIZE=3D2>&gt; Oracle Database Administrator</FONT>
<BR><FONT SIZE=3D2>&gt; Qode.com</FONT>
<BR><FONT SIZE=3D2>&gt; 4850 North State Road 7</FONT>
<BR><FONT SIZE=3D2>&gt; Suite G104</FONT>
<BR><FONT SIZE=3D2>&gt; Fort Lauderdale, FL&nbsp; 33319</FONT>
<BR><FONT SIZE=3D2>&gt; </FONT>
<BR><FONT SIZE=3D2>&gt; V: 954.484.3191, x174</FONT>
<BR><FONT SIZE=3D2>&gt; F: 954.484.2933 </FONT>
<BR><FONT SIZE=3D2>&gt; C: 954.658.5849</FONT>
<BR><FONT SIZE=3D2>&gt; <A HREF=3D"http://www.qode.com" =
TARGET=3D"_blank">http://www.qode.com</A></FONT> <BR><FONT SIZE=3D2>&gt; </FONT>
<BR><FONT SIZE=3D2>&gt; &quot;The information contained herein does not = express the opinion or position</FONT>
<BR><FONT SIZE=3D2>&gt; of Qode.com and cannot be attributed to or made = binding upon Qode.com.&quot;</FONT>
<BR><FONT SIZE=3D2>&gt; </FONT>
<BR><FONT SIZE=3D2>&gt; &lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML = 3.2//EN&quot;&gt;</FONT>
<BR><FONT SIZE=3D2>&gt; &lt;HTML&gt;</FONT>
<BR><FONT SIZE=3D2>&gt; &lt;HEAD&gt;</FONT>
<BR><FONT SIZE=3D2>&gt; &lt;META HTTP-EQUIV=3D&quot;Content-Type&quot; =
CONTENT=3D&quot;text/html;</FONT>
<BR><FONT SIZE=3D2>&gt; charset=3Diso-8859-1&quot;&gt;</FONT> <BR><FONT SIZE=3D2>&gt; &lt;META NAME=3D&quot;Generator&quot; = CONTENT=3D&quot;MS Exchange Server version</FONT> <BR><FONT SIZE=3D2>&gt; 5.5.2650.12&quot;&gt;</FONT> <BR><FONT SIZE=3D2>&gt; &lt;TITLE&gt;quote in = string&lt;/TITLE&gt;</FONT>
<BR><FONT SIZE=3D2>&gt; &lt;/HEAD&gt;</FONT>
<BR><FONT SIZE=3D2>&gt; &lt;BODY&gt;</FONT>
<BR><FONT SIZE=3D2>&gt; </FONT>
<BR><FONT SIZE=3D2>&gt; &lt;P&gt;&lt;FONT SIZE=3D2 =
FACE=3D&quot;Arial&quot;&gt;Hi all - &lt;/FONT&gt;</FONT>
<BR><FONT SIZE=3D2>&gt; &lt;/P&gt;</FONT>
<BR><FONT SIZE=3D2>&gt; </FONT>
<BR><FONT SIZE=3D2>&gt; &lt;P&gt;&lt;FONT SIZE=3D2 =
FACE=3D&quot;Arial&quot;&gt;I'm putting my developer hat on</FONT> <BR><FONT SIZE=3D2>&gt; again.=A0 I am writing a procedure that parses = through a string.=A0 However, the</FONT> <BR><FONT SIZE=3D2>&gt; single quote ( ' ) is becoming a headache. I = can't replace() it, I can't instr</FONT> <BR><FONT SIZE=3D2>() and look</FONT>
<BR><FONT SIZE=3D2>&gt; for it. I am beginning to think the only way I = can get around this when I </FONT>
<BR><FONT SIZE=3D2>trip onto it in</FONT> <BR><FONT SIZE=3D2>&gt; my code (and get it out of my string) is to = fall into an exception and check </FONT> <BR><FONT SIZE=3D2>character by</FONT>
<BR><FONT SIZE=3D2>&gt; character and recreate the string in a = variable, and handle the exception </FONT> <BR><FONT SIZE=3D2>caused by the</FONT>
<BR><FONT SIZE=3D2>&gt; single quote when it occurs, ignoring the = current character, and continuing.</FONT>
<BR><FONT SIZE=3D2>&gt; &lt;/FONT&gt;&lt;/P&gt;</FONT>
<BR><FONT SIZE=3D2>&gt; </FONT>
<BR><FONT SIZE=3D2>&gt; &lt;P&gt;&lt;FONT SIZE=3D2 =
FACE=3D&quot;Arial&quot;&gt;Has anyone got a better idea?=A0</FONT>
<BR><FONT SIZE=3D2>&gt; &lt;/FONT&gt;</FONT>
<BR><FONT SIZE=3D2>&gt; &lt;BR&gt;&lt;FONT SIZE=3D2 = FACE=3D&quot;Arial&quot;&gt;Thanks in advance for any</FONT>
<BR><FONT SIZE=3D2>&gt; suggestions. &lt;/FONT&gt;</FONT>
<BR><FONT SIZE=3D2>&gt; &lt;/P&gt;</FONT>
<BR><FONT SIZE=3D2>&gt; </FONT>
<BR><FONT SIZE=3D2>&gt; &lt;P&gt;&lt;B&gt;&lt;FONT SIZE=3D1 =
FACE=3D&quot;Arial&quot;&gt;Lisa Rutland</FONT> <BR><FONT SIZE=3D2>&gt; Koivu&lt;/FONT&gt;&lt;/B&gt;</FONT> <BR><FONT SIZE=3D2>&gt; &lt;BR&gt;&lt;FONT SIZE=3D1 = FACE=3D&quot;Arial&quot;&gt;Oracle Database</FONT> <BR><FONT SIZE=3D2>&gt; Administrator&lt;/FONT&gt;</FONT>
<BR><FONT SIZE=3D2>&gt; &lt;BR&gt;&lt;FONT SIZE=3D1 =
FACE=3D&quot;Arial&quot;&gt;Qode.com&lt;/FONT&gt;</FONT>
<BR><FONT SIZE=3D2>&gt; &lt;BR&gt;&lt;FONT SIZE=3D1 =
FACE=3D&quot;Arial&quot;&gt;4850 North State Road 7&lt;/FONT&gt;</FONT>
<BR><FONT SIZE=3D2>&gt; &lt;BR&gt;&lt;FONT SIZE=3D1 =
FACE=3D&quot;Arial&quot;&gt;Suite G104&lt;/FONT&gt;</FONT>
<BR><FONT SIZE=3D2>&gt; &lt;BR&gt;&lt;FONT SIZE=3D1 =
FACE=3D&quot;Arial&quot;&gt;Fort Lauderdale, FL=A0</FONT>
<BR><FONT SIZE=3D2>&gt; 33319&lt;/FONT&gt;</FONT>
<BR><FONT SIZE=3D2>&gt; &lt;/P&gt;</FONT>
<BR><FONT SIZE=3D2>&gt; </FONT>
<BR><FONT SIZE=3D2>&gt; &lt;P&gt;&lt;FONT SIZE=3D1 =
FACE=3D&quot;Arial&quot;&gt;V: 954.484.3191, x174&lt;/FONT&gt;</FONT>
<BR><FONT SIZE=3D2>&gt; &lt;BR&gt;&lt;FONT SIZE=3D1 =
FACE=3D&quot;Arial&quot;&gt;F: 954.484.2933 &lt;/FONT&gt;</FONT>
<BR><FONT SIZE=3D2>&gt; &lt;BR&gt;&lt;FONT SIZE=3D1 =
FACE=3D&quot;Arial&quot;&gt;C: 954.658.5849&lt;/FONT&gt;</FONT>
<BR><FONT SIZE=3D2>&gt; &lt;BR&gt;&lt;FONT SIZE=3D1 =
FACE=3D&quot;Arial&quot;&gt;&lt;A</FONT>
<BR><FONT SIZE=3D2>&gt; HREF=3D&quot;<A HREF=3D"http://www.qode.com" = TARGET=3D"_blank">http://www.qode.com</A>&quot;</FONT> <BR><FONT SIZE=3D2>&gt; TARGET=3D&quot;_blank&quot;&gt;<A = HREF=3D"http://www.qode.com" =
TARGET=3D"_blank">http://www.qode.com</A>&lt;/A&gt;&lt;/FONT&gt;</FONT>
<BR><FONT SIZE=3D2>&gt; &lt;/P&gt;</FONT>
<BR><FONT SIZE=3D2>&gt; </FONT>
<BR><FONT SIZE=3D2>&gt; &lt;P&gt;&lt;I&gt;&lt;FONT =
COLOR=3D&quot;#000000&quot; SIZE=3D1</FONT> <BR><FONT SIZE=3D2>&gt; FACE=3D&quot;Arial&quot;&gt;&quot;The = information contained herein does not express the</FONT> <BR><FONT SIZE=3D2>&gt; opinion or position of Qode.com and cannot be = attributed to or made binding </FONT>
<BR><FONT SIZE=3D2>upon</FONT>
<BR><FONT SIZE=3D2>&gt; =
Qode.com.&quot;&lt;/FONT&gt;&lt;/I&gt;&lt;/P&gt;</FONT>
<BR><FONT SIZE=3D2>&gt; </FONT>
<BR><FONT SIZE=3D2>&gt; &lt;/BODY&gt;</FONT>
<BR><FONT SIZE=3D2>&gt; &lt;/HTML&gt;</FONT>
</P>

<P><FONT SIZE=3D2>-- </FONT>
<BR><FONT SIZE=3D2>Please see the official ORACLE-L FAQ: <A = HREF=3D"http://www.orafaq.com" =
TARGET=3D"_blank">http://www.orafaq.com</A></FONT>

<BR><FONT SIZE=3D2>-- </FONT>
<BR><FONT SIZE=3D2>Author: </FONT>
<BR><FONT SIZE=3D2>&nbsp; INET: elkinsl_at_flash.net</FONT>
</P>

<P><FONT SIZE=3D2>Fat City Network Services&nbsp;&nbsp;&nbsp; -- (858) = 538-5051&nbsp; FAX: (858) 538-5051</FONT> <BR><FONT SIZE=3D2>San Diego, =
California&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; -- Public Internet = access / Mailing Lists</FONT>
<BR><FONT =

SIZE=3D2>---------------------------------------------------------------=
-----</FONT>
<BR><FONT SIZE=3D2>To REMOVE yourself from this mailing list, send an = Received on Wed Sep 27 2000 - 15:28:32 CDT

Original text of this message

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