Oracle常用查詢(一)

2022-08-30 20:48:15 字數 1286 閱讀 4174

select

t.*from

product_component_version t;

--檢視

oracle

產品元件版本

--同義詞

select

t.*from

user_jobs t;

--dbms_job

--

查詢外來鍵

select

a.constraint_name 外來鍵約束名,

b.table_name 外來鍵所在表,

b.column_name 外來鍵所在列,

a.r_constraint_name 關聯主鍵名,

c.table_name 關聯表,

c.column_name 關聯表列名,

a.status,

a.validated

from

user_constraints a, user_cons_columns b, user_cons_columns c

where1=

1and a.constraint_type =

upper('r'

)

and a.constraint_name =

b.constraint_name

and a.r_constraint_name =

c.constraint_name

andexists (select

1from

user_tables ut

where ut.table_name =

a.table_name

and ut.num_rows >0)

and1=

1---and b.table_name=upper('t_user')---表有哪些外來鍵

and c.table_name =

upper('

t_user

') --

-表被哪些外來鍵引用

order

by a.table_name, a.constraint_type;

oracle常用查詢

查詢庫表中大資料量的表 select owner,segment name,sum bytes 1024 1024 m from dba segments where segment type in table index and owner bomc2 group by segment name,...

oracle常用查詢

select from dba users 檢視所有使用者 select from user all tables 查詢當前使用者表空間 select from user source 查詢所有函式和儲存過程 select from v session 檢視當前使用者連線 select from s...

Oracle常用查詢

顯示資料庫所有分割槽表的資訊 dba part tables 顯示當前使用者可訪問的所有分割槽表資訊 all part tables 顯示當前使用者所有分割槽表的資訊 user part tables 顯示表分割槽資訊 顯示資料庫所有分割槽表的詳細分割槽資訊 dba tab partitions 顯...