Oracle® Services for Microsoft Transaction Server Developer's Guide 10g Release 1 (10.1) for Windows Part Number B10114-01 |
|
|
View PDF |
This chapter describes how to create and schedule Microsoft Transaction Server-related Oracle transaction recovery.
This chapter contains these topics:
Scheduling Automatic Microsoft Transaction Server Transaction Recovery
Modifying Registry Values for Oracle Fail Safe Configurations
You must configure the Microsoft Transaction Server and Oracle database environments after installing or migrating Oracle Services for Microsoft Transaction Server (OraMTS). Review Table 3-1 to identify what you must configure.
Configuration is not required on the Windows computer where Microsoft Transaction Server is installed.
Perform the procedures listed in Table 3-1 on the computer where the Oracle database is installed.
Table 3-1 Configuration Requirements
Configuration Task | See |
---|---|
Run the oramtsadmin.sql script against the database to create the Microsoft Transaction Server administrative user account (the default username is mtssys ).
Schedule automatic transaction recovery. |
"Scheduling Automatic Microsoft Transaction Server Transaction Recovery" |
If you have an Oracle Fail Safe configuration, modify the registry values before or after running the oramtsadmin.sql script. |
"Modifying Registry Values for Oracle Fail Safe Configurations" if using Oracle Fail Safe |
See Also: Non-Oracle product documentation for any configuration procedures required by those products (for example, Microsoft Internet Information Server) |
Distributed transaction capabilities are required to use Microsoft Transaction Server with Oracle. Microsoft Transaction Server-related Oracle transactions become in-doubt transactions when any of the following fail:
Microsoft Transaction Server application
Network
An Oracle MTS Recovery Service resolves in-doubt transactions on the computer that started the failed transaction. An Oracle MTS Recovery Service is automatically installed with Oracle Services For Microsoft Transaction Server. Only one Oracle MTS Recovery Service can be installed for each computer. A scheduled recovery job on each Microsoft Transaction Server-enabled database permits the Oracle MTS Recovery Service to resolve in-doubt transactions.
The Oracle MTS Recovery Service resolves an in-doubt Microsoft Transaction Server transaction in the following order:
The DBMS recovery job detects an in-doubt MTS-related transaction.
The DBMS recovery job extracts the recovery service's endpoint address from the XID of the in-doubt transaction and requests the recovery service for the outcome of the MTS/MS DTC transaction.
The recovery service requests its MS DTC for transaction outcome.
The recovery service reports transaction outcome to the DBMS job process.
The DBMS recovery job commits or aborts the in-doubt transaction.
Automatic transaction recovery is performed by scheduling a database job. A database job for in-doubt transactions must be scheduled for each database participating in Microsoft Transaction Server transactions.
Transaction recovery is configured by running the oramtsadmin.sql
script. This script runs the scripts utl_oramts.sql
and prvtoramts.plb
to create the PL/SQL package utl_oramts
. The database view oramts_2pc_pending
is also created to show in-doubt transactions related to Microsoft Transaction Server transactions.
The oramtsadmin.sql
script does the following:
Creates the Microsoft Transaction Server administrator user account
Automatically schedules database jobs for transaction recovery every one minute
When the database job is run, it checks for unresolved global transactions in the database that are related to Microsoft Transaction Server. Information in the transaction identifiers (XIDs) of the in-doubt transactions identifies the computer on which the transaction was started. The Oracle MTS Recovery Service on that computer resolves the transaction.
Schedules post-recovery cleanup every half hour
Schedule automatic transaction recovery in the database by performing the following tasks:
Task 1: Setting and Starting Up Database Job-Queue Processes
Task 2: Creating and Scheduling Automatic Transaction Recovery
The JOB_QUEUE_PROCESSES
initialization parameter specifies the number of job queue processes started in an instance.
To set and start up job-queue processes:
Ensure that you have SYSDBA
privileges.
Go to the computer on which the Oracle database is installed.
Start SQL*Plus:
C:\> sqlplus /NOLOG
Connect to the database as SYSDBA
:
SQL> CONNECT / AS SYSDBA
Set the following initialization parameter to at least this value:
JOB_QUEUE_PROCESSES = 1
The default value for this parameter is 0
. Set this parameter to a value greater than 1
if there are many destinations to which to propagate the messages.
Shut down the Oracle database:
SQL> SHUTDOWN
Restart the Oracle database:
SQL> STARTUP
Exit SQL*Plus:
SQL> EXIT
The oramtsadmin.sql
script creates the Microsoft Transaction Server administrator user account with the default username mtssys
. The Microsoft Transaction Server transaction recovery jobs run under the administrator user account.
The oramtsadmin.sql
script runs the utl_oramts.sql
script to grant the following privileges and roles to the administrator user account:
To create and schedule automatic transaction recovery:
Ensure that you have SYSDBA
privileges.
Log on to the computer where the Oracle database is installed.
Start SQL*Plus:
C:\> sqlplus /NOLOG
Connect to the database as SYSDBA
:
SQL> CONNECT / AS SYSDBA
Run the oramtsadmin.sql
script:
SQL> @ORACLE_BASE\ORACLE_HOME\oramts\admin\oramtsadmin.sql;
You are prompted individually for the Microsoft Transaction Server administrator username and password. You can accept the default username of mtssys
and password of mtssys
, or change them.
If you do not change the password in step 5, change it for the mtssys
user afterward:
SQL> ALTER USER mtssys IDENTIFIED BY new_password;
Note: To change the username later, drop the user, rerun theoramtsadmin.sql script, and specify a different username when prompted. |
Exit SQL*Plus:
SQL> EXIT
A single PL/SQL package, utl_oramts
, is created in the Microsoft Transaction Server administrator's schema. utl_oramts
exposes these public procedures and creates this view:
utl_oramts.show_indoubt
procedure
utl_oramts.recover_automatic
procedure
utl_oramts.forget_RMs
procedure
oramts_2pc_pending
view
Use this procedure to view Microsoft Transaction Server in-doubt transactions in the database. This procedure uses the dbms_output
package to display results.
This procedure requires SERVEROUTPUT
set to ON
.
SQL> SET SERVEROUTPUT ON SQL> EXECUTE utl_oramts.show_indoubt;
The following information appears:
========================================================= currently indoubt transactions ========================================================= formatid : 21255235 gtrid : C2229A505904974D81FB7316B147325900000000 bqual : 5BAB6A6B55CD294AA20335839110829C0100000000901944700050 local txid : 142.11.202 tx state : prepared protocol : HTTP endpoint : middletier-1@foo.com:2030 ========================================================= formatid : 21255235 gtrid : 259DF9C8DFC5574F8876F0DF4E15CCAD00000000 bqual : 2C8DCED5B9816244BA2B73CC013EEB870100000000901944700050 local txid : 2.18.185 tx state : prepared protocol : HTTP endpoint : middletier-2@foo.com:2030
This procedure is run by the transaction recovery job. An automatic database job is scheduled for utl_oramts.recover_automatic
. When the job is run, it checks for unresolved global transactions in the database that are related to Microsoft Transaction Server. Information in the XIDs of the in-doubt transactions identifies the computer on which the transaction started. The Oracle MTS Recovery Service is contacted and resolves the transactions.
Use this procedure to request the transaction manager (MS DTC) to forget resolved transactions. This procedure is run by the post-recovery cleanup job.
The view oramts_2pc_pending
is created by executing oramtsadmin.sql
. oramts_2pc_pending
shows in-doubt transactions in the database. This view consists of the following columns:
This is the transaction identifier of the Oracle global transaction corresponding to the Microsoft Transaction Server transaction. In fact, this is the globally unique identifier (GUID) of the Microsoft Transaction Server transaction.
This shows the branch identifier of the Oracle transaction. A single Microsoft Transaction Server transaction can have multiple Oracle global transactions. This depends on the number of Microsoft Transaction Server/COM+ components that span the same Microsoft Transaction Server transaction. All these transactions have the small global transaction identifier, but different branch identifiers.
A local Oracle transaction corresponds to each Microsoft Transaction Server transaction. This column shows the identifier corresponding to this local transaction.
This shows the state of the transaction: pending, heuristically committed, heuristically terminated, and so on.
To view Microsoft Transaction Server–related in-doubt transactions in the database, use SQL*Plus to query the view oramts_2pc_pending
.
To view Microsoft Transaction Server–related in-doubt transactions:
Start SQL*Plus with the Microsoft Transaction Server administrator user account:
C:\> sqlplus mtsadmin_user/mtsadmin_password
Enter the following command:
SQL> SELECT * FROM oramts_2pc_pending;
This displays the computer on which the in-doubt transaction originated.
In typical configurations, the MS DTC and Oracle MTS Recovery Service run on the same computer. In this way, the required information for transaction recovery is available to the Oracle-Microsoft Transaction Server integration layer.
In configurations where the Microsoft Transaction Server application is part of a Windows cluster (for example, the application can fail over to another node or host in the cluster), the MS DTC runs as a cluster-wide resource. All cluster nodes use a single instance of the MS DTC running on any cluster node.
If you have an Oracle Fail Safe configuration, make sure the following registry information is replicated on all nodes in the cluster participating in Microsoft Transaction Server transactions:
To modify registry values for Oracle Fail Safe configurations:
Go to the computer on which the MS DTC and Oracle MTS Recovery Service are installed.
Start the registry from the command prompt:
C:\> regedt32
The Registry Editor window appears.
Go to HKEY_LOCAL_MACHINE
\Software
\Oracle
\OracleMTSRecoveryService
.
Copy the registry information appearing here to all nodes in the cluster.
Reboot the computer on which you added the key.