Forum Replies Created

Viewing 15 posts - 31 through 45 (of 112 total)

  • RE: NOLOCK/Isoloatin Level for READONLY database

    By setting the DB to readonly no Shared-Lock is requested anymore so there 's a performance benefit in doing that.

    and the syntax is so easy

    ALTER DATABASE [DB] SET ...

  • RE: Plan Cache Performance

    SQLSACT (9/17/2012)


    pooyan_pdm (9/17/2012)


    You should use the actual counter values from the sys.dm_os_performance counters for the three mentioned counters and for checking wheather the cache is bloating or not you...

  • RE: Plan Cache Performance

    You should use the actual counter values from the sys.dm_os_performance counters for the three mentioned counters and for checking wheather the cache is bloating or not you can check...

  • RE: Plan Cache Performance

    Initial Compilation='SQL Compilations/sec'-'SQL ReCompilations/sec'

    plan reuse= ( 'Batch Requests/sec' - 'Initial Compilation')/'Batch Requests/sec'

    this one is more accurate

  • RE: Reporting services+sharepoint

    Thanx for your reply but I it's not the case it's well less than the threshold.

  • RE: Wait time on server replies - How to improve?

    I don't know what's inside the proc can you send the actual execution plan ?

    try updating the statistics of the tables involved in the query.and also try executing the query...

  • RE: page writes/sec high on mirrored server

    If the Mirror server is dedicated to the mirror db and no other IO intensive process is running on it , then your guess logicaly make scence. But in larger...

  • RE: page writes/sec high on mirrored server

    It depends on several factors.First of all to the Principal database transaction load, if this value is almost the same at the principal server it's totally normal.Then to the disk...

  • RE: index usage stats

    You can have user_seeks and range_scans on a non unique index at the same time when you're looking for a column of an index , I guess the reason there's...

  • RE: index usage stats

    Lynn Pettis (9/6/2012)


    pooyan_pdm (9/6/2012)


    when the index key is non-unique even when you're looking for a single value(a user_seek) sql server performs a range_sacan because there might be more than one...

  • RE: index usage stats

    when the index key is non-unique even when you're looking for a single value(a user_seek) sql server performs a range_sacan because there might be more than one records with that...

  • RE: index usage stats

    Thanx for your answer anyway. but it's a general question nothing to do with the database details.what I asked is how can we have singleton_lookups on an non-unique index while...

  • RE: index usage stats

    this index also has some column included in it's leaf level.

    Both col1,col2 are non-unique so even if the engine is looking for a single combination of them it should go...

  • RE: index usage stats

    any suggestion?;-)

  • RE: update statistics failed because of lock time out

    Use the sys.dm_exec_requests DMV to see what process is blocking this session (blocking_session-id) and using the sql_handle column of the blocking session you can see the Body of that session

Viewing 15 posts - 31 through 45 (of 112 total)