[font="Arial"]
May I suggest use set rowcount 1...for example:
create table tlb_test
( tname varchar(20) null,
tother int null )
insert tlb_test
select 'this', 1 union all
select 'This', 2 union all
select 'this', 1 union all
select 'nope', 3
select * from tlb_test
select * from tlb_test
where tother = 1
and tname = 'this'
set rowcount 1
go
delete tlb_test
where tother = 1
and tname = 'this'
go
set rowcount 0
go
[/font]