Link to home
Start Free TrialLog in
Avatar of hojohappy
hojohappy

asked on

Oracle Connection Error - ORA-12514: TNSlistener does nto currently know of service requestedon connect description

Hoping someone can explain what this error means and how to resolve.  Have a windows C# application that is trying to connect to a Oracle database.  Can connect fine through SQL Developer.  

Oracle Connection Error - ORA-12514: TNSlistener does nto currently know of service requestedon connect description
ASKER CERTIFIED SOLUTION
Avatar of slightwv (䄆 Netminder)
slightwv (䄆 Netminder)

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of madunix
madunix

Check the listener service if it is running, try pinging the listener or check the listener status using lsnrctl,
Also check for open ports 1521 by using "netstat" or "nmap" commands
It's also possible the database is down so it hasn't self-registered to the listener, or the database has the local listener parameter set to a listener other than the one you're connecting to.

ask your dba to check the server

This asssumes the database was up previously while using sql developer but has gone down since then while using the .net app