Sql Profiler Scan 开始执行存储过程

发布于 2024-08-24 16:56:09 字数 460 浏览 5 评论 0原文

SqlServer是否必须启动Scan才能执行存储过程?

在 Sql Profiler 中,我可以看到:

  • RPC 开始 ( exec sp_Edu3_SelectExamSession @ExamSessionId=N'AccessCode39361814' )
  • Scan:Started
  • Scan:Started
  • Scan:Started
  • RPC Completed ( exec sp_Edu3_SelectExamSession @ExamSessionId=N'AccessCode39361814' )

我能以某种方式看到发生了什么吗存储过程?在该 SP 中完成了不同的查询,但它们似乎没有出现在 Sql Profiler 中(也许我需要检查更多事件?)

Scan:Started 可能是 sp 中的查询进行的扫描?或不?

Does SqlServer has to start a Scan to execute a stored procedure?

In Sql Profiler I can see this:

  • RPC Starting ( exec sp_Edu3_SelectExamSession @ExamSessionId=N'AccessCode39361814' )
  • Scan:Started
  • Scan:Started
  • Scan:Started
  • RPC Completed ( exec sp_Edu3_SelectExamSession @ExamSessionId=N'AccessCode39361814' )

Can I somehow see what's happening in the Stored Procedure? Different queries are done in that SP, but they do not seem to appear in Sql Profiler (maybe I need to check some more events?)

The Scan:Started are probably scans by the queries in the sp? Or not?

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

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

发布评论

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

评论(1

暮凉 2024-08-31 16:56:09

当您启动探查器时,有一个模板,您可以在其中查看存储的过程逐行执行。它类似于内存中的“SQLProfilerTSQL_SPs”。

扫描事件可能关联,也可能不关联:这取决于您设置的过滤器。

When you launch profiler, there is a template where you can see stored proc line by line execution. It's something like "SQLProfilerTSQL_SPs" from memory.

The Scan event may be associated, it may not: it depends on the filters you have set.

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