So I did some investigation, and I came up with a kludge.
set your nls_date_format to display minutes and seconds, then run:
select sysdate, log_io, phy_io, used_ublk, used_urec from v$transaction;
wait a while, and run it again. It seems that when rolling back a transaction, used_urec (the...
I'm using OEM to monitor running processes and transactions, but I'm wondering how to get status on transactions that are currently being rolled back? For example:
1) user submits massive query inserting millions of rows
2) I view the session from OEM, observe that the estimated time of...
I think you need to return a reference cursor or an array type from oracle. I use JDBC, not ODBC, but the fundamentals are similar.
1) create an array type in oracle:
create or replace TYPE char_varray as VARRAY(1000) OF CHAR(30);
2) prepare the statement, set the output parameter, and...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.