ORACLE XE 清除 Top Sql 统计信息

发布于 2024-10-15 01:33:46 字数 189 浏览 4 评论 0原文

“顶部”SQL 语句表示最常执行的 SQL 语句、比其他 SQL 语句使用更多系统资源的 SQL 语句,或者比其他 SQL 语句使用系统资源更频繁的 SQL 语句。通过查看 Oracle Database XE 图形用户界面中提供的顶级 SQL 语句报告,您可以将 SQL 调优工作集中在对数据库性能影响最大的语句上。

但如何清除当前持有的信息呢?

The "top" SQL statements represent the SQL statements that are executed most often, that use more system resources than other SQL statements, or that use system resources more frequently than other SQL statements. Viewing the top SQL statements report that is available in the Oracle Database XE graphical user interface enables you to focus your SQL tuning efforts on the statements that can have the most impact on database performance.

But how do I clear the information currently held?

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

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

发布评论

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

评论(1

难得心□动 2024-10-22 01:33:46

尝试刷新共享池:

ALTER SYSTEM FLUSH SHARED_POOL;

因为共享池包含SQL缓存,清理它,也会清除其他数据。

当然,要小心,因为它还会刷新其他有用的数据:

  • 缓存的数据字典信息以及
  • SQL 语句、存储过程、函数、包和触发器的共享 SQL 和 PL/SQL 区域。

参考资料:

Try to flush the shared pool:

ALTER SYSTEM FLUSH SHARED_POOL;

Because the shared pool contains the SQL cache, cleaning it, also it's going to clear the other data.

Of course, be carefull because it also flush other useful data:

  • Cached data dictionary information and
  • Shared SQL and PL/SQL areas for SQL statements, stored procedures, function, packages, and triggers.

References:

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