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: Unreadable time_stamp format

RE: Unreadable time_stamp format

From: <Jared.Still_at_radisys.com>
Date: Wed, 17 Dec 2003 09:09:34 -0800
Message-ID: <F001.005DA306.20031217090934@fatcity.com>


Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable

David,

<SOAPBOX>

Not trying to sound condescending or disrespectful, but I think you need some serious practice time with SQL. Break out the SQL manual, and find out how to join various tables. A good place to start would be the demo account scott/tiger, with the demo tables in $ORACLE=5FHOME/sqlplus/demo.

Knock yourself out playing with joins, experimenting with different SQL=20 functions.

Create foreign keys, find out why FK's should have an index, what the=20 requirements
are for the index, etc. Become *fluent* in PL/SQL as well, and learn when =

to
use it and when not to use it.

</SOAPBOX>

Try this:

select=20

   user=5Fname
   , to=5Fdate('01/01/1970','mm/dd/yyyy') + ( time=5Fstamp / (24*60*60*1000= ))
from user=5Factivity=5Flog
where rownum <=3D 100

HTH Jared

"Nguyen, David M" <david.m.nguyen_at_xo.com> Sent by: ml-errors_at_fatcity.com
 12/17/2003 07:54 AM
 Please respond to ORACLE-L

=20

        To:     Multiple recipients of list ORACLE-L <ORACLE-L_at_fatcity.com>
        cc:=20
        Subject:        RE: Unreadable time=5Fstamp format


