Database 版 (精华区)

发信人: rhine (风雨无阻), 信区: Database
标  题: Oracle DBA Guide V 8, part 4
发信站: 哈工大紫丁香 (2000年07月08日20:27:51 星期六), 站内信件

发信人: chendu (good), 信区: Database
标  题: Oracle DBA Guide V 8, part 4
发信站: BBS 水木清华站 (Sat Nov  6 18:56:33 1999)

Hi, required by several friends, I am posting the
Oracle Database Administrator's Guide version 8
here. This is part 4.

Web Master, if my post it too long and not good for
the bbs, please delete it and I am sorry for it.

Hoping everyone enjoy it!
Good luck!

PS: please do not ask me question by email me
directly, this will cause some delay. (PPMM can ^_^)

------------------------------------------------------------------------------
--



4
4
Managing Oracle Processes
This chapter describes how to manage the processes of an Oracle instance, and
includes the following topics:

Configuring Oracle for Dedicated Server Processes
Configuring Oracle for Multi-Threaded Server Processes
Modifying Server Processes
Tracking Oracle Processes
Managing Processes for the Parallel Query Option
Managing Processes for External Procedures
Terminating Sessions
See Also: For more information about performing specific tasks using
Enterprise Manager/GUI or Server Manager/LineMode, see the Oracle Enterprise
Manager Administrator's Guide and Oracle Server Manager User's Guide.

Configuring Oracle for Dedicated Server Processes
When a user process executes the database application on one machine, and a
server process executes the associated Oracle server on another machine, you
have separate, distinct processes. The separate server process created on
behalf of each user is a
dedicated server process (see Figure 4-1). Oracle is automatically installed
for this configuration. If your operating system can support Oracle in this
configuration, it may also support multi-threaded server processes.

Figure 4-1 Oracle Dedicated Server Processes

To start an instance in a dedicated server configuration, set the following
initialization parameters (in the parameter file) to "null", or omit them
from the file altogether:

MTS_SERVICE
MTS_DISPATCHERS
MTS_SERVERS
MTS_LISTENER_ADDRESS
When to Connect to a Dedicated Server Process
If possible, users should connect to an instance via a dispatcher. This keeps
the number of processes required for the running instance low. In the
following situations, however, users and administrators should explicitly
connect to an instance using a
dedicated server process:

to submit a batch job (for example, when a job can allow little or no idle
time for the server process)
to use Enterprise Manager to start up, shut down, or perform media recovery
to use Enterprise Manager to start up, shut down, or perform media recovery
on a database
To request a dedicated server connection, users must include the
SRVR=DEDICATED clause in their Net8 TNS connect string.

See Also: For a complete description of Net8 connect string syntax, see your
operating system-specific Oracle documentation and your Net8 documentation.

For more information about initialization parameters and parameter files, see
the Oracle8 Reference.

Configuring Oracle for Multi-Threaded Server Processes
Consider an order entry system with dedicated server processes. A customer
places an order as a clerk enters the order into the database. For most of
the transaction, the clerk is on the telephone talking to the customer and
the server process
dedicated to the clerk's user process remains idle. The server process is not
needed during most of the transaction, and the system is slower for other
clerks entering orders.

The multi-threaded server configuration eliminates the need for a dedicated
server process for each connection (see Figure 4-2). A small number of shared
server processes can perform the same amount of processing as many dedicated
server processes.
Also, the amount of memory required for each user is relatively small.
Because less memory and process management are required, more users can be
supported.

Figure 4-2 Oracle Multi-Threaded Sever Processes
To set up your system in a multi-threaded server configuration, start a
network listener process and set the following initialization parameters:

SHARED_POOL_SIZE
MTS_LISTENER_ADDRESS
MTS_SERVICE
MTS_DISPATCHERS
MTS_MAX_DISPATCHERS
MTS_SERVERS
MTS_MAX_SERVERS
After setting these initialization parameters, restart the instance, which at
this point will use the multi-threaded server configuration. The
multi-threaded server architecture requires Net8. User processes targeting
the multi-threaded server must
connect through Net8, even if they are on the same machine as the Oracle
instance.
instance.

See Also: For more information about starting and managing the network
listener process, see Oracle8 Distributed Database Systems and the Oracle
Net8 Administrator's Guide.

