1.可以用 powerdesigner 或者 erwin 做反向工程2.离线、联线就可以

解决方案 »

  1.   

    comment on column tab_name.column_name
    is 'memo'
      

  2.   

    select * from user_tab_columns where table_name=''
      

  3.   

    -- get columns comments
    select * from user_col_comments;-- get tables comments
    select * from user_tab_comments table_type='TABLE';
      

  4.   

    系统环境: 
    1、数据库: Oracle 8i R3 (8.1.7) for NT 企业版 说明: SQL>comment on table 表 is '表注释'; 注释已创建。 SQL>comment on column 表.列 is '列注释'; 注释已创建。 SQL> select * from user_tab_comments where comments is not null; SQL> select * from user_col_comments where comments is not null; 轉自http://www.oracle.com.cn/cgi-bin/topic_show.cgi?id=4832&h=1&bpg=1&age=30