作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我试过了 :
select * from user_tab_comments;
TABLE_NAME TABLE_TYPE COMMENTS
BIN$IN1vjtqhTEKcWfn9PshHYg==$0 TABLE Résultat d'intégration d'une photo numérisée
BIN$PUwG3lb3QoazOc4QaC1sjw==$0 TABLE Motif de fin d'agrément de maître de stage
select * from user_tables;
TABLE_NAME 未“加密”。
最佳答案
由于 10g Oracle 在我们发出 DROP TABLE 语句时不会立即删除表。相反,它像这样重命名它们 BIN$IN1vjtqhTEKcWfn9PshHYg==$0
并将它们放入回收站。这允许我们恢复我们不打算删除的表。 Find out more .
回收站中的表仍然是表,因此它们显示在 ALL_TABLES 和类似 View 中。因此,如果您只想查看仅与事件(未删除)表相关的评论,则需要按表名进行过滤:
select * from all_tab_comments
where substr(table_name,1,4) != 'BIN$'
/
"I can't believe there isn't a flag column so you could do and is_recycled = 0 or something. "
select tc.*
from all_tab_comments tc
join all_tables t
on tc.owner = t.owner
and tc.table_name = t.table_name
where t.dropped = 'NO'
/
关于sql - 如何在 Oracle 中通过 SQL 获取表注释?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16567129/
我是一名优秀的程序员,十分优秀!