I have the host, port, user id and password but missing SID for connecting to Oracle DBMS. How can I find the list of SIDs on that server?
|
A better way is, if you have access to the host machine and the Oracle install is to use the command:
In the above example you can connect to the XE database using the Conect Strings XEXDB, XE_XPT or XE. |
|||
|
|
The short answer is that you need access to the host OS: For Unix, ps -ef|grep pmon will show you one or more processes with names like ora_pmon_xxxx, and xxxx is the instance name. In Windows I guess there is a similar signature in the task list. In practice, this information is usually given to you by whoever administers the database when your connecting account is created. |
|||||
|
|
The question comes down to : which ORACLE_SID's or services are supported by the listener that is running on host X port Y. Depending on how secure this listener is configured you can see this using the lsnrctl command from a client that has lsnrctl installed. To be able to do this you do need an oracle server installation on that client. When you have that you can issue
The default setting of the 10g listener fill cause the following result: TNS-01189: The listener could not authenticate the user This is because from 10g oracle default has Security ON: Local OS Authentication meaning that only the local OS user that started the listener can issue lsnrctl commands to the listener. The listener will refuse to answer any other user. |
|||
|
|
|
Another option to consider is the file /etc/oratab on Unix or its equivilent on Windows, which I think is a registry hive. The oratab should list all SIDs on a host, whether currently running or not. |
|||
|

