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 7982459
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 4, 20262026-06-04T10:41:11+00:00 2026-06-04T10:41:11+00:00

Ok, I don’t know if I am going crazy or not, but didn’t the

  • 0

Ok,

I don’t know if I am going crazy or not, but didn’t the Estimated exexution plan use to show you what Indexes you would need to improve your performance? I used to this at my old job, but now it seems I have to using the tuning advisor. I don’t mind the tuning advisor, but the way I did it before was so simple!

Thanks

  • 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-06-04T10:41:12+00:00Added an answer on June 4, 2026 at 10:41 am

    In both SSMS 2008 and in SSMS 2012 see this is working fine for both estimated and actual plans.

    Here is a quick example to show that estimated and actual execution plans will both show missing indexes:

    USE tempdb;
    GO
    
    CREATE TABLE dbo.smorg(blamp INT);
    GO
    
    INSERT dbo.smorg(blamp) SELECT n FROM
    (
      SELECT ROW_NUMBER() OVER (ORDER BY c1.object_id)
      FROM sys.all_objects AS c1, sys.all_objects AS c2
    
    ) AS x(n);
    GO
    

    Now highlight this and choose estimated execution plan, or turn on actual execution plan and hit Execute:

    SELECT blamp FROM dbo.smorg WHERE blamp BETWEEN 100 AND 105;
    

    You should see a missing index recommendation. And you will see it represented here:

    SELECT * 
        FROM sys.dm_db_missing_index_details 
        WHERE [object_id] = OBJECT_ID('dbo.smorg');
    

    You can read more about the DMV here:

    http://msdn.microsoft.com/en-us/library/ms345434.aspx

    Also you should investigate SQL Sentry Plan Explorer (disclaimer: I work for SQL Sentry). This is a free tool that shows the missing indexes for estimated plans (if they are in the XML provided by SQL Server), doesn’t have bugs like SSMS (where it repeats the same recommendation across multiple batches, even batches that don’t mention the same tables), and generates actual execution plans without pulling all of the results across the network to the client – it just discards them (so the network and data overhead don’t factor into to plan analysis).

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

Sidebar

Related Questions

Don't know why but font is not displaying.Please help. CSS(in css folder): style.css: @font-face
Don't know whats exactly going on, but it's definitely killing my time for nothing.
I don't know if this question is trivial or not. But after a couple
Don't know if I'm over-thinking this or not.. but I'm trying to be able
don't know if the title describes anything about what I'm trying to say but
Don't really know how to formulate the title, but it should be pretty obvious
Don't know how to google for such, but is there a way to query
I don't know why, but this code worked for me a month ago... maybe
Don't know if I worded the question right, but basically what I want to
(Don't know if this is strictly on-topic, but I don't see any better Stack

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.