How to connect client to server in oracle

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.
  • Client Computer
    • It is running on the same network as the database server.
    • Oracle Client is installed.
    • TCP/IP protocol support is installed.

 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:
  1. 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 called hosts. 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 named sales-server may look like the following:

    #IP address of server     host name       alias
    144.25.186.203            sales-server    sales.us.acme.com
     
    To use PING, enter the following at the command line:
    ping database_server_host
    
    
    The database_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
    
    
  2. 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.
  1. Start the listener with the Listener Control utility. From the command line, enter:
    lsnrctl
    LSNRCTL> START [listener_name]
    
    
    where listener_name is the name of the listener defined in the listener.ora file. It is not necessary to identify the listener if you are using the default listener, named LISTENER.
    A status message indicating that the listener has started successfully displays.
  2. Start the database:
    1. Start SQL*Plus without connecting to the database:
      sqlplus /nolog
      
      
    2. Connect to the database as SYSDBA:
      SQL> CONNECT username/password as sysdba
      
      
      For example, SYSTEM/MANAGER is a SYSDBA user.
    3. 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 the PFILE option, the Oracle database uses the standard initialization parameter file located in the $ORACLE_BASE/admin/db_name/pfile/sid directory on UNIX platforms, and ORACLE_BASE\admin\db_name\pfile\sid directory on Windows. If you do not specify a database name, then the database uses the value of the DB_NAME parameter specified in the initialization parameter file.

  3. Confirm that database service registration with the listener has completed. From the Listener Control utility, enter:
    LSNRCTL> SERVICES [listener_name]
    
    
    The SERVICES 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.
The easy connect naming method can eliminate the need for service name lookup in the 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

Alternate Connection using Oracle Net Configuration Assistant

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:
  1. Start Net Configuration Assistant.
    The Welcome page appears.
  2. Select Local Net Service Name Configuration.
  3. Click Next.
    The Net Service Name Configuration page appears.
  4. Click Add, and then click Next.

    The Net Service Name Configuration, Database Version page appears:
  1. 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.
  2. Click Next.
    The Net Service Name Configuration, Service Name appears.
  3. 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.
  4. Click Next.
    The Net Service Name Configuration, Select Protocols page appears.
  5. 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.
  6. Click Next.
    The page appropriate for the selected protocol appears.
  7. 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.
  8. 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
    Depending on your diagnosis of the problem, perform one of the following tasks:
    • 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,
  9. Click Next.
    The Net Service Name Configuration, Net Service Name page appears.
  10. 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.
  11. Click Next.
    The Net Service Name Configuration, Another Net Service Name page appears.
  12. Click No, and then click Next.
    The Net Service Name Configuration, Configuration Done page appears.
  13. Click Next, and then click Finish.

     Steps:-4


Connect to the Database

From the client computer, connect to the database server as follows.
  1. Start SQL*Plus:
    sqlplus
    
    
  2. Connect to the database as follows:
    CONNECT username/password@net_service_name 
     
     
     

No comments:

ORA-01552: cannot use system rollback segment for non-system tablespace 'TEMP'

 ORA-01552: cannot use system rollback segment for non-system tablespace "string" Cause: Used the system rollback segment for non...