Oct 4, 2005 #1 Buster49 Programmer Oct 27, 2003 9 GB Are there performance improvements to be made from allocating different tables in a database to different data files. How would we work these out?
Are there performance improvements to be made from allocating different tables in a database to different data files. How would we work these out?
Oct 4, 2005 #2 SQLDenis Programmer Oct 1, 2005 5,575 US Yes you will have performance improvements if the filegroups are on different drives Syntax create table (...... on [Filegroupname] http://sqlservercode.blogspot.com/ Upvote 0 Downvote
Yes you will have performance improvements if the filegroups are on different drives Syntax create table (...... on [Filegroupname] http://sqlservercode.blogspot.com/
Oct 4, 2005 #3 mrdenny Programmer May 27, 2002 11,595 You would need to create additional filegroups, then add new files to the database and add then to the new filegroups. As SQLDenis said, if the files are on different drives then yes you can see a performance increase. Denny MCSA (2003) / MCDBA (SQL 2000) --Anything is possible. All it takes is a little research. (Me) http://www.mrdenny.com Upvote 0 Downvote
You would need to create additional filegroups, then add new files to the database and add then to the new filegroups. As SQLDenis said, if the files are on different drives then yes you can see a performance increase. Denny MCSA (2003) / MCDBA (SQL 2000) --Anything is possible. All it takes is a little research. (Me) http://www.mrdenny.com