Viewing 2 posts - 1 through 2 (of 2 total)
You could use a cursor to solve the problem:
declare @jobs table (street varchar(100),seq int)
insert into @jobs
select 'A',1 union all
select 'A',2 union all
select 'B',11 union all
select 'B',12 union all
select 'C',33...
March 16, 2010 at 2:09 am
#1134286
Hi Cyberspy,
read this article: http://msdn.microsoft.com/en-us/library/ms175523%28v=SQL.100%29.aspx (Errors During Transaction Processing)
Hope this helps
March 15, 2010 at 6:11 am
#1133620