SQL 查询需要时间

发布于 2024-12-25 04:02:08 字数 86 浏览 0 评论 0原文

我需要知道,如果我有一组 1000 个查询,并且我一次执行它们。如果特定的查询集需要时间,那么可能的原因是什么,它需要时间以及我可以通过什么方式解决这个问题。

I need to know that if I am having a set of 1000 queries, and I am executing them in one go. If the particular set of queries taking time, then what can be the possible reason, it's taking time and by what means I can resolve this issue.

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

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

发布评论

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

评论(1

非要怀念 2025-01-01 04:02:08

介绍他们。通过使用您的 SID 查询 v$session 可以看到所有正在运行的查询序列#。获得 SQL_Id 后,您可以使用 SQL_id 查询 v$sql 以显示正在运行的查询。

v$session 还显示了大量其他信息,包括等待状态、您可以查看并弄清楚要做什么的事件。

通过 v$locked_object 查看是否有任何对象被锁定,从而阻止查询执行。

进一步阅读:

Profile them. All running queries are can be seen by querying v$session with your SID & serial#. Once you have the SQL_Id, you can query v$sql with the SQL_id to show what query is running.

v$session also shows a wealth of other information, including wait states, events which you can go through and figure out what to.

Go through v$locked_object to see if there are any objects which are locked, preventing the queries from executing.

Further reading:

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