/* 獲取字段注釋:*/
select * from
all_col_comments
/*獲取表字段:*/
select *
from user_tab_columns
where table_name='使用者表'
order by column_name
/*獲取表注釋:*/
select *
from user_tab_comments
where table_name='使用者表'
order by table_name
/*獲取字段注釋:*/
select *
from user_col_comments
where table_name='使用者表'
order by column_name
/* 獲取表:*/
select table_name from user_tables; //當前使用者的表
select table_name from all_tables; //所有使用者的表
select table_name from dba_tables; //包括系統表
select table_name from dba_tables where owner='system'
/* 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_columns:
table_name,column_name,data_type,data_length,data_precision,data_scale,nullable,column_id等
all_tab_columns :
ower,table_name,column_name,data_type,data_length,data_precision,data_scale,nullable,column_id等
dba_tab_columns:
ower,table_name,column_name,data_type,data_length,data_precision,data_scale,nullable,column_id等 */
/* 獲取表注釋:*/
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 all_tab_cols cols where cols.owner = 'system' (擁有者)
and cols.table_name = '使用者表' /*
user_col_comments:table_name,column_name,comments
相應的還有dba_col_comments,all
_col_comments,這兩個個比user_col_comments多了ower列。 */
如何檢視oracle資料庫中的所有表
覺得你應該先弄清楚oracle的常規資料字典的結構,像9i裡的常規資料字典中物件名稱就有以user,all,dba為字首的物件。以user為例,我們查該物件下有些什麼表,就應該執行下列的語句 sql select table name from user tables 類似的,你可以進行替換。如果你...
檢視oracle資料庫所有表的主外來鍵的關係
在日常資料維護中,經常刪除資料,要是這些資料所在的表有外來鍵關聯,又不設定成級聯刪除的話,就需要先清空子表的相關資料了。要找出所有的主外來鍵的關聯是乙個比較頭疼的事情,下面給出乙個例子,可以得到某使用者下的所有主外來鍵關係 select pk table 主鍵表,pk col 主鍵表id,fk ta...
Oracle資料庫 查詢所有表
1.查詢當前資料庫下的所有表 select from all tables where owner test 注 all tables查出來是查得所有使用者下的表,當然也包括你登入的用下的表,然後加乙個where你要查的那個使用者名稱就可以了。記得使用者名稱要大寫 2.查詢當前資料庫下某個例項資料庫...