SQL Server 2008 文件写入行为
类似 101 个问题:对于用户定义的文件组中的多个文件,插入行时 SQL Server 的行为是什么? 循环赛? 写满然后继续下一个? 我发现了一些关于 tempDb 的有趣帖子,建议进行循环,但没有任何结论。
Sort of a 101 question: with multiple files in a user defined filegroup, what is SQL Servers behavior when inserting rows? Round robin? Write until full and move on to the next?
I have found some interesting posts regarding tempDb on this subject that suggest round robin, but nothing conclusive.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
SQL Server 使用比例填充算法将数据写入包含多个文件的文件组。 也就是说,如果您的文件组包含两个文件,并且第一个文件的可用空间是第二个文件的两倍,则第一个文件将接收(大约)两倍的写入次数。 SQL Server 会定期重新计算此比率,因为可用文件空间当然会随着时间而变化。
这是关于该主题的非常好的讨论:
http:// /groups.google.ca/group/microsoft.public.sqlserver.server/browse_thread/thread/a77db2ded38c58e9
SQL Server uses a proportional fill agorithm to write data to a filegroup with multiple files. That is to say, if your filegroup contains two files, and the first has twice as much free space as the second, the first will receive (roughly) twice as many writes. SQL Server recalculates this ratio on a regular basis, as free file space will of course change with time.
Here's a very good discussion on the subject:
http://groups.google.ca/group/microsoft.public.sqlserver.server/browse_thread/thread/a77db2ded38c58e9