Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Mailing Lists -> Oracle-L -> RE: Db_block_size
Hi Umesh...
SQL> create table x(y varchar2(20));
Table created.
SQL> comment on table x is 'it is test';
Comment created.
SQL> comment on column x.y is 'it is a test column';
Comment created.
SQL> select * from all_tab_comments where 2 table_name='X';
OWNER TABLE_NAME TABLE_TYPECOMMENTS
------------------------------ ------------------------------ -----------
LOGOS X TABLEit is test
SQL> select * from all_col_comments where
column_name='Y' and table_name='X'
SQL>
OWNER TABLE_NAMEReceived on Thu Jun 08 2000 - 13:59:51 CDT
------------------------------ ------------------------------
![]() |
![]() |