I'm a new (ASP.NET) developer starting on an existing project, part of which connects to an Oracle database. I've not used Oracle before.
At the point the web app trys connecting to Oracle it's throwing the above exception.
Plenty of other posts refer to this exception but I feel I've followed all advice to no avail.
Here's an over view of my setup:
We must have missed something but I just don't know what. Please help!
UPDATE:
I have found that replacing the SID in the connection string with the full definition from my tnsnames.ora file actually works. Example below. Must be something to do with ASP.NET failing to locate my tnsnames.ora file, but I know the file is valid and as far as I can tell all my system variables are pointing to the right place. So at least I'm working now, but I'd like to understand why my tnsnames.ora file isn't working.
Failing connection string:
"Data source=RMSUSNAP;User ID=uuuu;Password=pppp;"
Working connection string:
"Data source=(DESCRIPTION = (ADDRESS = (PROTOCOL = TCP)(HOST = replaced.host.name)(PORT = 1521))(CONNECT_DATA =(SID = rmsusnap)));User ID=uuuu;Password=pppp;"
Relevant part of tnsnames.ora:
RMSUSNAP.WORLD =
(DESCRIPTION =
(ADDRESS = (PROTOCOL = TCP)(HOST = replaced.host.name)(PORT = 1521))
(CONNECT_DATA =(SID = rmsusnap))
)
You should use RMSUSNAP.WORLD in your connection string, instead of just "RMSUSNAP".
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With