Oracle® Services for Microsoft Transaction Server Developer's Guide 10g Release 1 (10.1) for Windows Part Number B10114-01 |
|
|
View PDF |
This chapter provides Oracle Services for Microsoft Transaction Server (OraMTS) troubleshooting information.
This chapter contains these topics:
Tracking Oracle Services for Microsoft Transaction Server Performance
Correcting Oracle Net Changes that Impact Connection Pooling
Frequently Asked Questions About Oracle Services for Microsoft Transaction Server
Dropping the Microsoft Transaction Server Administrative User Account
Trace files record information about Oracle Services for Microsoft Transaction Server performance. This information includes:
Any errors
Enlistment requests and outcomes
Prepare, commit, and abort requests and their outcomes
There are two registry parameters that handle tracing within oramts.dll
. oramts.dll
performs the following:
Implements the API for integrating the Oracle database with Microsoft Transaction Server
Works as a resource dispenser to provide pooled Oracle Call Interface (OCI) connections
Enables clients with nonpooled OCI connections to enlist in transactions started by Microsoft Distributed Transaction Coordinator (MS DTC)
Communicates with Oracle Services for Microsoft Transaction Server to enlist the Oracle database in MS DTC-started transactions
Table 7-1 describes the registry parameters for handling tracing. If not previously set, both parameters are automatically set in \\HKEY_LOCAL_MACHINE\SOFTWARE\ORACLE\HOME
ID
during Oracle Services for Microsoft Transaction Server installation. Use the registry parameters instead of setting these parameters as environment variables. Setting environment variables requires you to restart your computer for the changes to occur.
Table 7-1 Trace Registry Parameter
Table 7-2 shows the range of ORAMTS_CP_TRACE_LEVEL
trace values. Set ORAMTS_CP_TRACE_LEVEL
to a value other than 0
only when tracing is necessary.
Table 7-2 Trace Registry Parameter Value
Level | Description |
---|---|
0 | Disables tracing
Note: If the registry parameter is not set in the registry or as an environment variable, then tracing is disabled (the same as setting the level to |
1 | Traces errors only |
2 | Traces important events in addition to errors |
4 | Traces function entry/exit, important events, and errors |
5 | Traces reference counting function and constructor/destructor entry/exit |
Note: The Oracle MTS Recovery Service also generates trace file output in theORACLE_BASE \ ORACLE_HOME \ oramts \ trace directory. |
If you are using Windows NT and experience Windows Explorer crashes or other unexpected Windows problems when using Microsoft Transaction Server with a database, install the Windows NT 4.0 Service Pack 6a or greater (available from Microsoft).
The connection pool provided by the OraMTS layer (that is, oramts.dll
) uses a connection's net service name to identify pooled connections for an application. If changes are made to the net service name, and there are currently pooled connections, the application using the connection pool must be stopped and restarted. These changes can include altering the host or the database system identifier (SID) for the net service name in the tnsnames.ora
file.
These changes ensure that all currently pooled connections corresponding to the old net service name are destroyed and any new pooled connections use the changes made to the net service name. This includes any application hosting Microsoft Transaction Server components.
To empty connection pools:
Perform the instructions listed in the following table:
If the Application Is an... | Then... |
---|---|
Out-of-process Microsoft Transaction Server component (server package) | Run the following application:
This empties the connection pools. |
In-process Microsoft Transaction Server component (library package) | Terminate the application, which also empties the connection pool. |
This section presents answers to common questions.
Question: How do I design an application when I have multiple databases?
Answer: Oracle clients can establish connections to a database in two ways:
Typical Oracle clients establish connections to a database using a dedicated server configuration. In a dedicated server configuration, one client corresponds to one Oracle server process.
For scalability under heavy loads, Oracle clients have the option of using a shared server configuration. In a shared server configuration, a single Oracle server process can be shared by more than one client connection.
Microsoft Transaction Server communicates with the database through distributed transactions. In a dedicated server configuration, you cannot use distributed updates (data manipulation language statements across database links) from other databases. However, if the original connection to the database is established using shared server configurations, the distributed updates from other databases succeed.
To use data manipulation language statements in shared server configurations, set the following parameter in the tnsnames.ora
file:
SERVER=dedicated
This forces the Oracle Net listener to provide a dedicated connection.
Figure 7-1 shows this process.
Figure 7-1 Distributed DML Statements from MTS Applications
Question: What are the differences between Oracle Net connection pooling, OCI connection pooling, and Microsoft Transaction Server connection pooling?
Answer: Oracle Net connection pooling is a server-side feature that is implemented only if the Oracle database is configured for shared server support. Oracle Net connection pooling enables you to minimize the number of physical network connections to a shared server. This is achieved by sharing a dispatcher's set of connections among multiple client processes.
Microsoft Transaction Server provides a resource pooling infrastructure that enables certain resources to be pooled, such as memory and database connections. The OCI connection pooling layer works with Microsoft Transaction Server resource pooling to provide pooled Oracle client/server sessions. The OCI connection pooling layer also caches Oracle Net connections to reduce client/server session setup time.
Question: What are in-doubt transactions?
Answer: Oracle uses distributed transactions in the following configurations:
Distributed database configurations (for example, distributed updates using database links)
External transaction managers (for example, Tuxedo, MS DTC) for coordinating transaction outcome
The two-phase commit protocol completes these transactions. During phase one, the transaction manager (TM) requests the various resource managers involved in the TM's transaction to prepare the underlying distributed transactions. In phase two, the TM determines whether it commits or aborts the transaction, and requests the resource managers to commit or abort the underlying transaction. If a resource manager fails to receive the phase two notification, the underlying distributed transaction becomes in-doubt.
To integrate Oracle with Microsoft Transaction Server, distributed transactions are used in the database. Distributed transactions correspond to transactions coordinated by the MS DTC. A distributed transaction can become in-doubt when the transaction cannot commit or abort (phase two of the two-phase commit). This occurs when the Microsoft Transaction Server application server process, database, or network fails.
The Microsoft Transaction Server administrative user account is created by running the oramtsadmin.sql
script. If you later change the database with which Microsoft Transaction Server is coordinating transactions, you can drop the administrative user account schema from the previous database.
To drop the Microsoft Transaction Server administrative user account:
Start SQL*Plus:
c:\> sqlplus /NOLOG
Connect to the database as SYSDBA
:
SQL> CONNECT / AS SYSDBA
Enter the following command to drop administrative user account schema:
SQL> DROP USER mtsadmin_username CASCADE;
where mtsadmin_username
is the Microsoft Transaction Server administrative user account (default is mtssys
).
See Also: See Chapter 3, " Managing Recovery Scenarios" for information on creating the Microsoft Transaction Server administrative user account for the new database |