有趣的 SQL 数据库使用查询
我正在尝试生成一些有关我的数据库的全面信息,并编译一系列有关数据库使用的有趣查询。
有一个日志表
date
username
servertime
clienttime
user query
以及其他实际保存可查询信息的表。
编辑(为了建设性的主观性):所提供信息的最有趣的使用统计查询是什么?
到目前为止我拥有的一些示例:
- 每天的用户数,
- 每日查询次数
- 每个用户的平均查询时间
请为每个答案提供一个建议;如果您需要更多信息,请告诉我。
谢谢!
I am trying to generate some comprehensive information about my databases compile a list of interesting queries for database usage.
There is a log table with
date
username
servertime
clienttime
user query
as well as other tables that actually hold the query-able information.
Edit (for constructive subjectivity): What is the most interesting usage stats query for the provided information?
Some examples I have so far:
- Users per day,
- Queries per day
- Average query time per user
One suggestion per answer please; let me know if you want more information to work with.
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
就我个人而言,我对前十个最慢的查询最感兴趣。
Personally I'd be most interested in the top ten slowest queries.
使用最多 CPU 时间和/或运行最密集查询的用户。
Users that use the most CPU time and/or run the most intensive queries.