SHARED_POOL_ SIZE: Allocating Additional Space in the Shared Pool for Shared
Server
When users connect through the multi-threaded server, Oracle needs to
allocate additional space in the shared pool for storing information about
the connections between the user processes, dispatchers, and servers. For
each user who will connect using
the multi-threaded server, add 1K to the setting of the parameter
SHARED_POOL_SIZE.

See Also: For more information about this parameter, see the Oracle8
Reference.

For more information about tuning, see the Oracle8 Tuning manual.

MTS_LISTENER_ ADDRESS: Setting the Listener Process Address
Within the database's parameter file, set the initialization parameter
MTS_LISTENER_ADDRESS for each port to which the database will connect. The
parameter supports the following syntax:

MTS_LISTENER_ADDRESS = "(addr)"

In the syntax above, addr is an address at which the listener will listen for
connection requests for a specific protocol. The parameter file may contain
multiple addresses.

The following examples specify listener addresses:

MTS_LISTENER_ADDRESS = "(ADDRESS=(PROTOCOL=tcp)(PORT=5000)\
   (HOST=ZEUS)"
MTS_LISTENER_ADDRESS = "(ADDRESS=(PROTOCOL=decnet)\
   (OBJECT=OUTA)(NODE=ZEUS)"

Each address specified in the database's parameter file must also be
specified in the corresponding listener's configuration file. You specify
addresses differently for various network protocols.

See Also: For more information about specifying addresses for the network
listener process, see your operating system-specific Oracle documentation and
your Net8 documentation.
your Net8 documentation.

MTS_SERVICE: Specifying Service Names for Dispatchers
Specify the name of the service associated with dispatchers using the
parameter MTS_SERVICE. A user requests the multi-threaded server by
specifying this service name in the connect string. A service name must be
unique; if possible, use the instance's
SID (system identifier).

If you do not set the MTS_SERVICE parameter, its value defaults to the
DB_NAME parameter. (If DB_NAME is also not set, Oracle returns the error
ORA-00114, "missing value for system parameter mts_service," when you start
the database.)

If the dispatcher's service name is TEST_DB, the parameter would be set as
follows:

MTS_SERVICE = "test_db"

A connect string for connecting to this dispatcher looks like the following:

SQLPLUS scott/tiger@\
    (DESCRIPTION=(ADDRESS=(PROTOCOL=decnet)(NODE=hq)\
    (OBJECT=mts7))(CONNECT_DATA=(SID=test_db)))

See Also: For more information about connect strings used with the
multi-threaded server configuration, see your operating system-specific
Oracle or Net8 documentation.

MTS_DISPATCHERS: Setting the Initial Number of Dispatchers
The number of dispatcher processes started at instance startup is controlled
by the parameter MTS_DISPATCHERS. Estimate the number of dispatchers to start
for each network protocol before instance startup.

When setting the MTS_DISPATCHERS parameter, you can include any valid
protocol.

The appropriate number of dispatcher processes for each instance depends upon
the performance you want from your database, the host operating system's
limit on the number of connections per process, (which is operating system
dependent) and the number
of connections required per network protocol.

The instance must be able to provide as many connections as there are
concurrent users on the database system; the more dispatchers you have, the
e database system; the more dispatchers you have, the
better potential database performance users will see, since they will not
have to wait as long for
dispatcher service.

After instance startup, you can start more dispatcher processes if needed;
however, you can only start dispatchers that use protocols mentioned in the
database's parameter file. For example, if the parameter file starts
dispatchers for protocol_A and
protocol_B, you cannot later start dispatchers for protocol_C without
changing the parameter file and restarting the instance.

See Also: For more information about dispatcher processes, see "Adding and
Removing Dispatcher Processes".

Calculating the Initial Number of Dispatcher Processes
Once you know the number of possible connections per process for your
operating system, calculate the initial number of dispatcher processes to
create during instance startup, per network protocol, using the following
formula.

number                 maximum number of concurrent sessions
of           = CEIL   (-------------------------------------)
--------------------)
dispatchers                connections per dispatcher



------------------------------------------------------------------------------
--Note: Here, connections per dispatcher is operating system dependent.
------------------------------------------------------------------------------
--




For example, assume that your system typically has 80 users concurrently
connected via TCP/IP and 40 users connected via DECNet. In this case, the
MTS_DISPATCHERS parameter should be set as follows:

MTS_DISPATCHERS = "(PROTOCOL=TCP) (DISPATCHERS=3)"
MTS_DISPATCHERS = "(PROTOCOL=DECNET) (DISPATCHERS=3)"
Examples
Example 1
To force the IP address used for the dispatchers, enter the following:


