程序员人生 网站导航

查询Oracle sql语句中绑定变量值的方法

栏目:数据库应用时间:2015-06-04 08:12:50
alter session set nls_date_format = 'yyyy-mm-dd,hh24:mi:ss'; set linesize 400 col sql_Id format a20 col name format a20 col datatype_string format a14 col value_string format a20 select sql_id,name, datatype_string, last_captured,value_string from v$sql_bind_capture where sql_id='dxfcacn4t4ppw' order by LAST_CAPTURED,POSITION; --在出问题的实例上履行,请自行替换sql_id,此时该sql还在shared pool中,没有被aged out select instance_number, sql_id,name, datatype_string, last_captured,value_string from dba_hist_sqlbind where sql_id='fahv8x6ngrb50'order by LAST_CAPTURED,POSITION; --请自行替换sql_id,此时是从awr中查询。

------分隔线----------------------------
------分隔线----------------------------

最新技术推荐