Hi,
I am wanting to rebuild some indexes in my database. I have a script that will generate my ALTER INDEX... REBUILD statements for me in the following format, e.g.)
ALTER INDEX ALL ON myTable REBUILD
My question is, when SQL Server generates the drop and create statements internally when this run, will it specify the indexes be created in the SAME exact locations on disk?
I am assuming it would, but just want to be sure. Can't see to find any documentation on it.
Thanks!
I am wanting to rebuild some indexes in my database. I have a script that will generate my ALTER INDEX... REBUILD statements for me in the following format, e.g.)
ALTER INDEX ALL ON myTable REBUILD
My question is, when SQL Server generates the drop and create statements internally when this run, will it specify the indexes be created in the SAME exact locations on disk?
I am assuming it would, but just want to be sure. Can't see to find any documentation on it.
Thanks!