Jared,
=20
It is epochtime. When I run your given SQL I got TO=5FDATE output is=20 "24-NOV-03". Is it actual date translated from epochtime "1069716948959"=20 ?=20
=20
How do I query to select only 100 records? =20
=20
SQL> select to=5Fdate('01/01/1970','mm/dd/yyyy') + ( 1069716948959 /=20 (24*60*60*100
0) ) from dual ;
=20
TO=5FDATE('



24-NOV-03
=20
=20
Thanks,
David
=20
=20
-----Original Message-----
ed.Still_at_radisys.com
Sent: Tuesday, December 16, 2003 7:14 PM To: Multiple recipients of list ORACLE-L =20

Try milliseconds from the epoch - 1/1/1970=20

select to=5Fdate('01/01/1970','mm/dd/yyyy') + ( 1069716948959 /=20 (24*60*60*1000) ) from dual=20

You really need to know how the timestamp column is defined by your app.=20

Jared=20

=20
"Nguyen, David M" <david.m.nguyen_at_xo.com>=20 Sent by: ml-errors_at_fatcity.com=20
 12/16/2003 02:09 PM=20
 Please respond to ORACLE-L=20

       =20
        To:        Multiple recipients of list ORACLE-L=20

<ORACLE-L_at_fatcity.com>=20
cc: =20 Subject: RE: Unreadable time=5Fstamp format

Now I got.=20
 =20

USER=5FNAME             TIME STAMP=20
--------------------              ----------------------=20
eholley                       1069716948959=20
jmdavis                       1069715246467=20
jmdavis                       1069715324466=20
 =20
 =20
-----Original Message-----
ak, Mark
Sent: Tuesday, December 16, 2003 3:54 PM To: Multiple recipients of list ORACLE-L  =20
Since it's a NUMBER datatype, try:=20
SQL>  column time=5Fstamp format 99999999999999999999=20
SQL> select user=5Fname, time=5Fstamp from USER=5FACTIVITY=5FLOG;=20  =20
-----Original Message-----
Sent: Tuesday, December 16, 2003 4:39 PM To: Multiple recipients of list ORACLE-L I need to view time=5Fstamp column in USER=5FACTIVITY=5FLOG table but it di= splays unreadable format as=20
shown below. Is there a way to decode it to be readable?=20 SQL> desc USER=5FACTIVITY=5FLOG=20
 Name                                      Null?    Type=20
 ----------------------------------------- --------=20
----------------------------=20
 TIME=5FSTAMP                              NOT NULL NUMBER(20)=20
 NODE=5FNAME                               NOT NULL VARCHAR2(20)=20
 USER=5FNAME                                NOT NULL VARCHAR2(20)=20
 CLIENT=5FIP                                    NOT NULL VARCHAR2(15)=20
 DESCRIPTION                              NOT NULL VARCHAR2(2048)=20
=20
SQL>select user=5Fname, time=5Fstamp from USER=5FACTIVITY=5FLOG;=20
edscott              1.0693E+12=20
edscott              1.0693E+12=20
edscott              1.0693E+12=20
edscott              1.0693E+12=20
jmdavis              1.0693E+12=20
edscott              1.0693E+12=20
edscott              1.0693E+12=20

Thanks,
David=20

--=_alternative 005E2C4288256DFF_=
Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable

<br><font size=3D2 face=3D"sans-serif">David,</font>
<br>
<br><font size=3D2 face=3D"sans-serif">&lt;SOAPBOX&gt;</font>
<br>
<br><font size=3D2 face=3D"sans-serif">Not trying to sound condescending or=
 disrespectful, but I think you need</font>
<br><font size=3D2 face=3D"sans-serif">some serious practice time with SQL.=
 &nbsp;Break out the SQL manual, and find</font>
<br><font size=3D2 face=3D"sans-serif">out how to join various tables. &nbs=
p;A good place to start would be the demo</font>
<br><font size=3D2 face=3D"sans-serif">account scott/tiger, with the demo t=
ables in $ORACLE=5FHOME/sqlplus/demo.</font>
<br>
<br><font size=3D2 face=3D"sans-serif">Knock yourself out playing with join=
s, experimenting with different SQL functions.</font>
<br>
<br><font size=3D2 face=3D"sans-serif">Create foreign keys, find out why FK=
's should have an index, what the requirements</font>
<br><font size=3D2 face=3D"sans-serif">are for the index, etc. &nbsp;Become=
 *fluent* in PL/SQL as well, and learn when to</font>
<br><font size=3D2 face=3D"sans-serif">use it and when not to use it.</font>
<br>
<br>
<br><font size=3D2 face=3D"sans-serif">&lt;/SOAPBOX&gt;</font>
<br>
<br><font size=3D2 face=3D"sans-serif">Try this:</font>
<br>
<br><font size=3D2 color=3D#000080 face=3D"Arial">select </font>
<br><font size=3D2 color=3D#000080 face=3D"Arial">&nbsp; &nbsp;user=5Fname<=
/font>
<br><font size=3D2 color=3D#000080 face=3D"Arial">&nbsp; &nbsp;, to=5Fdate(=
'01/01/1970','mm/dd/yyyy') + ( time=5Fstamp / (24*60*60*1000))</font>
<br><font size=3D2 color=3D#000080 face=3D"Arial">from user=5Factivity=5Flo=
g</font>
<br><font size=3D2 color=3D#000080 face=3D"Arial">where rownum &lt;=3D 100<=
/font>
<br>
<br>
<br><font size=3D2 face=3D"sans-serif">HTH</font>
<br>
<br><font size=3D2 face=3D"sans-serif">Jared</font>
<br><font size=3D2 face=3D"sans-serif"><br>
</font>
<br>
<br>
<br>
<table width=3D100%>
<tr valign=3Dtop>
<td>
<td><font size=3D1 face=3D"sans-serif"><b>&quot;Nguyen, David M&quot; &lt;d=
avid.m.nguyen_at_xo.com&gt;</b></font>
<br><font size=3D1 face=3D"sans-serif">Sent by: ml-errors_at_fatcity.com</font>
<p><font size=3D1 face=3D"sans-serif">&nbsp;12/17/2003 07:54 AM</font>
<br><font size=3D2 face=3D"sans-serif">&nbsp;</font><font size=3D1 face=3D"=
sans-serif">Please respond to ORACLE-L</font>
<br>
<td><font size=3D1 face=3D"Arial">&nbsp; &nbsp; &nbsp; &nbsp; </font>
<br><font size=3D1 face=3D"sans-serif">&nbsp; &nbsp; &nbsp; &nbsp; To: &nbs=
p; &nbsp; &nbsp; &nbsp;Multiple recipients of list ORACLE-L &lt;ORACLE-L_at_fa= tcity.com&gt;</font>
<br><font size=3D1 face=3D"sans-serif">&nbsp; &nbsp; &nbsp; &nbsp; cc: &nbs=
p; &nbsp; &nbsp; &nbsp;</font>
<br><font size=3D1 face=3D"sans-serif">&nbsp; &nbsp; &nbsp; &nbsp; Subject:=
 &nbsp; &nbsp; &nbsp; &nbsp;RE: Unreadable time=5Fstamp format</font></tabl= e>