MTS_DISPATCHERS="(ADDRESS=(PARTIAL=TRUE)(PROTOCOL=TCP)\
     (HOST=144.25.16.201))(DISPATCHERS=2)"

This will start 2 dispatchers that will listen in on HOST=144.25.16.201,
which must be a card that is accessible to the dispatchers.

Example 2
To force the exact location of dispatchers, add the PORT as follows:

MTS_DISPATCHERS="(ADDRESS=(PARTIAL=TRUE)(PROTOCOL=TCP)\
     (HOST=144.25.16.201)(PORT=5000))(DISPATCHERS=1)"
MTS_DISPATCHERS="(ADDRESS=(PARTIAL=TRUE)(PROTOCOL=TCP)\
     (HOST=144.25.16.201)(PORT=5001))(DISPATCHERS=1)"



------------------------------------------------------------------------------
--Note: You can specify multiple MTS_DISPATCHERS in the INIT.ORA file, but
they must be adjacent to each other.
------------------------------------------------------------------------------
--





MTS_MAX_ DISPATCHERS: Setting the Maximum Number of Dispatchers
The parameter MTS_MAX_DISPATCHERS sets the maximum number of dispatcher
processes (of all network protocols combined) that can be started for the
duration of an instance.

You can create as many dispatcher processes as you need, but the total number
of processes, including dispatchers, cannot exceed the host operating
system's limit on the number of running processes.

Estimating the Maximum Number of Dispatches
To estimate the maximum number of dispatcher processes an instance will
require, use the following formula:

                         maximum number of concurrent sessions
MTS_MAX_DISPATCHERS =    _____________________________________

                         connections per dispatcher
MTS_SERVERS: Setting the Initial Number of Shared Server Processes
A number of shared server processes start at instance startup, as determined
by the parameter MTS_SERVERS. The appropriate number of initial shared server
processes for a database system depends on how many users typically connect
to it, and how much
processing each user requires. If each user makes relatively few requests
over a period of time, then each associated user process is idle for a large
percentage of time. In that case, one shared server process can serve 10 to
20 users. If each user
requires a significant amount of processing, a higher ratio of server
processes to user processes is needed to handle requests.

If you want Oracle to use shared servers, you must set MTS_SERVERS to at
least 1. If you omit the parameter or set it to 0, Oracle does not start any
shared servers at all. However, you can subsequently set MTS_SERVERS to a
number greater than 0 while
the instance is running.

It is best to estimate fewer initial shared server processes. Additional
shared servers start automatically when needed and are deallocated
automatically if they remain idle for too long. However, the initial servers
always remain allocated, even if
they are idle. If you set the initial number of servers high, your system
might incur unnecessary overhead. Experiment with the number of initial
might incur unnecessary overhead. Experiment with the number of initial
shared server processes and monitor shared servers until you find the ideal
system performance for typical
database activity.

See Also: For more information about changing the number of shared servers,
see "Changing the Minimum Number of Shared Server Processes".

MTS_MAX_SERVERS: Setting the Maximum Number of Shared Server Processes
The maximum number of shared server processes that can be started for the
duration of an instance is established during instance startup by the
parameter MTS_MAX_SERVERS. In general, set this parameter to allow an
appropriate number of shared server
processes at times of highest activity. Experiment with this limit and
monitor shared servers to determine an ideal setting for this parameter.

Modifying Server Processes
This section describes changes you can make after starting an instance, and
includes the following topics:

Changing the Minimum Number of Shared Server Processes
Adding and Removing Dispatcher Processes
Changing the Minimum Number of Shared Server Processes
After starting an instance, you can change the minimum number of shared
server processes by using the SQL command ALTER SYSTEM.

Oracle eventually terminates dispatchers and servers that are idle longer
than the minimum limit you specify.

If you set MTS_SERVERS to 0, Oracle will terminate all current servers when
they become idle and will not start any new servers until you increase
MTS_SERVERS. Thus, setting MTS_SERVERS to 0 effectively disables the
multi-threaded server temporarily.

To control the minimum number of shared server processes, you must have the
ALTER SYSTEM privilege.

The following statement sets the number of shared server processes to two:

