Oracle Services for Microsoft Transaction Server Developer's Guide Release 9.2 for Windows Part Number A95496-01 |
|
This chapter describes how to create and schedule Microsoft Transaction Server-related Oracle transaction recovery.
This chapter contains these topics:
You must configure the Microsoft Transaction Server and Oracle database server environments after installing or migrating Oracle Services for Microsoft Transaction Server (MTS). Review Table 3-1 to identify what you must configure.
On This Computer... | Is Any Oracle Configuration Required? | See... |
---|---|---|
Client computer |
No |
Not applicable |
Windows NT computer where Microsoft Transaction Server is installed |
No |
Not applicable |
Computer where the database server is installed |
Yes. Perform the following procedures: |
"Microsoft Transaction Server Transaction Recovery Overview" "Scheduling Automatic Microsoft Transaction Server Transaction Recovery" |
- |
|
"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:
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 server permits the Oracle MTS Recovery Service to resolve in-doubt transactions.
Figure 3-1 describes how in-doubt transactions are resolved.
Automatic transaction recovery is performed by scheduling a database job. A database job for in-doubt transactions must be scheduled for each database server 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:
When the database job is run, it checks for unresolved global transactions in the database server 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.
Schedule automatic transaction recovery in the database server by performing the following tasks:
The JOB_QUEUE_PROCESSES
initialization parameter specifies the number of job queue (SNP) processes started in an instance.
To set and start up SNP processes:
SYSDBA
privileges.C:\> sqlplus /NOLOG
SYSDBA
:SQL> CONNECT / AS SYSDBA
If Using This Server... | Go to... |
---|---|
8.1.x or later database server |
|
8.0.6 database server |
|
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.
SQL> SHUTDOWN
SQL> STARTUP
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:
CONNECT
roleSELECT_CATALOG_ROLE
roleFORCE_ANY_TRANSACTION
privilegeDBMS_JOBS
package, on which EXECUTE
privileges are grantedDBMS_TRANSACTION
package, on which EXECUTE
privileges are grantedTo create and schedule automatic transaction recovery:
SYSDBA
privileges.C:\> sqlplus /NOLOG
SYSDBA
:SQL> CONNECT / AS SYSDBA
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.
mtssys
user afterward:SQL> ALTER USER mtssys IDENTIFIED BY new_password;
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
procedureutl_oramts.recover_automatic
procedureutl_oramts.forget_RMs
procedureoramts_2pc_pending
viewProcedure
None
None
Use this procedure to view Microsoft Transaction Server in-doubt transactions in the database server. 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
Procedure
None
None
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 server 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.
Procedure
None
None
Use this procedure to request the transaction monitor (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 server. This view consists of the following columns:
This is the formatid
of the global transaction in the database server.
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 aborted, and so on.
This is the protocol that the transaction recovery job in the database server uses to communicate with the Oracle MTS Recovery Service.
This is the endpoint of the Windows NT/2000 computer on which the Microsoft Transaction Server transaction originated. For HTTP connections, this translates to a hostname and port number.
To view Microsoft Transaction Server-related in-doubt transactions in the database server, use SQL*Plus to query the view oramts_2pc_pending
.
To view Microsoft Transaction Server-related in-doubt transactions:
C:\> sqlplus mtsadmin_user/mtsadmin_password
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 NT 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. Using Oracle Fail Safe, the Oracle MTS Recovery Service can also be made into a cluster wide resource.
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:
C:\> regedt32
The Registry Editor window appears.
HKEY_LOCAL_MACHINE\Software\Oracle\OracleMTSRecoveryService
.
|
Copyright © 1996, 2002 Oracle Corporation. All Rights Reserved. |
|