有没有评估数据库设计的工具

发布于 2025-01-01 17:13:42 字数 1539 浏览 3 评论 0原文

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

染火枫林 2025-01-08 17:13:42

如果您使用的是 SQL Server,您将受益于数据库引擎优化顾问。直接引用自 TechNet,以下是这些功能:

使用查询推荐数据库的最佳索引组合
优化器来分析工作负载中的查询。

为引用的数据库推荐对齐或非对齐分区
在工作负载中。

推荐工作负载中引用的数据库的索引视图。

分析拟议更改的影响,包括索引使用情况、
表之间的查询分布以及表中的查询性能
工作量。

针对一小部分问题推荐调整数据库的方法
查询。

允许您通过指定高级来自定义推荐
磁盘空间限制等选项。

提供总结实施效果的报告
针对给定工作负载的建议。

考虑提供可能的设计选择的替代方案
数据库引擎调优的假设配置形式
顾问进行评估。

If you are using SQL Server, you will benefit from the Database Engine Tuning Advisor. Quoted directly from TechNet, here are the capabilities:

Recommend the best mix of indexes for databases by using the query
optimizer to analyze queries in a workload.

Recommend aligned or non-aligned partitions for databases referenced
in a workload.

Recommend indexed views for databases referenced in a workload.

Analyze the effects of the proposed changes, including index usage,
query distribution among tables, and query performance in the
workload.

Recommend ways to tune the database for a small set of problem
queries.

Allow you to customize the recommendation by specifying advanced
options such as disk space constraints.

Provide reports that summarize the effects of implementing the
recommendations for a given workload.

Consider alternatives in which you supply possible design choices in
the form of hypothetical configurations for Database Engine Tuning
Advisor to evaluate.

故事未完 2025-01-08 17:13:42

我不确定你正在使用什么数据库,但是当然,在 MySQL 中良好的第一步通常是使用 EXPLAIN 命令:
http://dev.mysql.com/doc/refman/5.0 /en/using-explain.html

有一系列第三方应用程序可以帮助使用 MySQL 进行数据库调整。例如 MONyog

I am not sure what database you are using, but of course a good first start in MySQL is often to use the EXPLAIN command:
http://dev.mysql.com/doc/refman/5.0/en/using-explain.html

There are a collection of third party applications that assist with database tuning with MySQL. such as MONyog.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文