Please start any new threads on our new site at https://forums.sqlteam.com. We've got lots of great SQL Server experts to answer whatever question you can come up with.

 All Forums
 General SQL Server Forums
 New to SQL Server Administration
 Seperating data and index

Author  Topic 

ranvir_2k
Posting Yak Master

180 Posts

Posted - 2015-04-21 : 08:54:47
Hi all,

I know that you can get a performance boost if you put the data and indexes on two separate disks.

However can you also get a performance benefit if you put them in two different filegroups but on the same disk.

Thanks

gbritton
Master Smack Fu Yak Hacker

2780 Posts

Posted - 2015-04-21 : 09:06:57
not likely. There's just one spindle and contention for the read/write heads.

note that, in some cases, you MUST put the index in the same filegroup as the data.

e.g. for columnstore indexes, ff your table is partitioned, the columnstore index must be partition aligned.
Go to Top of Page
   

- Advertisement -