(轉)oracle資料庫中所有外來鍵約束失效SQL語句

mahanso發表於2011-01-19
begin
  for item in (select * from user_constraints a where a.constraint_type = 'R') loop
  execute immediate 'alter table ' || item.table_name || ' disable constraint ' || item.constraint_name;
  end loop;
end;
/

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/12272958/viewspace-684283/,如需轉載,請註明出處,否則將追究法律責任。

相關文章