Identify the processes and memory structures that make up an Oracle instance.
Components that make up an Oracle Instance
The diagram below illustrates the processes and memory structures that make up an Oracle instance. When you move your mouse over a box, you will see a brief description of what each particular process does. The square boxes represent processes, while the circle in the center represents an area of memory that they all share. Boxes drawn in bold are processes that are mandatory, and that will always be running when a database is open. The other processes are optional, and whether or not they will exist depends on the specific mix of Oracle features that you are using.
Database Instance Configurations
Oracle Database runs in either a single-instance configuration or an Oracle Real Application Clusters (Oracle RAC) configuration. These configurations are mutually exclusive. In a single-instance configuration, a one-to-one relationship exists between the database and a database instance as shown in figure 4-3.1.
In Oracle RAC, a one-to-many relationship exists between the database and database instances. The following figure 4-3.2 shows database instance configuration for RAC.
Whether in a single-instance or Oracle RAC configuration, a database instance is associated with only one database at a time. You can start a database instance and mount (associate the instance with) one database, but not mount two databases simultaneously with the same instance
Simultaneous Processes
You will notice that several of the process names end with one or more zeros. DBW0 is one example. An Oracle instance can be configured to have several such processes running simultaneously. For example, if your database experiences a high volume of updates,, you might configure the instance to run with two database writers, which would be named DBW0 and DBW1. This generally only makes sense when you have multiple CPUs to run those processes. The procedures for displaying a list of running processes are different, and depend on whether you are using
Listing Processes on a UNIX system
You can use the UNIX ps command to generate a list of running Oracle processes. The way this is generally done is to use
ps -ef
to see an extended process status listing, and then grepping for the processes of interest. For example, it's very common to run multiple instances on the same server, and if you are not sure which instances you have running, you can find out by grepping for database writers. Every instance has at least one database writer, so you are sure not to miss any Here's an example:
Notice the process names. The first part is always ora. The second part identifies the specific Oracle process, dbw0, lgwr, and so on. The third part is the SID , which identifies the instance. This naming convention enables you to have multiple instances, or databases, on one computer. To see a list of all processes running for an instance, just grep for the SID. For example:
If you want to see all the Oracle processes period, you can grep for the first part of the name: ora.
Look at Oracle Processes under Windows
When Oracle runs on Windows, Oracle implements the various processes as threads running under one Oracle service. You can look at the list of services, and that will tell you how many Oracle instances you have running. To do this, use the Start menu, and go to
Start->Settings->Control Panel.
When the Control Panel opens, double-click on the Services icon. You should see a list of services similiar to that in the example below.
Control Panel
The Oracle processes, since they start with o, are usually far enough down in the list that you will need to scroll down in order to see them. The convention used for naming Oracle services is OracleServiceservice_name, where service_name represents the instance name. In the example just shown, you can see a service named OracleServiceORCL. That tells you that you have an instance named ORCL running on the server.
With the release of Oracle, Oracle provides a utility known as the Oracle Administration Assistant for Windows. You can use this utility to see a detailed listing of the threads running within each service. To do this, first start the assistant. You will find it under
Start->Programs->Oracle - OraHome1->Database Administration
->Oracle Administration Assistant for Windows Server.
After it starts, select the instance that you are interested in from the list, and you will then see a screen like this:
To run the Oracle Administration Assistant for Windows NT, you must have Internet Explorer installed on your PC, and must have the Microsoft Management Console installed as well.
When an instance is started, Oracle Database allocates a memory area and starts background processes. The memory area stores information such as the following:
Program code
Information about each connected session, even if it is not currently active
Information needed during program execution, for example, the current state of a query from which rows are being fetched
Information such as lock data that is shared and communicated among processes
Cached data, such as data blocks and redo records, that also exists on disk
Oracle Process Instance - Quiz
Before going on, click the Quiz link below to take this quiz and your knowledge of the process abbreviations. Oracle Process Instance - Quiz