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!

link|improve this question

78% accept rate
feedback

3 Answers

up vote 1 down vote accepted

If you set the system environment variable TNS_ADMIN to point at the directory where your tnsnames.ora file resides, does it help your web service? It sounds to me like your web server is looking at the wrong directory, since it's saying it can't resolve the name.

link|improve this answer
Where can i find this TNS_ADMIN? I am relatvely new to oracle... Thanks for the reply! – SlickD Nov 30 '11 at 8:25
You set it in the computer properties as a system environment variable. Your tnsnames.ora file resides typically in the client Oracle home directory, in the network\admin folder. – DCookie Nov 30 '11 at 14:27
feedback

Have you tried using a direct connection string eg

Data Source=(DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=157.xxx.xx.xxx)(PORT=1521))
     (CONNECT_DATA=(SERVICE_NAME=ORCL.company.net)));User Id=MyUser;Password=MyPass;
link|improve this answer
+1 Using this approach, you don't have to worry about the tnsnames.ora file or the path to find it. All information is contained in the connection string. – Andomar Dec 1 '11 at 14:49
@Andomar What did you write in 'provider' tag? – Emanuele Greco Apr 18 at 9:08
feedback
Data Source=(DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=157.xxx.xx.xxx)(PORT=1521)) 
     (CONNECT_DATA=(SID=NETBDS)));User Id=MyUser;Password=MyPass; 

how about try this method ?

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.