I'm looking for a way to find out if there are uncommited INSERT, UPDATE or DELETE statements in the current session. One way would be to check v$lock with the current sid, but that requires read access to v$lock, which is be a problem if the DBA doesn't want to grant it. Any other ways (other than keeping track of all database commands issued by the application)?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
you can check if your session has a row in
|
|||
|
|
This is the query I normally use,
|
|||
|
|
|
SELECT * FROM V$TRANSACTION WHERE STATUS='ACTIVE'; See: http://forums.oracle.com/forums/thread.jspa?threadID=691061 |
|||
|
|
|
Also see... |
|||
|
Use this query to find out pending transaction. If it gives any value which means there is a pending transaction. select dbms_transaction.step_id from dual; Reference: http://www.acehints.com/2011/07/how-to-check-pending-transaction-in.html http://www.acehints.com/p/site-map.html |
|||
|
|