设为首页收藏本站language 语言切换
查看: 2970|回复: 4
收起左侧

[注意] 【SQL】如何获得表及字段的说明信息(comment)的创建脚本

[复制链接]
发表于 2012-2-3 15:32:51 | 显示全部楼层 |阅读模式
写了一个简单实用的的SQL脚本,生成数据库中具体用户中的注释信息(COMMMENT)的创建脚本。记录在这里,方便查询和参考。
当迁移到测试数据库后发现注释信息均为乱码后可以使用这个方法快速的恢复。

1.
查询表级别的注释信息
select 'COMMENT ON TABLE '||table_name||' IS '''||comments||''';' fromuser_tab_comments;

2.
查询表中列的注释信息
select 'COMMENT ON COLUMN '||table_name||'.'||COLUMN_NAME||' IS'''||COMMENTS||''';' from user_col_comments;

以上提到了两个视图,一个是user_tab_comments,另一个是user_col_comments,这两个视图分别记录了表一级别的和行一级别的注释信息。
oralce
官方文档中是这样描述的:

ALL_TAB_COMMENTS
ALL_TAB_COMMENTSdisplays comments onthe tables and views accessible to the current user.
Related Views
·        DBA_TAB_COMMENTSdisplays comments onall tables and views in the database.
·        USER_TAB_COMMENTSdisplays comments onthe tables and views owned by the current user. This view does not display theOWNERcolumn.
        
Column
         
Datatype
         
NULL
         
Description
     
      
OWNER
      
VARCHAR2(30)
      
NOT NULL
      
Owner of the  object
   
     
TABLE_NAME
      
VARCHAR2(30)
      
NOT NULL
      
Name of the  object
   
     
TABLE_TYPE
      
VARCHAR2(11)
        
Type of the  object
   
     
COMMENTS
      
VARCHAR2(4000)
        
Comment on  the object
   
ALL_COL_COMMENTS
ALL_COL_COMMENTSdisplays comments on the columnsof the tables and views accessible to the current user.
Related Views
·        DBA_COL_COMMENTSdisplays comments onthe columns of all tables and views in the database.
·        USER_COL_COMMENTSdisplays comments onthe columns of the tables and views owned by the current user. This view doesnot display theOWNERcolumn.
        
Column
         
Datatype
         
NULL
         
Description
     
      
OWNER
      
VARCHAR2(30)
      
NOT NULL
      
Owner of the  object
   
     
TABLE_NAME
      
VARCHAR2(30)
      
NOT NULL
      
Name of the  object
   
     
COLUMN_NAME
      
VARCHAR2(30)
      
NOT NULL
      
Name of the  column
   
     
COMMENTS
      
VARCHAR2(4000)
        
Comment on  the column
   

-- The End --

发表于 2012-2-15 19:08:27 | 显示全部楼层
沙发 2012-2-15 19:08:27 回复 收起回复
回复 支持 反对

使用道具 举报

发表于 2012-2-15 19:08:54 | 显示全部楼层
板凳 2012-2-15 19:08:54 回复 收起回复
回复 支持 反对

使用道具 举报

发表于 2012-5-16 15:58:13 | 显示全部楼层
look
地板 2012-5-16 15:58:13 回复 收起回复
回复 支持 反对

使用道具 举报

发表于 2013-3-5 15:04:59 | 显示全部楼层
看帖子的要发表下看法
5# 2013-3-5 15:04:59 回复 收起回复
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 论坛注册

本版积分规则

QQ|Archiver|手机版|小黑屋|sitemap|鸿鹄论坛 ( 京ICP备14027439号 )  

GMT+8, 2025-2-3 06:57 , Processed in 0.063985 second(s), 11 queries , Redis On.  

  Powered by Discuz!

  © 2001-2025 HH010.COM

快速回复 返回顶部 返回列表