--可以把外键约束暂时停止了,再删除数据,删除后再恢复外键约束
具体语句是,sql2000中用法
alter table 表的名字
nochek constraint 外键约束名字
truncate table 表的名字
alter table 表的名字
check constraint 外键约束名字 --
-- 停止c_MxbCardInfo所有约束
alter table c_MxbCardInfo nocheck constraint all
-- 恢复所有约束
alter table c_MxbCardInfo check constraint all