select object_name(id) from ( select parent_object_id id, count(*) kc from sys.foreign_key_columns a group by a.parent_object_id ) r where r.kc = (select count(*) from sys.columns c where c.object_id = r.id)