查询Oracle正在运行的sql和绑定变量的值

发布于 2024-10-15 21:14:00 字数 414 浏览 0 评论 0原文

如果我运行下面图 1 中的 SQL,它可能会返回如下内容:

Select fname, lname from name_tbl where nam_key = :key 

如果不使用一些奇特的 DBA 跟踪实用程序,我如何查询 Oracle 系统表来查找绑定变量“:key”的值?

图 1. - 列出当前正在运行的 sql 语句。

select sid, username, sql_text  
from v$session,   
       v$sqltext  
 where sql_address    = address   
   and sql_hash_value = hash_value  
order by sid, piece;

If I run the SQL in Fig. 1 below, it may return something like this:

Select fname, lname from name_tbl where nam_key = :key 

Without using some fancy DBA trace utility, how can I query an Oracle system table to find the value of the bind variable “:key”?

Figure 1. - List the current running sql statement.

select sid, username, sql_text  
from v$session,   
       v$sqltext  
 where sql_address    = address   
   and sql_hash_value = hash_value  
order by sid, piece;

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

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

发布评论

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

评论(1

世态炎凉 2024-10-22 21:14:00
select name, value_string
from v$sql_bind_capture
where sql_id = your_query_id

更新。或者,当然:

select sql_id, value_string
from v$sql_bind_capture
where name = ':key'
select name, value_string
from v$sql_bind_capture
where sql_id = your_query_id

Upd. or, of course:

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