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: table relationships

Re: table relationships

From: Daniel Morgan <damorgan_at_x.washington.edu>
Date: Sun, 22 Aug 2004 10:07:24 -0700
Message-ID: <1093194494.325919@yasure>


Jeff wrote:

> When you connect to an Oracle database with Access and ADO, is there a way
> to get information on the Oracle table relationships?
>
> Jeff

Query the data dictionary views. Run this query for a list of them.

SELECT view_name
FROM all_views
WHERE view_name LIKE 'ALL%';

But why connect to Oracle with MS Access? An overwhelming desire to use the worst possible tool to do the job?

-- 
Daniel A. Morgan
University of Washington
damorgan_at_x.washington.edu
(replace 'x' with 'u' to respond)
Received on Sun Aug 22 2004 - 12:07:24 CDT

Original text of this message

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