Configure The Oracle Network Environment
Configure The Oracle Network Environment
• To connect to a database service, clients use a connect descriptor that provides the location of the database and
the name of the database service.
• The following example shows a connect descriptor that enables clients to connect to a database service called
finance.us.flowers.com
Oracle Net Naming Methods
Tools for Configuring and Managing Oracle Net
Services
• Enterprise Manager Net Services Administration page
• Oracle Net Manager
• Oracle Net Configuration Assistant
• Listener Control Utility (Command Line)
Configure Net Services with Enterprise Manager
Configure Client Connections with Net Manager
Networking the Net Configuration Assistant
Communication Between Databases
• A database link is a schema object in one database that enables you to access objects on another database.
• To create a private database link, you must have the create database link system privilege.
• To create a public database link, you must have the create public database link system privilege.
• When an application uses a database link to access a remote database, oracle database establishes a database session in
the remote database on behalf of the local request.
• After you create a database link, you can use it to refer to tables and views on the other database.
• In SQL statements, you can refer to a table or view on the other database by appending @dblink to the table or view
name.