Forum Replies Created

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

  • RE: Database Tuning Advisor not giving recommendations for large query

    Do you use 'sub-query'? from my try, DTA doesn't drill down into sub-query. I cheated the DTA while tuning by moving sub-query to main query, DTA gave different result.

  • RE: SQL 2008 Alerts for blocking

    set nocount on;

    declare @bufferSPID table (EventType nvarchar(30), Parameter smallint, EventInfo nvarchar(4000));

    declare @bufferBLOCKED table (EventType nvarchar(30), Parameter smallint, EventInfo nvarchar(4000));

    declare @ret table (spid int, spidEventInfo nvarchar(4000), blocked int, blockedEventInfo nvarchar(4000), hostname...

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