Return-Path: <root@fatcity.cts.com>
Received: from ensim.rackshack.net (root@localhost)
 by orafaq.net (8.11.6/8.11.6) with ESMTP id gBUNXaN05747
 for <oracle-l@orafaq.net>; Mon, 30 Dec 2002 17:33:36 -0600
X-ClientAddr: 209.68.248.164
Received: from newsfeed.cts.com (newsfeed.cts.com [209.68.248.164])
 by ensim.rackshack.net (8.11.6/8.11.6) with ESMTP id gBUNXZc05739
 for <oracle-l@orafaq.net>; Mon, 30 Dec 2002 17:33:35 -0600
Received: from fatcity.UUCP (uucp@localhost)
 by newsfeed.cts.com (8.9.3/8.9.3) with UUCP id MAA33525;
 Mon, 30 Dec 2002 12:15:33 -0800 (PST)
Received: by fatcity.com (26-Feb-2001/v1.0g-b72/bab) via UUCP id 00524558; Mon, 30 Dec 2002 11:58:54 -0800
Message-ID: <F001.00524558.20021230115854@fatcity.com>
Date: Mon, 30 Dec 2002 11:58:54 -0800
To: Multiple recipients of list ORACLE-L <ORACLE-L@fatcity.com>
X-Comment: Oracle RDBMS Community Forum
X-Sender: "Jamadagni, Rajendra" <Rajendra.Jamadagni@espn.com>
Sender: root@fatcity.com
Reply-To: ORACLE-L@fatcity.com
Errors-To: ML-ERRORS@fatcity.com
From: "Jamadagni, Rajendra" <Rajendra.Jamadagni@espn.com>
Subject: RE: columns with primary key constraint
Organization: Fat City Network Services, San Diego, California
X-ListServer: v1.0g, build 72; ListGuru (c) 1996-2001 Bruce A. Bergman
Precedence: bulk
Mime-Version: 1.0
Content-Type: multipart/mixed;	boundary="----=_NextPartTM-000-5a15269b-8c40-4002-9af7-3698a35ad265"
------=_NextPartTM-000-5a15269b-8c40-4002-9af7-3698a35ad265
Content-Type: multipart/alternative;
 boundary="----_=_NextPart_001_01C2B03D.E3524AF0"
------_=_NextPart_001_01C2B03D.E3524AF0
Content-Type: text/plain;
 charset="iso-8859-1"

