Hi,
I'm asking about how to go about, too see the contents of variables that are going into a very simple pl/sql procedure, they are all IN variables.
I'm calling in from a c# program, through a provider to call an simple update procedure, but it's not working. I suspect the provider of being buggy.
I want to see
1. If it being called at all.
2. What parameters are being offered to it.
I have the session Id, and the sql Id from 'pl/sql developer' but the actual call only shows the usual UPDATE BETA_AUTO SET RULEGUID = :B4 , NAME = :B3 etc.
select c.name BIND,
substr(c.value_string,1,25) VAL
from v$sqlarea a,
v$sql_bind_capture c
where a.sql_id = c.sql_id
and a.hash_value = 'hash_value'
order by a.last_active_time desc, c.name asc
;
Disclaimer: Advice is provided to the best of my knowledge but no implicit or explicit warranties are provided. Since the advisor explicitly encourages testing any and all suggestions on a test non-production environment advisor should not held liable or responsible for any actions taken based on the given advice.
Bookmarks