show/hide this revision's text 3 edited tags
show/hide this revision's text 2 Removed tsql tag since the question does not actually ask about SQL code, but rather the server performance.
show/hide this revision's text 1

Why does SQL Server work faster when you index a table after filling it?

I have a sproc that puts 750K records into a temp table through a query as one of its first actions. If I create indexes on the temp table before filling it, the item takes about twice as long to run compared to when I index after filling the table. (The index is an integer in a single column, the table being indexed is just two columns each a single integer.)

This seems a little off to me, but then I don't have the firmest understanding of what goes on under the hood. Does anyone have an answer for this?