SELECT /*+ no_merge(utc) no_merge(ucct.uc) no_merge(ucct.ucc) */ 
       utc.owner
      ,utc.table_name
      ,utc.column_name
      ,DECODE(ucct.constraint_type, 'P',DECODE(NVL(ucct.cln, ' '), ' ','
','(PK-['||ucct.cn || '] ' || ucct.pos||')'),'') is_pk
      ,DECODE(ucct.constraint_type, 'R',DECODE(NVL(ucct.cln, ' '), ' ','
','(FK-['||ucct.cn || '] ' || ucct.pos||')'),'') is_fk
FROM   DBA_TAB_COLUMNS utc,
(SELECT uc.owner, uc.table_name tn, ucc.constraint_name cn, ucc.column_name
cln,
           ucc.position pos, uc.constraint_type
    FROM   DBA_CONS_COLUMNS ucc,
           DBA_CONSTRAINTS uc
    WHERE  ucc.owner = uc.owner
    AND    ucc.constraint_name = uc.constraint_name
    AND    uc.constraint_type IN ('P','R')) ucct
WHERE utc.table_name = ucct.tn (+)
AND utc.column_name = ucct.cln (+)
AND utc.owner = ucct.owner
AND utc.OWNer = '<OWNER>'
ORDER BY utc.owner, utc.table_name, ucct.pos
/

Just an improvement on Charu's script ...
Raj
______________________________________________________
Rajendra Jamadagni		MIS, ESPN Inc.
Rajendra dot Jamadagni at ESPN dot com
Any opinion expressed here is personal and doesn't reflect that of ESPN Inc.

QOTD: Any clod can have facts, but having an opinion is an art!


-----Original Message-----
Sent: Monday, December 30, 2002 2:34 PM
To: Multiple recipients of list ORACLE-L


Charu,

This is exactly what I was looking for.

I will try to modify this now to include an
"(FK)" for any column with a foreign key
constraint.

Thanks for the extra pair of eyes.

Happy New Year all!

Steve

--- Charu Joshi <joshic@mahindrabt.com> wrote:
> Hi Steve,
> 
> Are you looking for something like this?:
> 
> SELECT utc.table_name, utc.column_name
> ,DECODE(NVL(ucct.cln, ' '), ' ',' ',
> '(PK-'||ucct.pos||')') is_pk
> FROM   user_tab_columns utc,
> (
>     select uc.table_name tn,
> ucc.constraint_name cn, ucc.column_name cln,
>            ucc.position pos
>     FROM   user_cons_columns ucc,
>            user_constraints uc
>     WHERE  ucc.constraint_name =
> uc.constraint_name
>     AND    uc.constraint_type = 'P'
> ) ucct
> WHERE utc.table_name = ucct.tn (+)
> AND utc.column_name = ucct.cln (+)
> AND utc.table_name = '&tab_name'
> ORDER BY ucct.pos
> /
> 
> Regards,
> Charu
> 
> -----Original Message-----
> Sent: Monday, December 30, 2002 2:39 PM
> To: Multiple recipients of list ORACLE-L
> 
> Good Morning List,
> 
> I am trying to build a query to display the
> following for any table
> 
> column_name is_pk
> ----------- -----
> COLUMN_1    (PK-1)
> COLUMN_2    (PK-2)
> COLUMN_3
> COLUMN_4
> COLUMN_5
> COLUMN_6
> 
> I can get the two columns with (PK) with...
> 
> select utc.column_name
> ,decode(ucc.column_name,null,null,'
> (PK-'||ucc.position||')') is_pk
> from   user_tab_columns utc,
>        user_cons_columns ucc,
>        user_constraints uc
> where  utc.table_name = 'TAB_A'
> and    uc.constraint_type = 'P'
> and    utc.table_name = uc.table_name
> and    uc.constraint_name (+) =
> ucc.constraint_name
> and    utc.column_name (+) = ucc.column_name
> order by utc.column_id
> 
> but can't seem to get the columns not part of
> the
> PK.  I suspect I am missing an outer-join
> somewhere, but can't seem to figure it out.
> 
> If possible I would like to put an "(FK)" next
> to
> columns that have a FK constraint as well.
> 
> Thanks.
> 
> =====
> Steve Haas
> Opus Consultants, LLC
> 860.408.1512 (office/fax)
> 860.651.9475 (home)
> steven_haas@opus-consultants.com
> steven.haas@snet.net
> --
> Please see the official ORACLE-L FAQ:
> http://www.orafaq.net
> --
> Author: Steven Haas
>   INET: steven.haas@snet.net
> 
> 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@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).
> 
>
*********************************************************
> Disclaimer
> 
> This message (including any attachments)
> contains 
> confidential information intended for a
> specific 
> individual and purpose, and is protected by
> law. 
> If you are not the intended recipient, you
> should 
> delete this message and are hereby notified
> that 
> any disclosure, copying, or distribution of
> this
> message, or the taking of any action based on
> it, 
> is strictly prohibited.
> 
>
*********************************************************
> Visit us at http://www.mahindrabt.com
> 
> 
> 
> -- 
> Please see the official ORACLE-L FAQ:
> http://www.orafaq.net
> -- 
> Author: Charu Joshi
>   INET: joshic@mahindrabt.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@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: Steven Haas
  INET: steven.haas@snet.net

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@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_01C2B03D.E3524AF0
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.2654.19">
<TITLE>RE: columns with primary key constraint</TITLE>
</HEAD>
<BODY>

<P><FONT SIZE=3D2>SELECT /*+ no_merge(utc) no_merge(ucct.uc) =
no_merge(ucct.ucc) */ </FONT>
<BR><FONT SIZE=3D2>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; =
utc.owner</FONT>
<BR><FONT SIZE=3D2>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; =
,utc.table_name</FONT>
<BR><FONT SIZE=3D2>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; =
,utc.column_name</FONT>
<BR><FONT SIZE=3D2>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; =
,DECODE(ucct.constraint_type, 'P',DECODE(NVL(ucct.cln, ' '), ' ',' =
','(PK-['||ucct.cn || '] ' || ucct.pos||')'),'') is_pk</FONT></P>

<P><FONT SIZE=3D2>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; =
,DECODE(ucct.constraint_type, 'R',DECODE(NVL(ucct.cln, ' '), ' ',' =
','(FK-['||ucct.cn || '] ' || ucct.pos||')'),'') is_fk</FONT></P>

<P><FONT SIZE=3D2>FROM&nbsp;&nbsp; DBA_TAB_COLUMNS utc,</FONT>
<BR><FONT SIZE=3D2>(SELECT uc.owner, uc.table_name tn, =
ucc.constraint_name cn, ucc.column_name cln,</FONT>
<BR><FONT =
SIZE=3D2>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; =
ucc.position pos, uc.constraint_type</FONT>
<BR><FONT SIZE=3D2>&nbsp;&nbsp;&nbsp; FROM&nbsp;&nbsp; DBA_CONS_COLUMNS =
ucc,</FONT>
<BR><FONT =
SIZE=3D2>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; =
DBA_CONSTRAINTS uc</FONT>
<BR><FONT SIZE=3D2>&nbsp;&nbsp;&nbsp; WHERE&nbsp; ucc.owner =3D =
uc.owner</FONT>
<BR><FONT SIZE=3D2>&nbsp;&nbsp;&nbsp; AND&nbsp;&nbsp;&nbsp; =
ucc.constraint_name =3D uc.constraint_name</FONT>
<BR><FONT SIZE=3D2>&nbsp;&nbsp;&nbsp; AND&nbsp;&nbsp;&nbsp; =
uc.constraint_type IN ('P','R')) ucct</FONT>
<BR><FONT SIZE=3D2>WHERE utc.table_name =3D ucct.tn (+)</FONT>
<BR><FONT SIZE=3D2>AND utc.column_name =3D ucct.cln (+)</FONT>
<BR><FONT SIZE=3D2>AND utc.owner =3D ucct.owner</FONT>
<BR><FONT SIZE=3D2>AND utc.OWNer =3D '&lt;OWNER&gt;'</FONT>
<BR><FONT SIZE=3D2>ORDER BY utc.owner, utc.table_name, ucct.pos</FONT>
<BR><FONT SIZE=3D2>/</FONT>
</P>

<P><FONT SIZE=3D2>Just an improvement on Charu's script ...</FONT>
<BR><FONT SIZE=3D2>Raj</FONT>
<BR><FONT =
SIZE=3D2>______________________________________________________</FONT>
<BR><FONT SIZE=3D2>Rajendra Jamadagni&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; =
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; MIS, ESPN Inc.</FONT>
<BR><FONT SIZE=3D2>Rajendra dot Jamadagni at ESPN dot com</FONT>
<BR><FONT SIZE=3D2>Any opinion expressed here is personal and doesn't =
reflect that of ESPN Inc. </FONT>
<BR><FONT SIZE=3D2>QOTD: Any clod can have facts, but having an opinion =
is an art!</FONT>
</P>
<BR>

<P><FONT SIZE=3D2>-----Original Message-----</FONT>
<BR><FONT SIZE=3D2>From: Steven Haas [<A =
HREF=3D"mailto:steven.haas@snet.net">mailto:steven.haas@snet.net</A>]</F=
ONT>
<BR><FONT SIZE=3D2>Sent: Monday, December 30, 2002 2:34 PM</FONT>
<BR><FONT SIZE=3D2>To: Multiple recipients of list ORACLE-L</FONT>
<BR><FONT SIZE=3D2>Subject: RE: columns with primary key =
constraint</FONT>
</P>
<BR>

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

<P><FONT SIZE=3D2>This is exactly what I was looking for.</FONT>
</P>

<P><FONT SIZE=3D2>I will try to modify this now to include an</FONT>
<BR><FONT SIZE=3D2>&quot;(FK)&quot; for any column with a foreign =
key</FONT>
<BR><FONT SIZE=3D2>constraint.</FONT>
</P>

<P><FONT SIZE=3D2>Thanks for the extra pair of eyes.</FONT>
</P>

<P><FONT SIZE=3D2>Happy New Year all!</FONT>
</P>

<P><FONT SIZE=3D2>Steve</FONT>
</P>

<P><FONT SIZE=3D2>--- Charu Joshi &lt;joshic@mahindrabt.com&gt; =
wrote:</FONT>
<BR><FONT SIZE=3D2>&gt; Hi Steve,</FONT>
<BR><FONT SIZE=3D2>&gt; </FONT>
<BR><FONT SIZE=3D2>&gt; Are you looking for something like =
this?:</FONT>
<BR><FONT SIZE=3D2>&gt; </FONT>
<BR><FONT SIZE=3D2>&gt; SELECT utc.table_name, utc.column_name</FONT>
<BR><FONT SIZE=3D2>&gt; ,DECODE(NVL(ucct.cln, ' '), ' ',' ',</FONT>
<BR><FONT SIZE=3D2>&gt; '(PK-'||ucct.pos||')') is_pk</FONT>
<BR><FONT SIZE=3D2>&gt; FROM&nbsp;&nbsp; user_tab_columns utc,</FONT>
<BR><FONT SIZE=3D2>&gt; (</FONT>
<BR><FONT SIZE=3D2>&gt;&nbsp;&nbsp;&nbsp;&nbsp; select uc.table_name =
tn,</FONT>
<BR><FONT SIZE=3D2>&gt; ucc.constraint_name cn, ucc.column_name =
cln,</FONT>
<BR><FONT =
SIZE=3D2>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp=
;&nbsp; ucc.position pos</FONT>
<BR><FONT SIZE=3D2>&gt;&nbsp;&nbsp;&nbsp;&nbsp; FROM&nbsp;&nbsp; =
user_cons_columns ucc,</FONT>
<BR><FONT =
SIZE=3D2>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp=
;&nbsp; user_constraints uc</FONT>
<BR><FONT SIZE=3D2>&gt;&nbsp;&nbsp;&nbsp;&nbsp; WHERE&nbsp; =
ucc.constraint_name =3D</FONT>
<BR><FONT SIZE=3D2>&gt; uc.constraint_name</FONT>
<BR><FONT SIZE=3D2>&gt;&nbsp;&nbsp;&nbsp;&nbsp; AND&nbsp;&nbsp;&nbsp; =
uc.constraint_type =3D 'P'</FONT>
<BR><FONT SIZE=3D2>&gt; ) ucct</FONT>
<BR><FONT SIZE=3D2>&gt; WHERE utc.table_name =3D ucct.tn (+)</FONT>
<BR><FONT SIZE=3D2>&gt; AND utc.column_name =3D ucct.cln (+)</FONT>
<BR><FONT SIZE=3D2>&gt; AND utc.table_name =3D '&amp;tab_name'</FONT>
<BR><FONT SIZE=3D2>&gt; ORDER BY ucct.pos</FONT>
<BR><FONT SIZE=3D2>&gt; /</FONT>
<BR><FONT SIZE=3D2>&gt; </FONT>
<BR><FONT SIZE=3D2>&gt; Regards,</FONT>
<BR><FONT SIZE=3D2>&gt; Charu</FONT>
<BR><FONT SIZE=3D2>&gt; </FONT>
<BR><FONT SIZE=3D2>&gt; -----Original Message-----</FONT>
<BR><FONT SIZE=3D2>&gt; Sent: Monday, December 30, 2002 2:39 PM</FONT>
<BR><FONT SIZE=3D2>&gt; To: Multiple recipients of list ORACLE-L</FONT>
<BR><FONT SIZE=3D2>&gt; </FONT>
<BR><FONT SIZE=3D2>&gt; Good Morning List,</FONT>
<BR><FONT SIZE=3D2>&gt; </FONT>
<BR><FONT SIZE=3D2>&gt; I am trying to build a query to display =
the</FONT>
<BR><FONT SIZE=3D2>&gt; following for any table</FONT>
<BR><FONT SIZE=3D2>&gt; </FONT>
<BR><FONT SIZE=3D2>&gt; column_name is_pk</FONT>
<BR><FONT SIZE=3D2>&gt; ----------- -----</FONT>
<BR><FONT SIZE=3D2>&gt; COLUMN_1&nbsp;&nbsp;&nbsp; (PK-1)</FONT>
<BR><FONT SIZE=3D2>&gt; COLUMN_2&nbsp;&nbsp;&nbsp; (PK-2)</FONT>
<BR><FONT SIZE=3D2>&gt; COLUMN_3</FONT>
<BR><FONT SIZE=3D2>&gt; COLUMN_4</FONT>
<BR><FONT SIZE=3D2>&gt; COLUMN_5</FONT>
<BR><FONT SIZE=3D2>&gt; COLUMN_6</FONT>
<BR><FONT SIZE=3D2>&gt; </FONT>
<BR><FONT SIZE=3D2>&gt; I can get the two columns with (PK) =
with...</FONT>
<BR><FONT SIZE=3D2>&gt; </FONT>
<BR><FONT SIZE=3D2>&gt; select utc.column_name</FONT>
<BR><FONT SIZE=3D2>&gt; ,decode(ucc.column_name,null,null,'</FONT>
<BR><FONT SIZE=3D2>&gt; (PK-'||ucc.position||')') is_pk</FONT>
<BR><FONT SIZE=3D2>&gt; from&nbsp;&nbsp; user_tab_columns utc,</FONT>
<BR><FONT SIZE=3D2>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; =
user_cons_columns ucc,</FONT>
<BR><FONT SIZE=3D2>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; =
user_constraints uc</FONT>
<BR><FONT SIZE=3D2>&gt; where&nbsp; utc.table_name =3D 'TAB_A'</FONT>
<BR><FONT SIZE=3D2>&gt; and&nbsp;&nbsp;&nbsp; uc.constraint_type =3D =
'P'</FONT>
<BR><FONT SIZE=3D2>&gt; and&nbsp;&nbsp;&nbsp; utc.table_name =3D =
uc.table_name</FONT>
<BR><FONT SIZE=3D2>&gt; and&nbsp;&nbsp;&nbsp; uc.constraint_name (+) =
=3D</FONT>
<BR><FONT SIZE=3D2>&gt; ucc.constraint_name</FONT>
<BR><FONT SIZE=3D2>&gt; and&nbsp;&nbsp;&nbsp; utc.column_name (+) =3D =
ucc.column_name</FONT>
<BR><FONT SIZE=3D2>&gt; order by utc.column_id</FONT>
<BR><FONT SIZE=3D2>&gt; </FONT>
<BR><FONT SIZE=3D2>&gt; but can't seem to get the columns not part =
of</FONT>
<BR><FONT SIZE=3D2>&gt; the</FONT>
<BR><FONT SIZE=3D2>&gt; PK.&nbsp; I suspect I am missing an =
outer-join</FONT>
<BR><FONT SIZE=3D2>&gt; somewhere, but can't seem to figure it =
out.</FONT>
<BR><FONT SIZE=3D2>&gt; </FONT>
<BR><FONT SIZE=3D2>&gt; If possible I would like to put an =
&quot;(FK)&quot; next</FONT>
<BR><FONT SIZE=3D2>&gt; to</FONT>
<BR><FONT SIZE=3D2>&gt; columns that have a FK constraint as =
well.</FONT>
<BR><FONT SIZE=3D2>&gt; </FONT>
<BR><FONT SIZE=3D2>&gt; Thanks.</FONT>
<BR><FONT SIZE=3D2>&gt; </FONT>
<BR><FONT SIZE=3D2>&gt; =3D=3D=3D=3D=3D</FONT>
<BR><FONT SIZE=3D2>&gt; Steve Haas</FONT>
<BR><FONT SIZE=3D2>&gt; Opus Consultants, LLC</FONT>
<BR><FONT SIZE=3D2>&gt; 860.408.1512 (office/fax)</FONT>
<BR><FONT SIZE=3D2>&gt; 860.651.9475 (home)</FONT>
<BR><FONT SIZE=3D2>&gt; steven_haas@opus-consultants.com</FONT>
<BR><FONT SIZE=3D2>&gt; steven.haas@snet.net</FONT>
<BR><FONT SIZE=3D2>&gt; --</FONT>
<BR><FONT SIZE=3D2>&gt; Please see the official ORACLE-L FAQ:</FONT>
<BR><FONT SIZE=3D2>&gt; <A HREF=3D"http://www.orafaq.net" =
TARGET=3D"_blank">http://www.orafaq.net</A></FONT>
<BR><FONT SIZE=3D2>&gt; --</FONT>
<BR><FONT SIZE=3D2>&gt; Author: Steven Haas</FONT>
<BR><FONT SIZE=3D2>&gt;&nbsp;&nbsp; INET: steven.haas@snet.net</FONT>
<BR><FONT SIZE=3D2>&gt; </FONT>
<BR><FONT SIZE=3D2>&gt; Fat City Network Services&nbsp;&nbsp;&nbsp; -- =
858-538-5051</FONT>
<BR><FONT SIZE=3D2>&gt; <A HREF=3D"http://www.fatcity.com" =
TARGET=3D"_blank">http://www.fatcity.com</A></FONT>
<BR><FONT SIZE=3D2>&gt; San Diego, =
California&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; -- Mailing =
list</FONT>
<BR><FONT SIZE=3D2>&gt; and web hosting services</FONT>
<BR><FONT SIZE=3D2>&gt;</FONT>
<BR><FONT =
SIZE=3D2>---------------------------------------------------------------=
------</FONT>
<BR><FONT SIZE=3D2>&gt; To REMOVE yourself from this mailing list, =
send</FONT>
<BR><FONT SIZE=3D2>&gt; an E-Mail message</FONT>
<BR><FONT SIZE=3D2>&gt; to: ListGuru@fatcity.com (note EXACT =
spelling</FONT>
<BR><FONT SIZE=3D2>&gt; of 'ListGuru') and in</FONT>
<BR><FONT SIZE=3D2>&gt; the message BODY, include a line =
containing:</FONT>
<BR><FONT SIZE=3D2>&gt; UNSUB ORACLE-L</FONT>
<BR><FONT SIZE=3D2>&gt; (or the name of mailing list you want to =
be</FONT>
<BR><FONT SIZE=3D2>&gt; removed from).&nbsp; You may</FONT>
<BR><FONT SIZE=3D2>&gt; also send the HELP command for other</FONT>
<BR><FONT SIZE=3D2>&gt; information (like subscribing).</FONT>
<BR><FONT SIZE=3D2>&gt; </FONT>
<BR><FONT SIZE=3D2>&gt;</FONT>
<BR><FONT =
SIZE=3D2>*********************************************************</FONT=
>
<BR><FONT SIZE=3D2>&gt; Disclaimer</FONT>
<BR><FONT SIZE=3D2>&gt; </FONT>
<BR><FONT SIZE=3D2>&gt; This message (including any attachments)</FONT>
<BR><FONT SIZE=3D2>&gt; contains </FONT>
<BR><FONT SIZE=3D2>&gt; confidential information intended for a</FONT>
<BR><FONT SIZE=3D2>&gt; specific </FONT>
<BR><FONT SIZE=3D2>&gt; individual and purpose, and is protected =
by</FONT>
<BR><FONT SIZE=3D2>&gt; law. </FONT>
<BR><FONT SIZE=3D2>&gt; If you are not the intended recipient, =
you</FONT>
<BR><FONT SIZE=3D2>&gt; should </FONT>
<BR><FONT SIZE=3D2>&gt; delete this message and are hereby =
notified</FONT>
<BR><FONT SIZE=3D2>&gt; that </FONT>
<BR><FONT SIZE=3D2>&gt; any disclosure, copying, or distribution =
of</FONT>
<BR><FONT SIZE=3D2>&gt; this</FONT>
<BR><FONT SIZE=3D2>&gt; message, or the taking of any action based =
on</FONT>
<BR><FONT SIZE=3D2>&gt; it, </FONT>
<BR><FONT SIZE=3D2>&gt; is strictly prohibited.</FONT>
<BR><FONT SIZE=3D2>&gt; </FONT>
<BR><FONT SIZE=3D2>&gt;</FONT>
<BR><FONT =
SIZE=3D2>*********************************************************</FONT=
>
<BR><FONT SIZE=3D2>&gt; Visit us at <A =
HREF=3D"http://www.mahindrabt.com" =
TARGET=3D"_blank">http://www.mahindrabt.com</A></FONT>
<BR><FONT SIZE=3D2>&gt; </FONT>
<BR><FONT SIZE=3D2>&gt; </FONT>
<BR><FONT SIZE=3D2>&gt; </FONT>
<BR><FONT SIZE=3D2>&gt; -- </FONT>
<BR><FONT SIZE=3D2>&gt; Please see the official ORACLE-L FAQ:</FONT>
<BR><FONT SIZE=3D2>&gt; <A HREF=3D"http://www.orafaq.net" =
TARGET=3D"_blank">http://www.orafaq.net</A></FONT>
<BR><FONT SIZE=3D2>&gt; -- </FONT>
<BR><FONT SIZE=3D2>&gt; Author: Charu Joshi</FONT>
<BR><FONT SIZE=3D2>&gt;&nbsp;&nbsp; INET: joshic@mahindrabt.com</FONT>
<BR><FONT SIZE=3D2>&gt; </FONT>
<BR><FONT SIZE=3D2>&gt; Fat City Network Services&nbsp;&nbsp;&nbsp; -- =
858-538-5051</FONT>
<BR><FONT SIZE=3D2>&gt; <A HREF=3D"http://www.fatcity.com" =
TARGET=3D"_blank">http://www.fatcity.com</A></FONT>
<BR><FONT SIZE=3D2>&gt; San Diego, =
California&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; -- Mailing =
list</FONT>
<BR><FONT SIZE=3D2>&gt; and web hosting services</FONT>
<BR><FONT SIZE=3D2>&gt;</FONT>
<BR><FONT =
SIZE=3D2>---------------------------------------------------------------=
------</FONT>
<BR><FONT SIZE=3D2>&gt; To REMOVE yourself from this mailing list, =
send</FONT>
<BR><FONT SIZE=3D2>&gt; an E-Mail message</FONT>
<BR><FONT SIZE=3D2>&gt; to: ListGuru@fatcity.com (note EXACT =
spelling</FONT>
<BR><FONT SIZE=3D2>&gt; of 'ListGuru') and in</FONT>
<BR><FONT SIZE=3D2>&gt; the message BODY, include a line =
containing:</FONT>
<BR><FONT SIZE=3D2>&gt; UNSUB ORACLE-L</FONT>
<BR><FONT SIZE=3D2>&gt; (or the name of mailing list you want to =
be</FONT>
<BR><FONT SIZE=3D2>&gt; removed from).&nbsp; You may</FONT>
<BR><FONT SIZE=3D2>&gt; also send the HELP command for other</FONT>
<BR><FONT SIZE=3D2>&gt; information (like subscribing).</FONT>
<BR><FONT SIZE=3D2>&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.net" =
TARGET=3D"_blank">http://www.orafaq.net</A></FONT>
<BR><FONT SIZE=3D2>-- </FONT>
<BR><FONT SIZE=3D2>Author: Steven Haas</FONT>
<BR><FONT SIZE=3D2>&nbsp; INET: steven.haas@snet.net</FONT>
</P>

<P><FONT SIZE=3D2>Fat City Network Services&nbsp;&nbsp;&nbsp; -- =
858-538-5051 <A HREF=3D"http://www.fatcity.com" =
TARGET=3D"_blank">http://www.fatcity.com</A></FONT>
<BR><FONT SIZE=3D2>San Diego, =
California&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; -- Mailing list =
and web hosting services</FONT>
<BR><FONT =
SIZE=3D2>---------------------------------------------------------------=
------</FONT>
<BR><FONT SIZE=3D2>To REMOVE yourself from this mailing list, send an =
E-Mail message</FONT>
<BR><FONT SIZE=3D2>to: ListGuru@fatcity.com (note EXACT spelling of =
'ListGuru') and in</FONT>
<BR><FONT SIZE=3D2>the message BODY, include a line containing: UNSUB =
ORACLE-L</FONT>
<BR><FONT SIZE=3D2>(or the name of mailing list you want to be removed =
from).&nbsp; You may</FONT>
<BR><FONT SIZE=3D2>also send the HELP command for other information =
(like subscribing).</FONT>
</P>

</BODY>
</HTML>
------_=_NextPart_001_01C2B03D.E3524AF0--


------=_NextPartTM-000-5a15269b-8c40-4002-9af7-3698a35ad265
Content-Type: text/plain;
 name="ESPN_Disclaimer.txt"
Content-Transfer-Encoding: 7bit
Content-Disposition: attachment;
 filename="ESPN_Disclaimer.txt"

*********************************************************************This e-mail message is confidential, intended only for the named recipient(s) above and may contain information that is privileged, attorney work product or exempt from disclosure under applicable law. If you have received this message in error, or are not the named recipient(s), please immediately notify corporate MIS at (860) 766-2000 and delete this e-mail message from your computer, Thank you.*********************************************************************1

------=_NextPartTM-000-5a15269b-8c40-4002-9af7-3698a35ad265--

-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net
-- 
Author: Jamadagni, Rajendra
  INET: Rajendra.Jamadagni@espn.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@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).

