Forum Replies Created

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

  • RE: deadlock

    dbcc traceon (1204, 3605, -1)

    go

    dbcc tracestatus(-1)

    go

    The -T1204 startup parameter collects information about the process and the resources when the deadlock detection algorithm encounters a deadlock. The -T3605 startup parameter writes...

  • RE: Fill mising values

    SELECT TOP 1 * FROM #Parameters

    WHERE

    ParameterTimestamp <= '2012-07-16 15:00:00' -- timestamp

    AND ParameterID='A1' -- parameterId

    ORDER BY ParameterTimestamp DESC

  • RE: Transact Newb - What am I doing wrong?

    Error block is missing for the statement GOTO Error.

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