Is there a tool for evaluating database projects?

I am working on a fairly large database system and wondering if there is a tool for evaluating database design. Essentially, I need something that will work through the database, indicate slowdowns and problems. It would be even better if the tool could look at the statistics of already running databases and offer suggestions.

+4
source share
2 answers

If you are using SQL Server, you can use the Database Engine Tuning Advisor . Quoted directly from TechNet, here are the options:

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

Recommend aligned or unrelated partitions for referenced databases in the workload.

Recommend indexed views for the databases referenced by the workload.

Analyze the impact of the proposed changes, including the use of the index, the distribution of queries between tables, and the performance of queries in congestion.

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

Allows you to customize the recommendation by specifying advanced ones such as disk space restrictions.

Providing reports summarizing the impact of implementing a recommendation for a given workload.

Consider alternatives in which you provide possible design options in the form of hypothetical configurations for the Tuning Engine Engine Tuning Advisor for evaluation.

+1
source

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

There is a collection of third-party applications that help with database setup with MySQL. e.g. MONYOG .

0
source

Source: https://habr.com/ru/post/1394312/


All Articles