Viewing 4 posts - 1 through 4 (of 4 total)
Hi Todd,
deadlocks aren't during insert,
I have a table A(IDA, ColA) and a table B(IDB, FKA, ColB) which reference table A through a FK FKA.
My deadlock appears when I...
May 13, 2006 at 2:13 am
Hi,
hope it will help you
------------------------------------------
declare @TblName sysname
set @tblName = 'Your table name'
-- show identity col name
select syscolumns.name from sysobjects
inner join syscolumns on sysobjects.id = syscolumns.id
where sysobjects.name =...
May 11, 2006 at 5:28 am
Sorry, I post my thread onto wrong forum, I post it into SQL Server 7, 2000 administration.
May 11, 2006 at 2:08 am
Hi, we have a similar problem under windows 2000 sp4 with SQL Server standard sp4 onto a muti processor server.
The problem was due to a server option under processor tab -> "Use...
May 11, 2006 at 1:56 am
Viewing 4 posts - 1 through 4 (of 4 total)