Oracle存储表注释在哪里?

时间:2015-01-14 08:43:05

标签: sql oracle

以防万一这个问题不够明确。

我有大多数表评论过这​​样的东西:

COMMENT ON TABLE owner.employee IS 'Stores the blabla';

通过查看表格评论来搜索我的数据库会很高兴(有2k表,而不是我的错)

2 个答案:

答案 0 :(得分:6)

系统视图ALL_TAB_COMMENTSUSER_TAB_COMMENTS包含表格评论,ALL_COL_COMMENTSUSER_COL_COMMENTS包含列评论。

答案 1 :(得分:1)

您可以尝试以下声明:

-- All tables inside my user  
select table_name, comments from user_tab_comments

-- All tables for all users:  
select table_name, comments from all_tab_comments