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

Reading column comments

From: Dskdrv <dskdrv_at_cs.com>
Date: 30 Dec 2002 23:44:51 GMT
Message-ID: <20021230184451.08041.00000396@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 - 17:44:51 CST

Original text of this message

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