Oracle如何查看所有表和字段以及表注釋和字段注釋?其實很簡單?。?/h1>
作者個人研發(fā)的在高并發(fā)場景下,提供的簡單、穩(wěn)定、可擴展的延遲消息隊列框架,具有精準的定時任務和延遲隊列處理功能。自開源半年多以來,已成功為十幾家中小型企業(yè)提供了精準定時調(diào)度方案,經(jīng)受住了生產(chǎn)環(huán)境的考驗。為使更多童鞋受益,現(xiàn)給出開源框架地址:
https://github.com/sunshinelyz/mykit-delay
寫在前面
小伙伴們按照我寫的文章順利安裝好Oracle數(shù)據(jù)庫后,又在微信上問我:我想查看Oracle數(shù)據(jù)庫中所有表和字段以及表注釋和字段的注釋,我該怎么操作呢?看著小伙伴們這么高的學習熱情,這些問題我都安排上了!這不,解決方案來了!
獲取表
- #當前用戶擁有的表
- select table_name from user_tables;
- #所有用戶的表
- select table_name from all_tables;
- #包括系統(tǒng)表
- select table_name from dba_tables;
- select table_name from dba_tables where owner='用戶名'
- #描述當前用戶有訪問權(quán)限的所有對象
- ALL_OBJECTS describes all objects accessible to the current user.
- #描述了數(shù)據(jù)庫中的所有對象
- DBA_OBJECTS describes all objects in the database.
- #描述了當前用戶所擁有的所有對象
- USER_OBJECTS describes all objects owned by the current user.
- 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 * from user_tab_columns where Table_Name='用戶表';
- select * from all_tab_columns where Table_Name='用戶表';
- select * from dba_tab_columns where Table_Name='用戶表';
獲取表注釋
- user_tab_comments;表注釋
- select * from user_tab_comments
user_tab_comments:table_name,table_type,comments。
相應的還有dba_tab_comments,all_tab_comments,這兩個比user_tab_comments多了ower列。
獲取字段注釋
- select * from user_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視圖顯示已經(jīng)為表中的列輸入的注釋。這些注釋通過comment命令添加到數(shù)據(jù)庫中。user_col_comments視圖包含3 列:
- Table_Name 表名或視圖名
- Column_Name 列名
- Comments 已經(jīng)為該列輸入的注釋
本文轉(zhuǎn)載自微信公眾號「冰河技術(shù)」,可以通過以下二維碼關(guān)注。轉(zhuǎn)載本文請聯(lián)系冰河技術(shù)公眾號。