oracle數(shù)據(jù)庫系統(tǒng)的一些相關(guān)表
查詢表信息
1.DBA_ALL_TABLES 描述數(shù)據(jù)庫中所有對(duì)象以及相關(guān)的表
2.all_all_tabls -描述數(shù)據(jù)庫中所有的用戶可以訪問的對(duì)象以及相關(guān)的表
3.user_all_tables --描述數(shù)據(jù)庫空當(dāng)前用戶擁有的對(duì)象以及相關(guān)的表
4.DBA_tabbles --描述數(shù)據(jù)庫中相關(guān)的表
5.all_tables--描述數(shù)據(jù)庫中所有的用戶可以訪問的相關(guān)的表
5.user_tables--描述數(shù)據(jù)庫中當(dāng)前用戶擁有的相關(guān)的表
查詢列信息?
1.DBA_TAB_COLUMNS --描述數(shù)據(jù)庫中所有表的列屬性
2.all_tab_columns--描述數(shù)據(jù)庫中所有用戶可以訪問的表的列屬性
3.user_tab_columns--描述數(shù)據(jù)庫總當(dāng)前yoghurt擁有的表的列屬性
查詢約束信息
1.dba_constraints ?---描述數(shù)據(jù)庫中所有表的約束的屬性
2.dba_cons_columns ?---包含在DBA_constraints約束定義中的 可訪問的列的信息
3.all_constraints--描述數(shù)據(jù)庫中所有用戶可以訪問的表的約束的屬性
4.all_cons_columns--包含在all_constraints約束定義中的可訪問的列的屬性
5.user_cons_columns--包含在user_constraints 約束的另一種的 可訪問的列的信息
查詢序列信息
1.dba_sequences --數(shù)據(jù)庫中所有序列的描述
2.all_sequences --描述數(shù)據(jù)庫總所有用戶可以訪問的序列的描述
3.user_sequences --描述數(shù)據(jù)庫中所有當(dāng)前用戶擁有的序列的描述
查詢索引信息
1.dba_indexes ?--描述數(shù)據(jù)庫中所有的索引的屬性
2.all_indexes--描述數(shù)據(jù)庫中所有用戶可以訪問的索引的屬性
3.user_indxes--描述數(shù)據(jù)庫中所有 當(dāng)前用戶擁有索引的索引的屬性
merger into t1 using t
on (t.owner=t1.owner and t.object_name =t1.table_naem and?
t.objct_type=t1.object_type)
when ?matched then update set t1.id=t.id
when not matched then insert values(t.id,t.owner,t.object_name,t.objct_type);