ALTER SYSTEM SET MTS_SERVERS = 2
Adding and Removing Dispatcher Processes
You can control the number of dispatcher processes in the instance. If the
V$QUEUE and V$DISPATCHER views indicate that the load on the dispatcher
processes is consistently high, start additional dispatcher processes to
route user requests without
route user requests without
waiting; you may start new dispatchers until the number of dispatchers equals
MTS_MAX_DISPATCHER. In contrast, if the load on dispatchers is consistently
low, reduce the number of dispatchers.

To change the number of dispatcher processes, use the SQL command ALTER
SYSTEM. Changing the number of dispatchers for a specific protocol has no
effect on dispatchers for other protocols.

You can start new dispatcher processes for protocols specified in the
MTS_LISTENER_ADDRESS parameter and in the MTS_DISPATCHERS parameter.
Therefore, you can add dispatchers only for protocols for which there are
dispatchers; to start dispatchers for
protocols for which there are currently no dispatchers, shutdown the
database, change the parameter file, and restart the database.

If you reduce the number of dispatchers for a particular protocol, the
dispatchers are not immediately removed. Rather, Oracle eventually terminates
dispatchers that are idle for too long, down to the limit you specify in
MTS_DISPATCHERS.

To control the number of dispatcher processes, you must have the ALTER SYSTEM
privilege.
privilege.

The following example adds a dispatcher process where the number of
dispatchers was previously three:

ALTER SYSTEM
   SET MTS_DISPATCHERS = '(PROTOCOL=TCP) (DISPATCHER=4)';

See Also: For more information about tuning the multi-threaded server, see
the Oracle8 Tuning manual.

Tracking Oracle Processes
An Oracle instance can have many background processes, which you should track
if possible. This section describes how to track these processes, and
includes the following topics:

Monitoring the Processes of an Oracle Instance
Trace Files, the ALERT File, and Background Processes
Starting the Checkpoint Process
See Also: For more information about tuning Oracle processes, see the Oracle8
Tuning manual.

Monitoring the Processes of an Oracle Instance
Monitors provide a means of tracking database activity and resource usage.
Selecting the Monitor feature of Enterprise Manager/GUI displays current
information about the processes of your Oracle database. You can operate
several monitors
simultaneously. Table 4-1 lists the Enterprise Manager monitors that can help
you track Oracle processes:

Table 4-1 Enterprise Manager Monitors
Monitor Name   Description
Process

  The Process monitor summarizes information about all Oracle processes,
including client-server, user, server, and background processes, currently
accessing the database via the current database instance.


Session

  The Session monitor shows the session ID and status of each connected
Oracle session.






Monitoring Locks
Table 4-2 describes two methods of monitoring locking information for ongoing
transactions within an instance:

Table 4-2 Oracle Monitoring Facilities
Monitor Name   Description
Enterprise Manager Monitors

  The Monitor feature of Enterprise Manager/GUI provides two monitors for
displaying lock information for an instance: Lock and Latch Monitors.


UTLLOCKT.SQL

  The UTLLOCKT.SQL script displays a simple character lock wait-for graph in
tree-structured fashion. Using an ad hoc query tool (such as Enterprise
Manager or SQL*Plus), the script prints the sessions in the system that is
waiting for locks and the
corresponding blocking locks. The location of this script file is operating
system dependent; see your operating system-specific Oracle documentation. (A
second script, CATBLOCK.SQL, creates the lock views that UTLLOCKT.SQL needs,
so you must run it
before running UTLLOCKT.SQL.)





Monitoring Dynamic Performance Tables
The following views, created on the dynamic performance tables, are useful
for monitoring Oracle instance processes:

View (Monitor) Name   Description
V$CIRCUIT

  Contains information about virtual circuits, which are user connections
through dispatchers and servers.


V$QUEUE


  Contains information about the multi-threaded message queues.


V$DISPATCHER

  Contains information about dispatcher processes.


V$SHARED_SERVER

  Contains information about shared server processes.


V$SQLAREA

  Contains statistics about shared SQL area and contains one row per SQL
string. Also provides statistics about SQL statements that are in memory,
parsed, and ready for execution.


V$SESS_IO


  Contains I/O statistics for each user session.


V$LATCH

  Contains statistics for non-parent latches and summary statistics for
parent latches.


V$SYSSTAT

  Contains system statistics.





Following is a typical query of one of the dynamic performance tables,
V$DISPATCHER. The output displays the processing load on each dispatcher
process in the system:

SELECT (busy/(busy + idle)) * 100 "% OF TIME BUSY"
   FROM v$dispatcher;
