Oracle® Database PL/SQL Packages and Types Reference 11g Release 1 (11.1) Part Number B28419-01 |
|
|
View PDF |
The DBMS_STREAMS_ADVISOR_ADM
package, one of a set of Oracle Streams packages, provides an interface to gather information about an Oracle Streams environment and advise database administrators based on the information gathered. This package is part of the Oracle Streams Performance Advisor.
This chapter contains the following topics:
Using DBMS_STREAMS_ADVISOR_ADM
Overview
Constants
Views
See Also:
Oracle Streams Concepts and Administration for instructions about using this packageThis section contains topics which relate to using the DBMS_STREAMS_ADVISOR_ADM
package.
The DBMS_STREAMS_ADVISOR_ADM
package enables you to gather and analyze information about an Oracle Streams environment. You can use this information in the following ways:
To populate data dictionary views with an Oracle Streams topology that contains information about the Oracle Streams components at one or more databases
To examine the Oracle Streams components at one or more databases in your environment and the ways in which information flows through streams that include these components
To analyze the performance of the Oracle Streams components in your environment
To detect performance problems with Oracle Streams components and correct these problems
The DBMS_STREAMS_ADVISOR_ADM
package defines several enumerated constants that should be used for specifying parameter values. Enumerated constants must be prefixed with the package name. For example, DBMS_DBMS_ADVISOR_ADM.CAPTURE_TYPE
.
Table 131-1 DBMS_STREAMS_ADVISOR_ADM Parameters With Enumerated Constants
Parameter | Option | Type | Description |
---|---|---|---|
component_type |
|
NUMBER |
CAPTURE_TYPE indicates that the Oracle Streams component is a capture process. The constant number for this option is 1.
|
The DBMS_STREAMS_ADVISOR_ADM
package uses the following views:
DBA_STREAMS_TP_COMPONENT
contains information about each Oracle Streams component at each database.
DBA_STREAMS_TP_COMPONENT_LINK
contains information about how messages flow between Oracle Streams components.
DBA_STREAMS_TP_COMPONENT_STAT
contains temporary performance statistics about each Oracle Streams component.
DBA_STREAMS_TP_DATABASE
contains information about each database that contains Oracle Streams components.
DBA_STREAMS_TP_PATH_BOTTLENECK
contains temporary information about Oracle Streams components that might be slowing down the flow of a stream.
DBA_STREAMS_TP_PATH_STAT
contains temporary performance statistics about each stream path that exists in the Oracle Streams topology.
The topology information is stored permanently in the following data dictionary views: DBA_STREAMS_TP_DATABASE
, DBA_STREAMS_TP_COMPONENT
, and DBA_STREAMS_TP_COMPONENT_LINK
.
However, the following views contain temporary information: DBA_STREAMS_TP_COMPONENT_STAT
, DBA_STREAMS_TP_PATH_BOTTLENECK
, and DBA_STREAMS_TP_PATH_STAT
. Some of the data in these views is retained only for the user session that runs the ANALYZE_CURRENT_PERFORMANCE
procedure. When this user session ends, this temporary information is purged.
See Also:
Oracle Streams Concepts and Administration for sample queries that use these views
This section contains the following operational notes for the DBMS_STREAMS_ADVISOR_ADM
package:
Oracle Streams Components Analyzed by the DBMS_STREAMS_ADVISOR_ADM Package
General Steps for Running the Oracle Streams Performance Advisor and Analyzing the Information
The DBMS_STREAMS_ADVISOR_ADM
analyzes the following Oracle Streams components at the specified databases:
Capture processes
Propagations
Apply processes
Queues
The DBMS_STREAMS_ADVISOR_ADM
package does not analyze the following Oracle Streams components:
Synchronous captures
Messaging clients
To use the DBMS_STREAMS_ADVISOR_ADM
package, complete the following general steps:
Identify a database in your environment with database links to the databases you want to analyze. Create new database links if all of the necessary links do not exist.
A single administrative user must have access to these database links. Typically, in an Oracle Streams environment, the Oracle Streams administrator uses this package.
Connect as the administrative user to the database you identified in Step 1, and remain connected to the session while you complete the remaining steps.
Run the ANALYZE_CURRENT_PERFORMACE
procedure.
Optionally, allow messages to flow in the environment for some time.
Optionally, rerun the ANALYZE_CURRENT_PERFORMACE
procedure one or more times.
Query the data dictionary views listed in "Views" to analyze the Oracle Streams environment.
If you want to update the information in the data dictionary views or if you add new Oracle Streams components to any database in the environment, repeat Steps 2-6.
Note:
When you exit the user session, the rate, bandwidth, event, and flow control statistics are purged from the data dictionary views.Table 131-2 DBMS_STREAMS_ADVISOR_ADM Package Subprograms
Subprogram | Description |
---|---|
ANALYZE_CURRENT_PERFORMANCE Procedure |
Gathers information about the Oracle Streams components at one or more databases in your environment and analyzes Oracle Streams performance based on the information gathered |
This procedure gathers information about the Oracle Streams components at one or more databases in your environment and analyzes Oracle Streams performance based on the information gathered.
The performance analyses includes:
Calculating bottleneck components for each separate stream
Calculating the throughput of each Oracle Streams component
Calculating the latency of each Oracle Streams component
Calculating the top wait event of each Oracle Streams component
Calculating the message rate of each stream
Calculating the transaction rate of each stream
The procedure places the gathered information in data dictionary views.
Note:
The parameters in this procedure must all be either non-NULL
or NULL
.See Also:
Oracle Streams Concepts and Administration for instructions on using this procedure
Syntax
DBMS_STREAMS_ADVISOR_ADM.ANALYZE_CURRENT_PERFORMANCE( component_name IN VARCHAR2 DEFAULT NULL, component_db IN VARCHAR2 DEFAULT NULL, component_type IN NUMBER DEFAULT NULL);
Parameters
Table 131-3 ANALYZE_CURRENT_PERFORMANCE Procedure Parameters
Parameter | Description |
---|---|
component_name |
The name of the Oracle Streams component to analyze. For example, to analyze a capture process named capture01 , then specify capture01 .
If |
component_db |
The global name of the database that contains the component specified in the component_name parameter. For example, if the db.net database contains the component, then specify db.net .
If |
component_type |
The type of the component specified in the component_name parameter. If the component_name parameter is non-NULL , then specify one of the following:
See "Constants" for information about these constants. If |