你在MMC中删除时,因为它要去找能确定你要删除的记录的条件,就象
delect table where aa=xx and bb=YY
但是这个条件在表中有两条记录,所以系统认为你的条件不充分,所以它不知道应该把两条中的哪一条删除,所以出现上面的提示。
TRY:
select * into #temp from table where ........  --条件选出那两条
delete table where.......insert into table 
   select top1 * from #temp