-- PK 명칭과 해당 테이블을 select 해온다. select t.name, p.name from sysobjects p, sysobjects t where p.xtype = 'PK' and t.id = p.parent_obj and t.xtype = 'U' order by 1 go --FK 명칭과 해당 테이블을 select 해온다. select t.name, f.name from sysobjects f, sysobjects t where f.xtype = 'F' and f.parent_obj = t.id go -- dbo 소유의 모든 FK 를 찾아서 삭제해줌. DECLARE fk_con CURSOR FOR select t.name, f.name from sysobjects f, sysobjects ..