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

Home -> Community -> Usenet -> c.d.o.misc -> Re: How to get info on view columns' source (field) ?

Re: How to get info on view columns' source (field) ?

From: Scott Mattes <Scott_at_TheMattesFamily.ws>
Date: Fri, 11 Oct 2002 13:02:52 GMT
Message-ID: <0_zp9.22047$m92.4975974@news1.news.adelphia.net>


Delphi, now there is a RAD!

The view ALL_VIEWS contains the source used to create the view (its the only place that I know of for the information). 'Just' parse it out to find the table/s and field/s of the view, then look in ALL_TAB_COLUMNS for the information you want.

"Bjørge Sæther" <bjorge_at_itte.no> wrote in message news:1ccf751c.0210110404.4995841a_at_posting.google.com...
> Hi !
>
> (Ora 8.1.6)
>
> Given this table:
>
> CREATE TABLE PERSON (
> ID NUMBER(38) NOT NULL PRIMARY KEY,
> FIRST_NAME VARCHAR2(50),
> LAST_NAME VARCHAR2(50)
> )
>
> ...and this view:
>
> CREATE VIEW PERSON_LIST AS
> SELECT
> ID,
> FIRST_NAME||' '||LAST_NAME NAME
> FROM
> PERSON
>
> ...I want to get this information from Oracle about the view (format
> is not important, it is for internal use in a Delphi application):
>
> FIELD SOURCE
> -------------
> ID PERSON.ID
> NAME (CALCULATED)
>
> ...??
>
> Thanks in advance !
>
> Bjørge
Received on Fri Oct 11 2002 - 08:02:52 CDT

Original text of this message

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