Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 1034377
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T14:22:54+00:00 2026-05-16T14:22:54+00:00

I would like a tool that monitors sql server while I test my application.

  • 0

I would like a tool that monitors sql server while I test my application. THe applicatino will of course run different queries.

From the tool I would like an output like:
– this query was slow because index is missing on this field

and this kind of info.

But I’d like to have a way to highlight crucial data, there can be for example 100 index missing, but 99 of them would improve the performance of 0.05%, while one of those would give a 6000% benefit on a query. So Highlighting hot spots is important too.

Also a commercial product (with full features – no limited – trial) is desired.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-16T14:22:54+00:00Added an answer on May 16, 2026 at 2:22 pm

    You don’t exactly need a tool. I personally use the following query to show me what indexes SQL Server thinks it needs, this shows how often SQL Server looked for the index, estimated improvement etc…

    SELECT user_seeks * avg_total_user_cost * (avg_user_impact * 0.01) AS index_advantage,
       migs.last_user_seek,
       mid.statement AS 'Database.Schema.Table',
       mid.equality_columns,
       mid.inequality_columns,
       mid.included_columns,
       migs.unique_compiles,
       migs.user_seeks,
       migs.avg_total_user_cost,
       migs.avg_user_impact
    FROM sys.dm_db_missing_index_group_stats AS migs WITH (NOLOCK)
    INNER JOIN sys.dm_db_missing_index_groups AS mig WITH (NOLOCK) 
        ON migs.group_handle = mig.index_group_handle
    INNER JOIN sys.dm_db_missing_index_details AS mid WITH (NOLOCK) 
        ON mig.index_handle = mid.index_handle
    ORDER BY index_advantage DESC;
    

    If you want to identify slow queries SQL Profiler is your friend, just set a filter on duration and you’re set. Then run this query through the Database Engine Tuning Advisor (both come with SQL Server).

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I would like to implement a simple drawing tool that could run across most
I would like to install my python application as a command line tool that
I would like to implement a tool that generates graphs whose memory will be
Is there a tool that works with SQL Server to generate tree-like diagrams from
I would like to write a command line tool that passes some formatted text
In my application I would like to display an image on a tool tip.
I would like a tool (or firefox) that enumerates all , elements on an
I would like to write a small tool that takes a C++ program (a
I am looking for a Visio-like tool that would help me draw my information
I would like a plain forward DTO generation tool that would either Generate it

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.