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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 8, 20262026-06-08T19:26:39+00:00 2026-06-08T19:26:39+00:00

I have seen several execution plan examples and they displayed Nonclustered Index Insert Showplan

  • 0

I have seen several execution plan examples and they displayed “Nonclustered Index Insert Showplan Operator”. I went ahead and created a table with non-clustered index.

If I insert there and display actual (or estimated) exec. plan I cant see this operator. Only clustered index insert or table insert (depending on the structure).

Using version SQL Server 2008 R2 Developer Edition.

Am I missing something? 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-08T19:26:40+00:00Added an answer on June 8, 2026 at 7:26 pm

    You probably need to insert a greater number of rows to see the non clustered index maintenance shown as a separate operator.

    You can either get a “wide” (per-index) or a “narrow” (per-row) plan.

    For narrow plans the index maintenance is not shown as a separate operator in the plan. In Management Studio you can right click the clustered index insert operator and in the properties window expand the “Object” node to see the affected indexes for this type of plan.

    So for example

    CREATE TABLE #T(
    A INT CONSTRAINT PK PRIMARY KEY, 
    B INT CONSTRAINT UQ UNIQUE) 
    
    
    /*narrow plan*/
    INSERT INTO #T 
    SELECT 1,1
    
    /*wide plan*/   
    INSERT INTO #T 
    SELECT DISTINCT number, number
    FROM master..spt_values
    WHERE number <> 1
    
    DROP TABLE #T
    

    Gives the following two plans

    Plans

    And expanding the properties window for the CI insert operator in the first plan shows

    Properties

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

Sidebar

Related Questions

I have seen several sites where they are able to create links to videos
I have seen several examples on how to find children, etc but for some
I have seen the following exception case several times public SomeClass(IEnumerable<T> someValues) { if
I have seen several questions with people asking about the same problem but none
I have seen several places in stackoverflow where folks have elegantly and easily turned
I have seen several sites where these social share buttons looks perfectly horizontal aligned.
I have seen several apps that make use of a UISplitViewController inside a tab.
I have seen several posts on how to dismiss a dialog by clicking on
I have seen several posts similar to this but none with a strait forward
Where is the TickCount() call? I have seen several threads on the web that

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.