March 4, 2013 at 12:03 pm
If you have a table that is already populated (say 900,000 rows) and then you create an index, is the index automatically filled at that point?
Thanks,
Tom
March 4, 2013 at 1:55 pm
An index stays in synch with the table it's on. If the table already had rows in it when you create the index, then that index will have the rows in it also. When you do an INSERT into the table later, the rows will be automatically added to the index as well.
March 4, 2013 at 2:23 pm
That was what I thought, but wasn't sure.
Thanks,
Tom
March 4, 2013 at 4:03 pm
tshad (3/4/2013)
That was what I thought, but wasn't sure.Thanks,
Tom
At this point, I recommend you press the {f1} key when you're in SSMS and use the "index" to find information about "indexes". This isn't something that should be done without proper prior knowledge.
--Jeff Moden
Change is inevitable... Change for the better is not.
Viewing 4 posts - 1 through 3 (of 3 total)
You must be logged in to reply to this topic. Login to reply