oracle 資料倒庫 字段注釋維護

2021-05-24 08:55:44 字數 462 閱讀 4889

在plsql中執行以下語句

連線資料庫,執行

【維護字段注釋】

select 'comment on column '||table_name||'.'||column_name||' is '''||comments||''';'  from user_col_comments 

【維護表注釋】

select 'comment on table '||table_name||' is '''||comments||''';'  from user_tab_comments  where comments is not null

點export queryresult,把匯出的結果,使用tsv方式儲存。儲存檔案字尾改為txt。如:c:/comment.txt (注分別匯出)

開啟另外乙個資料庫 登入sqlpluss

執行@ c:/comment.txt,即可把注釋成功寫入另乙個庫中。

oracle資料庫查詢字段注釋等

1 給表加注釋 comment on table land.landsellmend is 補辦出讓 2 檢視表的comment select from user tab comments where table name landsellmend 3 給字段加注釋 comment on colum...

Oracle資料庫查詢所有表 欄位和注釋

1.表獲取 對於獲取表資訊,可供選擇的表有 select from user tables 當前使用者的表 select from all tables 所有使用者的表 select from dba tables 包括系統表 select from dba tables where owner t...

oracle 查詢表字段明細 字段注釋 表注釋

查詢表字段明細 select column name,data type,data length,data precision data scale from all tab columns where table name tablename 字段注釋 select from user col c...