Forum Replies Created

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

  • RE: Avoiding Deadlocks

    Whenever your server is started run:

    DBCC TRACEON(1204,3605,-1)

    This will put all the details that caused the deadlock into your SQL Server Logs, including the SP's and line numbers that caused it.

    PlanetJam...

  • RE: Can I avoid a cursor

    Do a SELECT with a WHILE loop.

    PlanetJam Media Group

  • RE: using more than 2 GB memory

    We just scaled-up our db server, and went to 4 1.6 ghz processors (up from 750 mhz) with 8 gigs RAM (up from 4)

    I did both PAE and 3GB and...

  • RE: Deadlock detection

    Unfortunately, I was on the phone with MS Support Friday hunting this. The actual syntax per MS is:

    DBCC TRACEON(1204,3605,-1)

    1204 = Trace Deadlocks

    3605 = Write to Server Log file

    -1 ...

  • RE: Returning a Subset of a Recordset

    This is ludicrous...the same thing can be accomplished without the use of a cursor.

    PlanetJam Media Group

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