Distinguishing Oracle Background Processes from Operating System Background
Processes
When you run many Oracle databases concurrently on one computer, Oracle
provides a mechanism for naming the processes of an instance. The background
process names are prefixed by an instance identifier to distinguish the set
of processes for each
instance.

For example, an instance named TEST might have background processes with the
following names:

ORA_TEST_DBWR
ORA_TEST_LGWR
ORA_TEST_SMON
ORA_TEST_PMON
ORA_TEST_RECO
ORA_TEST_LCK0
ORA_TEST_ARCH
ORA_TEST_D000
ORA_TEST_S000
ORA_TEST_S001
ORA_TEST_S001
See Also: For more information about views and dynamic performance tables see
the Oracle8 Reference.

For more information about the instance identifier and the format of the
Oracle process names, see your operating system-specific Oracle
documentation.

Trace Files, the ALERT File, and Background Processes
Each server and background process can write to an associated trace file.
When an internal error is detected by a process, it dumps information about
the error to its trace file. Some of the information written to a trace file
is intended for the
database administrator, while other information is for Oracle WorldWide
Support. Trace file information is also used to tune applications and
instances.

The ALERT file is a special trace file. The ALERT file of a database is a
chronological log of messages and errors, which includes the following:

all internal errors (ORA-600), block corruption errors (ORA-1578), and
deadlock errors (ORA-60) that occur
administrative operations, such as CREATE/ALTER/DROP DATABASE/TABLESPACE/ROLLB
ACK SEGMENT SQL statements and STARTUP, SHUTDOWN, ARCHIVE LOG, and RECOVER
Enterprise Manager statements
several messages and errors relating to the functions of shared server and
dispatcher processes
errors occurring during the automatic refresh of a snapshot
the values of all initialization parameters at the time the database and
instance start
Oracle uses the ALERT file to keep a log of these special operations as an
alternative to displaying such information on an operator's console (although
many systems display information on the console). If an operation is
successful, a "completed"
message is written in the ALERT file, along with a timestamp.

Using the Trace Files
You can periodically check the ALERT file and other trace files of an
instance to see if the background processes have encountered errors. For
example, when the Log Writer process (LGWR) cannot write to a member of a
group, an error message indicating
the nature of the problem is written to the LGWR trace file and the
database's ALERT file. If you see such error messages, a media or I/O problem
has occurred, and should be corrected immediately.


Oracle also writes values of initialization parameters to the ALERT file, in
addition to other important statistics. For example, when you shutdown an
instance normally or immediately (but do not abort), Oracle writes the
highest number of sessions
concurrently connected to the instance, since the instance started, to the
ALERT file. You can use this number to see if you need to upgrade your Oracle
session license.

Specifying the Location of Trace Files
All trace files for background processes and the ALERT file are written to
the destination specified by the initialization parameter BACKGROUND_DUMP_DEST
. All trace files for server processes are written to the destination
specified by the
initialization parameter USER_DUMP_DEST. The names of trace files are
operating system specific, but usually include the name of the process
writing the file (such as LGWR and RECO).

Controlling the Size of Trace Files
You can control the maximum size of all trace files (excluding the ALERT
file) using the initialization parameter MAX_DUMP_FILE_SIZE. This limit is
set as a number of operating system blocks. To control the size of an ALERT
file, you must manually
delete the file when you no longer need it; otherwise Oracle continues to
append to the file. You can safely delete the ALERT file while the instance
is running, although you might want to make an archived copy of it first.

Controlling When Oracle Writes to Trace Files
Background processes always write to a trace file when appropriate. However,
trace files are written on behalf of server processes (in addition to being
written to during internal errors) only if the initialization parameter
SQL_TRACE is set to TRUE.

Regardless of the current value of SQL_TRACE, each session can enable or
disable trace logging on behalf of the associated server process by using the
SQL command ALTER SESSION with the SET SQL_TRACE parameter.

ALTER SESSION SET SQL_TRACE TRUE;

For the multi-threaded server, each session using a dispatcher is routed to a
shared server process, and trace information is written to the server's trace
file only if the session has enabled tracing (or if an error is encountered).
Therefore, to
track tracing for a specific session that connects using a dispatcher, you
might have to explore several shared server's trace files. Because the SQL
 files. Because the SQL
trace facility for server processes can cause significant system overhead,
enable this feature only
when collecting statistics.

See Also: See "Session and User Licensing" for details about upgrading your
Oracle license.

