| General Information |
| Note: My suspicion is that this package does precisely nothing at this point but rather is the first step in a multi-step process to extend RAT functionality. |
| Purpose |
This package allows an application to manage transaction monitoring and replay for select-only transactions. |
| Source |
{ORACLE_HOME}/rdbms/admin/dbmsappcont.sql |
| First Available |
11.2.0.3 |
| Dependencies |
|
| Security Model |
Execute is granted to PUBLIC |
| |
| BEGIN_REPLAY |
| Enables the replay mode in the server. While in replay mode, no transactions can be either started or committed |
dbms_app_cont_prvt.begin_replay; |
| exec dbms_app_cont_prvt.begin_replay; |
| |
| END_REPLAY |
| Disables replay mode |
dbms_app_cont_prvt.end_replay; |
| exec dbms_app_cont_prvt.end_replay; |
| |
| MONITOR_TXN |
| Enables the monitoring of transactions in the server |
dbms_app_cont_prvt.monitor_txn; |
| exec dbms_app_cont_prvt.monitor_txn; |