I am creating a data source on a reporting tool of IBM (Cognos). That asks SQL*Net connect string.
Following is my tnsnames.ora entry. I am able to connect with SQLPLUS and TNSPING from the client.
OVDB =
(DESCRIPTION =
(ADDRESS = (PROTOCOL = TCP)(HOST = 172.22.1.180)(PORT = 1521))
(CONNECT_DATA =
(SERVER = DEDICATED)
(SERVICE_NAME = OVDB)
)
)
What would be my SQL *Net connect string? Is it OVDB?
Cognos wants to connect with Oracle database through it (OCI).
Yes, it's the name (or alias, or whatever) of the entry in your TNSNames file.