For more information about messages, see the Oracle8 Error Messages manual.

For information about the names of trace files, see your operating
system-specific Oracle documentation.

For complete information about the ALTER SESSION command, see the Oracle8 SQL
Reference.

Starting the Checkpoint Process
If the Checkpoint process (CKPT) is not enabled, the Log Writer process
(LGWR) is responsible for updating the headers of all control files and data
files to reflect the latest checkpoint. To reduce the time necessary to
complete a checkpoint,
especially when a database is comprised of many data files, enable the CKPT
background process by setting the CHECKPOINT_PROCESS parameter in the
background process by setting the CHECKPOINT_PROCESS parameter in the
database's parameter file to TRUE. (The default is FALSE.)

Managing Processes for the Parallel Query Option
This section describes how, with the parallel query option, Oracle can
perform parallel processing. In this configuration Oracle can divide the work
of processing certain types of SQL statements among multiple query server
processes. The following
topics are included:

Managing the Query Servers
Variations in the Number of Query Server Processes
See Also: For more information about the parallel query option, see the
Oracle8 Tuning manual.

Managing the Query Servers
When you start your instance, the Oracle Server creates a pool of query
server processes available for any query coordinator. Specify the number of
query server processes that the Oracle Server creates at instance startup via
the initialization
parameter PARALLEL_MIN_SERVERS.

Query server processes remain associated with a statement throughout its
execution phase. When the statement is completely processed, its query server
processes become available to process other statements. The query coordinator
process returns any
resulting data to the user process issuing the statement.

Variations in the Number of Query Server Processes
If the volume of SQL statements processed concurrently by your instance
changes drastically, the Oracle Server automatically changes the number of
query server processes in the pool to accommodate this volume.

If this volume increases, the Oracle Server automatically creates additional
query server processes to handle incoming statements. The maximum number of
query server processes for your instance is specified by the initialization
parameter
PARALLEL_MAX_SERVERS.

If this volume subsequently decreases, the Oracle Server terminates a query
server process if it has been idle for the period of time specified by the
initialization parameter PARALLEL_SERVER_IDLE_TIME. The Oracle Server does
not reduce the size of the
pool below the value of PARALLEL_MIN_SERVERS, no matter how long the query
server processes have been idle.
server processes have been idle.

If all query servers in the pool are occupied and the maximum number of query
servers has been started, a query coordinator processes the statement
sequentially.

See Also: For more information about monitoring an instance's pool of query
servers and determining the appropriate values of the initialization
parameters, see the Oracle8 Tuning manual.

Managing Processes for External Procedures
You may have shared libraries of C functions that you wish to call from an
Oracle database. This section describes how to set up an environment for
calling those external procedures.


------------------------------------------------------------------------------
--
Note:

Although not required, it is recommended that you perform these tasks during
installation.



------------------------------------------------------------------------------
--





The database administrator grants execute privileges for appropriate
libraries to application developers, who in turn create external procedures
and grant execute privilege on the specific external procedures to other
users.

To Set Up an Environment for Calling External Procedures

Edit the tnsnames.ora file by adding an entry that enables you to connect to
the listener process (and subsequently, the EXTPROC process).
Edit the listener.ora file by adding an entry for the "external procedure
listener."
Start a separate listener process to exclusively handle external procedures.
The EXTPROC process spawned by the listener inherits the operating system
privileges of the listener, so Oracle strongly recommends that you make sure
appears here. The key you specify--in this case extproc_key--must match the
KEY you specify in the
listener.ora file. Additionally, the SID name you specify--in this case
extproc_agent--must match the SID_NAME entry in the listener.ora file.

Sample Entry in listener.ora
The following is a sample entry for the external procedure in listener.ora.

EXTERNAL_PROCEDURE_LISTENER =

(ADDRESS_LIST =
    (ADDRESS = (PROTOCOL=ipc)
               (KEY=extproc_key)
     )
)
...
SID_LIST_EXTERNAL_PROCEDURE_LISTENER =

(SID_LIST =
     (SID_DESC = (SID_NAME=extproc_agent)
                 (ORACLE_HOME=/oracle)
                 (PROGRAM=extproc)
      )
      )
)

In this example, the PROGRAM must be extproc, and cannot be changed; it must
be entered exactly as it appears in this example. The SID_NAME must match the
SID name in the tnsnames.ora file. The ORACLE_HOME must be set to the
directory where your Oracle
software is installed. The extproc executable must reside in $ORACLE_HOME/bin.


