Start to Oracle Net Connections
This chapter is designed to help novice users set up and test a simple but common configuration—one between a client application and a database over a TCP/IP network.Prerequisites to Establishing Connectivity
The tasks in this quick start guide show a TCP/IP connection between a client computer and a database server. The following about the database server and client computers is assumed:-
Database Server Computer
-
It is running on the same network as the client.
-
An Oracle database is installed.
-
TCP/IP protocol support is installed.
-
A listener is configured.
-
It is running on the same network as the client.
-
Client Computer
-
It is running on the same network as the database server.
-
Oracle Client is installed.
-
TCP/IP protocol support is installed.
-
It is running on the same network as the database server.
Steps:-1
Confirm Network Availability
Before using Oracle Net to connect a client computer to a database server, confirm that the client computer can successfully communicate with the database server computer. Evaluating network connectivity can eliminate network-based errors.To confirm network connectivity:
-
Confirm that the database server computer can communicate with itself with a loop-back test.
A loopback test is a connection from the database server back to itself. Many network protocols provide a means of testing network connections. The utility PING can be used for TCP/IP network.
In a TCP/IP network, each computer has a unique IP Address. A name resolution service, such as Domain Name System, can be used to map the IP address of a computer with its host name. If a name resolution service is not used, then the mapping is typically stored in a centrally maintained file calledhosts
. This file is located in the/etc
directory on UNIX and the\winnt
directory on Windows.
For example, an entry for a database server computer namedsales-server
may look like the following:
#IP address of server host name alias 144.25.186.203 sales-server sales.us.acme.com
ping database_server_host
Thedatabase_server_host
is the host name of the database server computer. For example:
ping sales-server
If the loopback was unsuccessful, try using the IP address of the database server. For example:
ping 144.25.186.203
-
Verify the client computer can successfully communicate with the database server computer.
This varies according to the network protocol. For TCP/IP, you can use PING, FTP or TELNET utilities. If the client computer cannot reach the server, verify that the network cabling and network interface cards are correctly connected. Contact your network administrator to correct these problems.
Steps:-2
Start the Listener and the Database Server
The listener and database server must be running in order for the database server to receive connections.-
Start the listener with the Listener Control utility. From the command line, enter:
lsnrctl LSNRCTL> START [listener_name]
wherelistener_name
is the name of the listener defined in thelistener.ora
file. It is not necessary to identify the listener if you are using the default listener, namedLISTENER
.
A status message indicating that the listener has started successfully displays.
-
Start the database:
-
Start SQL*Plus without connecting to the database:
sqlplus /nolog
-
Connect to the database as SYSDBA:
SQL> CONNECT username/password as sysdba
For example,SYSTEM/MANAGER
is a SYSDBA user.
-
Enter the
STARTUP
command, specifying the database name and full path of the parameter file:
SQL> STARTUP database_name pfile=file
If you do not specify thePFILE
option, the Oracle database uses the standard initialization parameter file located in the$ORACLE_BASE/admin/
db_name
/pfile/
sid directory on UNIX platforms, andORACLE_BASE
\admin\
db_name
\pfile\
sid directory on Windows. If you do not specify a database name, then the database uses the value of theDB_NAME
parameter specified in the initialization parameter file.
-
Start SQL*Plus without connecting to the database:
-
Confirm that database service registration with the listener has completed. From the Listener Control utility, enter:
LSNRCTL> SERVICES [listener_name]
TheSERVICES
command lists the services supported by the database, along with at lease one available service handler.
Steps:-3
Configure the Client for Connection to a Database
Once network connectivity has been verified, you can use easy connect naming to connect to the database.
NOTE:
Oracle Database 10g does not support the use of Oracle Names. Neither
Oracle Database 10g clients nor Oracle Databases can use Oracle Names,
including by LDAP proxy, to resolve naming. Oracle8i and Oracle9i
clients can still use Oracle Names to resolve naming for an Oracle
Database 10g database; however, customers are strongly recommended to
migrate to LDAP to take advantage of the new features of Oracle Database
10g.tnsnames.ora
files for TCP/IP environments. This naming method provides
out-of-the-box TCP/IP connectivity to databases. It extends the
functionality of the host naming
method by enabling clients to connect to a database server with an
optional port and service name in addition to the host name of the
database.CONNECT username/password@host[:port][/service_name][/instance_name] where:If you have performed Oracle Database server install in Typical mode, the default service name used by oracle instance is
ORCL
, and the following easy connect syntax can be used to connect to that instance:CONNECT username/password@host/ORCL
If you do not wish to use the easy connect naming method, you can use Oracle Net Configuration Assistant to create a net service name, a simple name for the database service. The net service name resolves to the connect descriptor, that is, the network address of the database and the name of the database service. The client will use the net service name to connect to the database.
The following example shows the net service name
sales
mapped to a connect descriptor for a database called sales.us.acme.com
. A client can use sales
mapped to connect to sales.us.acme.com
.sales= (DESCRIPTION= (ADDRESS=(PROTOCOL=tcp)(HOST=sales-server)(PORT=1521)) (CONNECT_DATA= (SERVICE_NAME=sales.us.acme.com)))To configure a client with a net service name:
-
Start Net Configuration Assistant.
The Welcome page appears.
-
Select Local Net Service Name Configuration.
-
Click Next.
The Net Service Name Configuration page appears.
-
Click Add, and then click Next.
The Net Service Name Configuration, Database Version page appears:
-
If the destination service is an Oracle9i or Oracle8i database, then select Oracle8i or later database or service. If destination service is an Oracle8 release 8.0 database, then select Oracle8 release 8.0 database or service.
-
Click Next.
The Net Service Name Configuration, Service Name appears.
-
Enter the name that identifies the database.
The service name is defined during database creation. If you are unsure what the service name is, ask the Database Administrator who created the database.
-
Click Next.
The Net Service Name Configuration, Select Protocols page appears.
-
Select the protocol on which the listener is configured to listen.
Note that this protocol must also be installed on the client. The
listener is configured to listen on TCP/IP by default.
-
Click Next.
The page appropriate for the selected protocol appears.
-
Enter the appropriate protocol parameters for the selected protocol in the fields provided, and then click Next.
The Net Service Name Configuration, Test page appears.
-
Click Yes perform a test.
During a test, Oracle Net Configuration Assistant contacts the remote database service, establishes a connection, and ends contact.
A successful test results in the following message:
Connecting...Test successful.
If the test fails, it can be because the:
-
Default username (
scott
) and password (tiger
) are not valid
-
Protocol address information does not match the listener information
-
Listener is not running
-
Destination database service is down
-
Click Change Login to change the username and password for the connection.
-
Click Back to review protocol address information.
-
Start the listener or database on the server,
-
Default username (
-
Click Next.
The Net Service Name Configuration, Net Service Name page appears.
-
Accept the default net service name or enter another net service name
in the Net Service Name field. The name you enter should be unique to
the client.
-
Click Next.
The Net Service Name Configuration, Another Net Service Name page appears.
-
Click No, and then click Next.
The Net Service Name Configuration, Configuration Done page appears.
-
Click Next, and then click Finish.
Steps:-4
No comments:
Post a Comment