Forum Replies Created

Viewing 4 posts - 1 through 4 (of 4 total)

  • RE: Clustered PK and deadlocks

    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...

  • RE: How to find out the identity coloumn of a table.

    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 =...

  • RE: Clustered PK and deadlocks

    Sorry, I post my thread onto wrong forum, I post it into SQL Server 7, 2000 administration.

  • RE: Can''''t start the SQLAGENT

    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...

Viewing 4 posts - 1 through 4 (of 4 total)