At this point, it is necessary to make an important distinction about Net management. As we mentioned,
Oracle has provided several online interfaces to assist with Net configuration and management.
These GUI tools include:
- Oracle Net Configuration Assistant
- Oracle Connection Manager: The Oracle Connection Manager Control utility enables you to administer Oracle Connection Managers.
You can use its commands to perform basic management functions on one or more Oracle Connection Managers.
Additionally, you can view and change parameter settings.
- A router through which a client connection request may be sent either to its next hop or directly to the database server.
Clients who route their connection requests through an Oracle Connection Manager can then take advantage of the session multiplexing, access control, or protocol conversion features configured on that Oracle Connection Manager.
- Enterprise Manager
However, please note that these tools are not always suitable for large Oracle installations, especially those that are still running legacy Oracle versions. In addition, these tools are only front ends that populate the Oracle configuration files, and many experienced administrators prefer to edit the parameter files directly without the use of the GUI tools. Hence, an understanding of the syntax and functions of the parameter files is critical to a full understanding of Net.
In Oracle, any computer can serve as a Net client, a Net server, or as both a client and a server.
Creating a Net Client in Legacy Systems prior to Oracle 9i
The following bullet points describe creating Net client using Legacy Oracle Net8 Technology
There are two steps to creating a Net client on a Windows computer:
- Run the Oracle installer to install the Net client-software component. This process places the Net software in the c:\orawin directory for Windows, or the c:\orant directory for Windows NT clients.
- Create a tnsnames.ora file to establish connectivity to the remote database. This can be done with Net Easy Config, but most
corporations have a pre-built tnsnames.ora file that can be copied into the c:\orant\network\admin\location (or the c:\orant\net80\admin
directory for Net).
-
Creating a Net Server
To create a Net server, you need only install an Oracle database and create and successfully configure a listener.ora file to start the listener process. Once the files are properly configured, connectivity can be established by entering SQL*Plus and entering the TNS service name of the desired database. That is all there is to Net. If this sounds simplistic, it is because we have not yet looked into the internals of the parameter files. We will do so shortly.
In the next lesson, we will look at the components of Oracle Network Services.