Forum Replies Created

Viewing 15 posts - 8,446 through 8,460 (of 22,214 total)

  • RE: Doubt on Dynamic SQL

    balasach82 (4/8/2014)


    Awesome. A job ws running which was running the query. Thanks for pointing to the problem.

    So, its 100% sure that an sp_execsql does not pass control untill the query...

  • RE: Recommend me Best tools for monitoring SSIS, SSRS and SSAS

    There is no right answer for this. It's very subjective. Also, you'll not find any tool that monitors all those services equally well. Further, some of the best tools for...

  • RE: SQL SERVER VERSION

    Performance is most often related to the code or the structure. But, sometimes it can be other things. For example, do you have any process for maintaining statistics on your...

  • RE: Extended Events

    Extended Events can be used to audit just about anything... BUT, if you have 'sa' privs on the server, you can turn off ex events. If you absolutely have to...

  • RE: DBCC and Compression

    Shrinking the file or the database is reclaiming space that was allocated in the database, but is not currently in use. Compression is taking a value and making it smaller...

  • RE: How do I recover a db corrupted more than 1 full backup ago, and apply all subsequent diff backups???

    Are you sure the log backups and the full/differential are from the same database on the same server? There has to be a log that overlaps with the LSN on...

  • RE: Index Rebuild for heavy table

    You could try doing the insert into the new table without having the key in place and then apply the key after the data is loaded. In some situations you...

  • RE: Long-running query with no impact on the server

    sys.dm_exec_requests will show the execution of the query and any waits that it's experiencing as well as any blocks.

    I'd suggest looking at the combined execution plan. It might be different...

  • RE: Dropping db_ Schemas

    If you aren't using them, cleaning them up isn't going to hurt anything.

    Is the book by Denny Cherry? If so, I'd take it's word as pretty near to gospel.

  • RE: Error While Doing Update Stats from a Maintenance Plan

    sdownen05 (4/4/2014)


    Keith,

    First, thanks for pointing me to the other scripts. I will definitely start using them instead.

    As to your query, it shows that the table exists. However, when I do...

  • RE: WITH RECOMPILE on Web Server - discussion

    It's also not a question of web servers vs. something else. Query behavior is query behavior. Nothing all that special about queries coming from a web interface vs. queries coming...

  • RE: How can I track how many times a specific SP is called every day?

    I'd suggest using extended events for this. They're more light weight than trace events and their filtering is much, much better, so you'll only be capturing the data you want....

  • RE: Execution Plan

    If you have the clustered index key value in the WHERE clause and you're still getting a scan, the suggestion is that you must have one of two situations, your...

  • RE: how do we measure the defrag will help

    MyDoggieJessie (4/3/2014)


    Grant, what would be the best way to achieve that? SET STATISTICS TIME ON?

    That's one way, sure. I'd probably use extended events, or, on a 2008 system, trace....

  • RE: Stored procedure execution history

    But you can see an aggregation of the queries currently in cache in sys.dm_exec_query_stats. It shows execution times, counts, other stuff like that, but not who did the executing or...

Viewing 15 posts - 8,446 through 8,460 (of 22,214 total)