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: Reading column comments

Re: Reading column comments

From: nobody <nobody_at_nowhere.com>
Date: Tue, 31 Dec 2002 01:04:26 GMT
Message-ID: <u26Q9.98968$E_.9097@news02.bloor.is.net.cable.rogers.com>


Try
select comments from dba_col_comments where table_name = 'ABC';

"Dskdrv" <dskdrv_at_cs.com> wrote in message news:20021230184451.08041.00000396_at_mb-fw.news.cs.com...
> Question about column comments.
>
> SQL> create table abc
> 2 ( id1 int,
> 3 id2 int);
>
> SQL> comment on column abc.id1 is 'a comment';
>
>
> SQL> select comments from dba_col_comments where table_name = 'abc';
>
> The comment for abc.id1 is not found with the select.
> Question : Should the comment be in dba_col_comments ?
>
> Thanks
>
Received on Mon Dec 30 2002 - 19:04:26 CST

Original text of this message

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