Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.server -> REPOST: Re: View Column Definition?
Try:
SELECT column_name
FROM dba_tab_columns
WHERE table_name = 'TEMP_V1';
--Fernão
<1443131_at_usenetplanet.com> wrote in message news:3c51b9f2.248661796_at_64.154.60.165...
Let's say that I have created a simple view like this:
create ora replace view TEMP_V1(c1)
as
select column1 from TEMP_T1;
Looking up DBA_VIEWS shows the view SQL body definition (select column1 from TEMP_T1). However, I do not know where the column definition (c1) is stored. Where can I find it? Above is very simple example, but for big views with many columns, I need to find out where column definitions are. Thank you in advance.
This message was cancelled from within The Unacanceller's glorious new software, Lotus 1-2-3 For Rogue Cancellers. Received on Fri Jan 25 2002 - 23:14:01 CST
![]() |
![]() |