connect_string

The connect_string parameter defines a connection to the target Oracle database. Each service defines a connect_string.

Oracle provides a way of connecting to a target Oracle database using SQLNET8. It searches for the tnsnames.ora file in the <install_dir>/DCO-15_0/network/admin directory.

For this, you need to have an entry in the tnsnames.ora file describing the instance to which you will connect. In the following form:

DCSERVER.world = 
	(DESCRIPTION =
		(ADDRESS_LIST =
			(ADDRESS = (PROTOCOL=TCP) (HOST = dixville) (PORT 				= 1521))
		(CONNECT_DATA =
			(SERVICE_NAME = DCSERVER.world)
		)
	)

where:

Example 9

connect_string = ORACLE_SERVER

This parameter is dynamic.