Oracle-9i

用於列出沒有主鍵的表的腳本 oracle 9i

  • September 14, 2015

我正在尋找一個腳本來查找我的數據庫中沒有主鍵的表。

select table_name from user_tables
minus
select table_name 
from all_constraints
where (constraint_type ='P' ) and owner='dbSID_here'

有一個更簡單的方法:

SELECT table_name FROM user_tables WHERE table_name NOT IN (SELECT table_name FROM user_constraints WHERE constraint_type =‘P’);

這裡

引用自:https://dba.stackexchange.com/questions/76554