Ive got a winxp remote Oracle Server and a Windows 7 machine with IIS.
I will be hosting a site on the win7 machine, getting information from an Oracle DB on my winxp machine.
However, when i load my webpage, i get ORA-12154: TNS:could not resolve the connect identifier specified
on my Tnsname.Ora i`ve got the following:
ORCL =
(DESCRIPTION =
(ADDRESS = (PROTOCOL = TCP)(HOST = 157.xxx.xx.xxx)(PORT = 1521))
(CONNECT_DATA =
(SERVICE_NAME = ORCL.company.net)
)
)
The weird thing is that when i try to connect through sqlplus from the WIN7, I am able to do so by providing the following credentials:
$ sqlplus MyUser/MyPass@ORCL
The ConnectionString I've got is as follows:
Does anyone have any idea as to what might be wrong?
The connection string works on my local developement machine with a tnsnames.ora file that looks virtually the same.
Any help would be appreciated!