Stored procedure that's currently running

0

Is there a system view that shows what stored procedures that are currently running?

  • What sql engine are we talking?

Ariel
已提问 7 个月前204 查看次数
1 回答
0

Hello, there is no specific system view which can show this information. However, once the stored procedure is called it will be visible in the STV_RECENTS [1] if its completed or STV_INFLIGHT [2] as once it is executed it will become treated as a normal query.

Alternatively, you can see the queries ran on the "Queries and Loads" tab on the console

Links: [1] https://docs.aws.amazon.com/redshift/latest/dg/r_STV_RECENTS.html [2] https://docs.aws.amazon.com/redshift/latest/dg/r_STV_INFLIGHT.html

AWS
支持工程师
已回答 7 个月前

您未登录。 登录 发布回答。

一个好的回答可以清楚地解答问题和提供建设性反馈,并能促进提问者的职业发展。

回答问题的准则

相关内容