<br>
<br>
<br><font size=3D2 color=3D#000080 face=3D"Arial">Jared,</font>
<br><font size=3D2 color=3D#000080 face=3D"Arial">&nbsp;</font>
<br><font size=3D2 color=3D#000080 face=3D"Arial">It is epochtime. &nbsp;Wh=
en I run your given SQL I got TO=5FDATE output is "24-NOV-03". &nbsp;Is it = actual date translated from epochtime "1069716948959" ? &nbsp;</font>
<br><font size=3D2 color=3D#000080 face=3D"Arial">&nbsp;</font>
<br><font size=3D2 color=3D#000080 face=3D"Arial">How do I query to select =
only 100 records?</font>
<br><font size=3D2 color=3D#000080 face=3D"Arial">&nbsp;</font>
<br><font size=3D2 color=3D#000080 face=3D"Arial">&nbsp;</font>
<br><font size=3D2 color=3D#000080 face=3D"Arial">SQL&gt; select to=5Fdate(=
'01/01/1970','mm/dd/yyyy') + ( 1069716948959 / (24*60*60*100</font>
<br><font size=3D2 color=3D#000080 face=3D"Arial">0) ) from dual ;</font>
<br><font size=3D2 color=3D#000080 face=3D"Arial">&nbsp;</font>
<br><font size=3D2 color=3D#000080 face=3D"Arial">TO=5FDATE('</font>
<br><font size=3D2 color=3D#000080 face=3D"Arial">---------</font>
<br><font size=3D2 color=3D#000080 face=3D"Arial">24-NOV-03</font>
<br><font size=3D2 color=3D#000080 face=3D"Arial">&nbsp;</font>
<br><font size=3D2 color=3D#000080 face=3D"Arial">&nbsp;</font>
<br><font size=3D2 color=3D#000080 face=3D"Arial">Thanks,<br>
David</font>
<br><font size=3D2 color=3D#000080 face=3D"Arial">&nbsp;</font>
<br><font size=3D2 color=3D#000080 face=3D"Arial">&nbsp;</font>
<br><font size=3D2 face=3D"Tahoma">-----Original Message-----<b><br>
From:</b> ml-errors_at_fatcity.com [mailto:ml-errors_at_fatcity.com] <b>On Behalf=  Of </b>Jared.Still_at_radisys.com<b><br>

Sent:</b> Tuesday, December 16, 2003 7:14 PM<b><br>
To:</b> Multiple recipients of list ORACLE-L<b><br>
Subject:</b> RE: Unreadable time=5Fstamp format</font>

<br><font size=3D3 face=3D"Times New Roman">&nbsp;</font>
<br><font size=3D2 face=3D"sans-serif"><br>
Try milliseconds from the epoch - 1/1/1970</font><font size=3D3 face=3D"Tim= es New Roman"> <br>
</font><font size=3D2 face=3D"sans-serif"><br>
select to=5Fdate('01/01/1970','mm/dd/yyyy') + ( 1069716948959 / (24*60*60*1= 000) ) from dual</font><font size=3D3 face=3D"Times New Roman"> <br>
</font><font size=3D2 face=3D"sans-serif"><br>
You really need to know how the timestamp column is defined by your app.</f= ont><font size=3D3 face=3D"Times New Roman"> <br>
</font><font size=3D2 face=3D"sans-serif"><br>
Jared</font><font size=3D3 face=3D"Times New Roman"> </font><font size=3D2 = face=3D"sans-serif"><br>
</font><font size=3D3 face=3D"Times New Roman"><br>
<br>
</font>
<p>
<table width=3D100%>
<tr valign=3Dtop>
<td width=3D1%><font size=3D3 face=3D"Times New Roman">&nbsp;</font>
<td width=3D42%><font size=3D1 face=3D"sans-serif"><b>&quot;Nguyen, David M=
&quot; &lt;david.m.nguyen_at_xo.com&gt;</b></font><font size=3D3 face=3D"Times=  New Roman"> </font><font size=3D1 face=3D"sans-serif"><br> Sent by: ml-errors_at_fatcity.com</font><font size=3D3 face=3D"Times New Roman= "> </font>
<p><font size=3D1 face=3D"sans-serif">&nbsp;12/16/2003 02:09 PM</font><font=
 size=3D3 face=3D"Times New Roman"> </font><font size=3D2 face=3D"sans-seri= f"><br>
 </font><font size=3D1 face=3D"sans-serif">Please respond to ORACLE-L</font= ><font size=3D3 face=3D"Times New Roman"> </font>
<td width=3D56%><font size=3D1 face=3D"Arial">&nbsp; &nbsp; &nbsp; &nbsp; <=
/font><font size=3D1 face=3D"sans-serif"><br>  &nbsp; &nbsp; &nbsp; &nbsp;To: &nbsp; &nbsp; &nbsp; &nbsp;Multiple recipie= nts of list ORACLE-L &lt;ORACLE-L_at_fatcity.com&gt;</font><font size=3D3 face= =3D"Times New Roman"> </font><font size=3D1 face=3D"sans-serif"><br>  &nbsp; &nbsp; &nbsp; &nbsp;cc: &nbsp; &nbsp; &nbsp; &nbsp;</font><font siz= e=3D3 face=3D"Times New Roman"> </font><font size=3D1 face=3D"sans-serif"><= br>
 &nbsp; &nbsp; &nbsp; &nbsp;Subject: &nbsp; &nbsp; &nbsp; &nbsp;RE: Unreada= ble time=5Fstamp format</font></table>
<br><font size=3D3 face=3D"Times New Roman"><br>
<br>
</font><font size=3D2 color=3D#000080 face=3D"Arial"><br>
Now I got.</font><font size=3D3 face=3D"Times New Roman"> </font><font size= =3D2 color=3D#000080 face=3D"Arial"><br>  </font><font size=3D3 face=3D"Times New Roman">&nbsp;</font><font size=3D2=  color=3D#000080 face=3D"Arial"><br>
USER=5FNAME &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; TIME STAMP</font><fon= t size=3D3 face=3D"Times New Roman"> </font><font size=3D2 color=3D#000080 = face=3D"Arial"><br>
-------------------- &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;------=
----------------</font><font size=3D3 face=3D"Times New Roman"> </font><fon=
t size=3D2 color=3D#000080 face=3D"Arial"><br> eholley &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbs= p; &nbsp; 1069716948959</font><font size=3D3 face=3D"Times New Roman"> </fo= nt><font size=3D2 color=3D#000080 face=3D"Arial"><br> jmdavis &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbs= p; &nbsp; 1069715246467</font><font size=3D3 face=3D"Times New Roman"> </fo= nt><font size=3D2 color=3D#000080 face=3D"Arial"><br> jmdavis &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbs= p; &nbsp; 1069715324466</font><font size=3D3 face=3D"Times New Roman"> </fo= nt><font size=3D2 color=3D#000080 face=3D"Arial"><br>
 </font><font size=3D3 face=3D"Times New Roman">&nbsp;</font><font size=3D2=
 color=3D#000080 face=3D"Arial"><br>
 </font><font size=3D3 face=3D"Times New Roman">&nbsp;</font><font size=3D2=
 face=3D"Tahoma"><br>
-----Original Message-----<b><br>
From:</b> ml-errors_at_fatcity.com [mailto:ml-errors_at_fatcity.com] <b>On Behalf=  Of </b>Bobak, Mark<b><br>
Sent:</b> Tuesday, December 16, 2003 3:54 PM<b><br>
To:</b> Multiple recipients of list ORACLE-L<b><br>
Subject:</b> RE: Unreadable time=5Fstamp format</font><font size=3D3 face=
=3D"Times New Roman"> <br>
 &nbsp;</font><font size=3D2 color=3Dblue face=3D"Arial"><br> Since it's a NUMBER datatype, try:</font><font size=3D3 face=3D"Times New R= oman"> </font><font size=3D2 color=3Dblue face=3D"Arial"><br>
SQL&gt; &nbsp;column time=5Fstamp format 99999999999999999999</font><font s=
ize=3D3 face=3D"Times New Roman"> </font><font size=3D2 color=3Dblue face= =3D"Arial"><br>
SQL&gt; &nbsp;select user=5Fname, time=5Fstamp from USER=5FACTIVITY=5FLOG;<= /font><font size=3D3 face=3D"Times New Roman"> <br>  &nbsp;</font><font size=3D2 face=3D"Tahoma"><br> -----Original Message-----<b><br>
From:</b> Nguyen, David M [mailto:david.m.nguyen_at_xo.com]<b><br> Sent:</b> Tuesday, December 16, 2003 4:39 PM<b><br> To:</b> Multiple recipients of list ORACLE-L<b><br> Subject:</b> Unreadable time=5Fstamp format</font><font size=3D3 face=3D"Ti= mes New Roman"> </font>
<p><font size=3D2 face=3D"Arial">I need to</font><font size=3D3 face=3D"Tim=
es New Roman"> </font><font size=3D2 face=3D"Arial">view time=5Fstamp</font=
><font size=3D3 face=3D"Times New Roman"> </font><font size=3D2 face=3D"Ari=
al">column in USER=5FACTIVITY=5FLOG table but it displays unreadable format=
 as shown below. &nbsp;Is there a</font><font size=3D3 face=3D"Times New Ro=
man"> </font><font size=3D2 face=3D"Arial">way to decode it to be readable?=

</font><font size=3D3 face=3D"Times New Roman"> </font>
<p><font size=3D2 face=3D"Arial">SQL&gt; desc USER=5FACTIVITY=5FLOG</font><=
font size=3D3 face=3D"Times New Roman"> </font>
<p><font size=3D2 face=3D"Arial">&nbsp;Name &nbsp; &nbsp; &nbsp; &nbsp; &nb=
sp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &= nbsp; &nbsp; &nbsp; &nbsp;Null? &nbsp; &nbsp;Type</font><font size=3D3 face= =3D"Times New Roman"> </font>
<p><font size=3D2 face=3D"Arial">&nbsp;------------------------------------=
----- -------- ----------------------------</font><font size=3D3 face=3D"Ti=
mes New Roman"> </font>
<p><font size=3D3 face=3D"Times New Roman"><b>&nbsp;</b></font><font size=
=3D2 face=3D"Arial"><b>TIME=5FSTAMP &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbs= p; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;NOT NULL N= UMBER(20)</b></font><font size=3D3 face=3D"Times New Roman"> </font>
<p><font size=3D2 face=3D"Arial">&nbsp;NODE=5FNAME &nbsp; &nbsp; &nbsp; &nb=
sp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &= nbsp; NOT NULL VARCHAR2(20)</font><font size=3D3 face=3D"Times New Roman"> =
</font>
<p><font size=3D2 face=3D"Arial">&nbsp;USER=5FNAME &nbsp; &nbsp; &nbsp; &nb=
sp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &= nbsp; &nbsp;NOT NULL VARCHAR2(20)</font><font size=3D3 face=3D"Times New Ro= man"> </font>
<p><font size=3D2 face=3D"Arial">&nbsp;CLIENT=5FIP &nbsp; &nbsp; &nbsp; &nb=
sp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &=
nbsp; &nbsp;</font><font size=3D3 face=3D"Times New Roman"> </font><font si=
ze=3D2 face=3D"Arial">&nbsp; </font><font size=3D3 face=3D"Times New Roman"=
>&nbsp;</font><font size=3D2 face=3D"Arial">NOT NULL VARCHAR2(15)</font><fo=
nt size=3D3 face=3D"Times New Roman"> </font>
<p><font size=3D2 face=3D"Arial">&nbsp;DESCRIPTION &nbsp; &nbsp; &nbsp; &nb=
sp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &= nbsp;NOT NULL VARCHAR2(2048)</font><font size=3D3 face=3D"Times New Roman">=  <br>
 &nbsp;</font>
<p><font size=3D2 face=3D"Arial">SQL&gt;select user=5Fname<b>, time=5Fstamp=
</b> from USER=5FACTIVITY=5FLOG;</font><font size=3D3 face=3D"Times New Rom=
an"> </font>
<p><font size=3D2 face=3D"Arial">edscott &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;=
 &nbsp; </font><font size=3D3 face=3D"Times New Roman"><b>&nbsp;</b></font>=
<font size=3D2 face=3D"Arial"><b>1.0693E+12</b></font><font size=3D3 face=
=3D"Times New Roman"> </font>
<p><font size=3D2 face=3D"Arial">edscott &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;=
 &nbsp; </font><font size=3D3 face=3D"Times New Roman"><b>&nbsp;</b></font>=
<font size=3D2 face=3D"Arial"><b>1.0693E+12</b></font><font size=3D3 face=
=3D"Times New Roman"> </font>
<p><font size=3D2 face=3D"Arial">edscott &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;=
 &nbsp; </font><font size=3D3 face=3D"Times New Roman"><b>&nbsp;</b></font>=
<font size=3D2 face=3D"Arial"><b>1.0693E+12</b></font><font size=3D3 face=
=3D"Times New Roman"> </font>
<p><font size=3D2 face=3D"Arial">edscott &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;=
 &nbsp; </font><font size=3D3 face=3D"Times New Roman"><b>&nbsp;</b></font>=
<font size=3D2 face=3D"Arial"><b>1.0693E+12</b></font><font size=3D3 face=
=3D"Times New Roman"> </font>
<p><font size=3D2 face=3D"Arial">jmdavis &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;=
 &nbsp; </font><font size=3D3 face=3D"Times New Roman"><b>&nbsp;</b></font>=
<font size=3D2 face=3D"Arial"><b>1.0693E+12</b></font><font size=3D3 face=
=3D"Times New Roman"> </font>
<p><font size=3D2 face=3D"Arial">edscott &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;=
 &nbsp; </font><font size=3D3 face=3D"Times New Roman"><b>&nbsp;</b></font>=
<font size=3D2 face=3D"Arial"><b>1.0693E+12</b></font><font size=3D3 face=
=3D"Times New Roman"> </font>
<p><font size=3D2 face=3D"Arial">edscott &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;=
 &nbsp; </font><font size=3D3 face=3D"Times New Roman"><b>&nbsp;</b></font>=
<font size=3D2 face=3D"Arial"><b>1.0693E+12</b></font><font size=3D3 face=
=3D"Times New Roman"> </font>
<p><font size=3D2 face=3D"Arial">Thanks,<br>
David</font><font size=3D3 face=3D"Times New Roman"> </font>
<p>
<p>

--=_alternative 005E2C4288256DFF_=--
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net
-- 
Author: 
  INET: Jared.Still_at_radisys.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).
Received on Wed Dec 17 2003 - 11:09:34 CST

Original text of this message

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