Borderline ServerFault question, but figured I'd try here first since I've had luck with Oracle questions in the past.
I'm trying to connect to an oracle database from PHP, and I'm getting the following error.
ORA-12505: TNS:listener does not currently know of SID given in connect descriptor
This is the error that PHP reports, and the error that shows up in Oracle's listener.log.
My immediate problem is fixing this error. The larger question I'd like answered is how does Oracle connection model work?
This is in a development environment that's running on my local windows machine and has been working up until now. Unfortunately, the environment was handed to me (I didn't set it up) and the people who did set it up are unavailable to help me debug it.
If I was getting a similar error with MySQL or PostgreSQL (two systems I'm more familiar with), I'd check to ensure that a database process was running, and then attempt to connect manually to the database using the username/password/connection string. Unfortunately, I'm not familiar with the Oracle tools on windows (other than SQL Developer) and I don't know what a TNS:listener or SID are in the context of Oracle (I have vague ideas, but vague ideas rarely help when you're debugging something like this)
Any general advice would be appreciated.
Updates per Comments:
There's a number of entires in my tnsnames.ora file, the relevant entry being
OBS2 =
(DESCRIPTION =
(ADDRESS = (PROTOCOL = TCP)(HOST = steel-ae39650)(PORT = 1521))
(CONNECT_DATA =
(SERVER = DEDICATED)
(SERVICE_NAME = OBS2)
)
)
This is not reflected in the list of instances when I run
LSNRCTL> services
So I think my next question is, how do I attempt to manually start up the OBS2 instance?