在大型事务日志文件中使用 SQL 服务器时,我能否找到使用最慢和最频繁的查询?
Can i find the slowest and most frequently query used when working with SQL server in Large transaction log file?
我从文件(我从我的同事那里收到)恢复了我的数据库。
我想优化数据库性能。所以我想找到最频繁和最慢的查询。或者我应该在哪里寻找?我应该使用哪个工具?
i want to know that if the .ldf file ( that i restored from the .bak file ) still store the history of the queries that i work with the database before ????
LDF 是日志文件,它不会帮助您找到有问题的查询
数据库缓存不持久,恢复数据库时找不到有问题的查询..
有一项名为 QueryStore 的新技术(从 2016 年开始),查询存储中存储的信息在重新启动、数据库恢复后仍然存在..
我从文件(我从我的同事那里收到)恢复了我的数据库。 我想优化数据库性能。所以我想找到最频繁和最慢的查询。或者我应该在哪里寻找?我应该使用哪个工具?
i want to know that if the .ldf file ( that i restored from the .bak file ) still store the history of the queries that i work with the database before ????
LDF 是日志文件,它不会帮助您找到有问题的查询
数据库缓存不持久,恢复数据库时找不到有问题的查询..
有一项名为 QueryStore 的新技术(从 2016 年开始),查询存储中存储的信息在重新启动、数据库恢复后仍然存在..