Viewing 3 posts - 1 through 3 (of 3 total)
Your best bet is to use a seperate identity column to increment.
You can alter your table as follows:
alter table
my_table
add
my_idcol numeric identity(1,1)
go
If you apply this to the table it will add...
March 30, 2004 at 2:58 pm
#501190
In similar situations I've found that
BACKUP LOG mydb WITH NO_LOG or WITH TRUNCATE_ONLY
Works very satisfactorily
March 30, 2004 at 2:33 pm
#501179
I had the same problem a while ago on our system with a spid that wouldn't die.
Turned out it was the result of an aborted operation.
The only way to kill...
March 30, 2004 at 2:19 pm
#501174