gpt4 book ai didi

oracle - 查询 Oracle 运行 sql 和绑定(bind)变量的值

转载 作者:行者123 更新时间:2023-12-04 15:04:09 24 4
gpt4 key购买 nike

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

Select fname, lname from name_tbl where nam_key = :key 

如果不使用一些花哨的 DBA 跟踪实用程序,我如何查询 Oracle 系统表以查找绑定(bind)变量“: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;

最佳答案

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'

关于oracle - 查询 Oracle 运行 sql 和绑定(bind)变量的值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4888115/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com