See Also: For more information about external procedures, see the PL/SQL
User's Guide and Reference.

Terminating Sessions
In some situations, you might want to terminate current user sessions. For
example, you might want to perform an administrative operation and need to
terminate all non-administrative sessions.

This section describes the various aspects of terminating sessions, and
includes the following topics:

Identifying Which Session to Terminate
Terminating an Active Session
Terminating an Inactive Session
When a session is terminated, the session's transaction is rolled back and
resources (such as locks and memory areas) held by the session are
immediately released and available to other sessions.

Terminate a current session using either the Disconnect Session menu item of
Enterprise Manager, or the SQL command ALTER SYSTEM...KILL SESSION.

The following statement terminates the session whose SID is 7 and serial
number is 15:

ALTER SYSTEM KILL SESSION '7,15';
Identifying Which Session to Terminate
To identify which session to terminate, specify the session's index number
and serial number. To identify the index (SID) and serial numbers of a
session, query the V$SESSION dynamic performance table.

The following query identifies all sessions for the user JWARD:

SELECT sid, serial#
  FROM v$session
  WHERE username = 'JWARD';
  WHERE username = 'JWARD';
SID        SERIAL#   STATUS
---------  --------- --------
      7        15     ACTIVE
      12        63    INACTIVE

A session is ACTIVE when it is making an SQL call to Oracle. A session is
INACTIVE if it is not making an SQL call to Oracle.

See Also: For a complete description of the status values for a session, see
Oracle8 Tuning.

Terminating an Active Session
If a user session is making an SQL call to Oracle (is ACTIVE) when it is
terminated, the transaction is rolled back and the user immediately receives
the following message:

ORA-00028: your session has been killed

If, after receiving the ORA-00028 message, a user submits additional
statements before reconnecting to the database, Oracle returns the following
message:


ORA-01012: not logged on

If an active session cannot be interrupted (for example, it is performing
network I/O or rolling back a transaction), the session cannot be terminated
until the operation completes. In this case, the session holds all resources
until it is terminated.
Additionally, the session that issues the ALTER SYSTEM statement to terminate
a session waits up to 60 seconds for the session to be terminated; if the
operation that cannot be interrupted continues past one minute, the issuer of
the ALTER SYSTEM
statement receives a message indicating that the session has been "marked" to
be terminated. A session marked to be terminated is indicated in V$SESSION
with a status of "KILLED" and a server that is something other than "PSEUDO."

Terminating an Inactive Session
If the session is not making an SQL call to Oracle (is INACTIVE) when it is
terminated, the ORA-00028 message is not returned immediately. The message is
not returned until the user subsequently attempts to use the terminated
session.

When an inactive session has been terminated, STATUS in the view V$SESSION is
"KILLED." The row for the terminated session is removed from V$SESSION after
the user attempts to use the session again and receives the ORA-00028
message.

In the following example, the DBA terminates an inactive session:

SVRMGR>   SELECT sid,serial#,status,server
     2> FROM v$session
     3> WHERE username = 'JWARD';

SID        SERIAL#  STATUS    SERVER
---------- -------- --------- ---------
        7      15   INACTIVE  DEDICATED
        12     63   INACTIVE  DEDICATED
2 rows selected.

SVRMGR> ALTER SYSTEM KILL SESSION '7,15';
Statement processed.

SVRMGR> SELECT sid, serial#, status, server
     2>    FROM v$session
     3>    WHERE username = 'JWARD';

erver
     2>    FROM v$session
     3>    WHERE username = 'JWARD';

SID       SERIAL#  STATUS    SERVER
--------- -------- --------- ---------
      7        15    KILLED  PSEUDO
      12       63  INACTIVE  DEDICATED
2 rows selected.

------------------------------------------------------------------------------
--



---------------------------------------------------------------


--
※ 来源:·BBS 水木清华站 bbs.net.tsinghua.edu.cn·[FROM: 162.105.41.141]

--
           海纳百川,
                   有容乃大,
                           壁立千尺,
                                   无欲则刚。    

※ 来源:·哈工大紫丁香 bbs.hit.edu.cn·[FROM: dip.hit.edu.cn]
[百宝箱] [返回首页] [上级目录] [根目录] [返回顶部] [刷新] [返回]
Powered by KBS BBS 2.0 (http://dev.kcn.cn)
页面执行时间:423.264毫秒