如何测试SQL Server 2008数据库是否可以为200个并发用户提供服务
我有一个 3NF 中的 SQL Server 2008 数据库。
我必须检查数据库是否可以支持许多并发用户。
哪种方法最好?
有没有免费的工具可以做到这一点?
非常感谢。
I have a SQL Server 2008 database in 3NF.
I must check if the db can support many concurent users.
Which is the best method ?
Is there any free tool to do this ?
Thank you very much.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
SQLQueryStress - http://www.datamanipulation.net/SQLQueryStress/documentation/documentation.asp< /a>
和
SQLStress - http://www.sqlstress.com/Overview.aspx
两者看起来很适合你想做的事情。
SQLQueryStress - http://www.datamanipulation.net/SQLQueryStress/documentation/documentation.asp
and
SQLStress - http://www.sqlstress.com/Overview.aspx
Both look like a good fit for what you want to do.
数据库设计和针对它运行的查询至关重要;没有任何通用答案是可靠的。
我建议您从 MS SQL 社区的基准测试工具开始。
The database design and the queries you run against it are vital; no generic answer can be reliable.
I recommend you start with the MS SQL community's benchmark tools.
由于用户希望不直接访问数据库,因此您必须有一些前端,这就是我执行负载测试的地方。您可以使用 TFS 以及 Selenium 进行负载测试。
Since uses are hopefully not accessing the database directly you must have some front end, that is where I would perform my load test. You can use TFS to do load tests as well as Selenium.
假设您已经创建了某种查询数据库的 Web 前端,那么优秀的开源工具 Sahi 真的会帮助你。该测试工具包允许您模拟多个用户使用您的网站 - 以及您的数据库。
Assuming that you have created some kind of web front end that queries your database, then the excellent open source tool Sahi would really help you out. The test toolkit allows you to simulate multiple users using your website - and therefore your database.