Hi Warren,
>> The listener supports no services
That's not right! You need to add the SID_LIST to your istener!http://www.dba-oracle.com/t_sample_listener_ora_files.htmCODE
LISTENER =
(DESCRIPTION_LIST =
(DESCRIPTION =
(ADDRESS_LIST =
(ADDRESS = (PROTOCOL = TCP)(HOST = dnsname)(PORT = 1521))
)
(ADDRESS_LIST =
(ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC))
)
)
)
SID_LIST_LISTENER =
(SID_LIST =
(SID_DESC =
(SID_NAME = PLSExtProc)
(ORACLE_HOME = /u01/app/oracle/product/xxx)
(PROGRAM = extproc)
)
(SID_DESC =
(GLOBAL_DBNAME = mysid.com)
(ORACLE_HOME =/u01/app/oracle/product/xxx)
(SID_NAME = mysid)
)
)
*******************************************************
Sorry, I don't do windows, but you should be able to narrow this down by following my checklist:
http://www.dba-oracle.com/t_troubleshootin...vity_errors.htm- It works with the IP address, so you know it's related to the DBS resolution
- You can ping using localhost
The next step is to see if you can tnspingPlease add the sid_list and try tnsping and report back!