Home > Blockchain >  Is there any bad affect on heavy queries on tables that are placed in different filegroups?
Is there any bad affect on heavy queries on tables that are placed in different filegroups?

Time:04-15

I need to split tables into multiple file groups. My queries contains join between these tables that will be in different file groups. Does this cause bad performance on my queries?

CodePudding user response:

My queries contains join between these tables that will be in different file groups. Does this cause bad performance on my queries?

No. If you split a database into two separate filegroups on the same disk, you should see no material performance difference. Obviously if you put one of these filegroups on a slower disk queries could be impacted.

  • Related