1818IP-服务器技术教程,云服务器评测推荐,服务器系统排错处理,环境搭建,攻击防护等

当前位置:首页 - 数据库 - 正文

君子好学,自强不息!

作者个人研发的在高并发场景下,提供的简单、稳定、可扩展的延迟消息队列框架,具有精准的定时任务和延迟队列处理功能。自开源半年多以来,已成功为十几家中小型企业提供了精准定时调度方案,经受住了生产环境的考验。为使更多童鞋受益,现给出开源框架地址:

https://github.com/sunshinelyz/mykit-delay

写在前面

小伙伴们按照我写的文章顺利安装好Oracle数据库后,又在微信上问我:我想查看Oracle数据库中所有表和字段以及表注释和字段的注释,我该怎么操作呢?看着小伙伴们这么高的学习热情,这些问题我都安排上了!这不,解决方案来了!

获取表

#当前用户拥有的表
selecttable_namefromuser_tables;
#所有用户的表
selecttable_namefromall_tables;
#包括系统表
selecttable_namefromdba_tables;
selecttable_namefromdba_tableswhereowner='用户名'
#描述当前用户有访问权限的所有对象
ALL_OBJECTSdescribesallobjectsaccessibletothecurrentuser.
#描述了数据库中的所有对象
DBA_OBJECTSdescribesallobjectsinthedatabase.
#描述了当前用户所拥有的所有对象
USER_OBJECTSdescribesallobjectsownedbythecurrentuser.
  • user_tables:TABLE_NAME,TABLESPACE_NAME,LAST_ANALYZED等
  • dba_tables:ower,table_name,tablespace_name,last_analyzed等
  • all_tables:ower,table_name,tablespace_name,last_analyzed等
  • all_objects:ower,object_name,subobject_name,object_id,created,last_ddl_time,timestamp,status等

获取表字段

select*fromuser_tab_columnswhereTable_Name='用户表';
select*fromall_tab_columnswhereTable_Name='用户表';
select*fromdba_tab_columnswhereTable_Name='用户表';

获取表注释

user_tab_comments;表注释
select*fromuser_tab_comments

user_tab_comments:table_name,table_type,comments。

相应的还有dba_tab_comments,all_tab_comments,这两个比user_tab_comments多了ower列。

获取字段注释

select*fromuser_col_comments
user_col_comments:table_name,column_name,comments

相应的还有dba_col_comments,all_col_comments,这两个比user_col_comments多了ower列。

user_col_comments;表字段注释(列注释)

user_col_comments视图显示已经为表中的列输入的注释。这些注释通过comment命令添加到数据库中。user_col_comments视图包含3 列:

  • Table_Name 表名或视图名
  • Column_Name 列名
  • Comments 已经为该列输入的注释

本文来源:1818IP

本文地址:https://www.1818ip.com/post/10905.html

免责声明:本文由用户上传,如有侵权请联系删除!

发表评论

必填

选填

选填

◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。