Nevermind I found my own answer for this and the problem is now resolved.
Problem 1 Resolution: (Failure to resolve TNS listener error)
The serviceName I set in the tnsnames.ora file needed to be changed despite numerous examples on-line that seemed to suggest that explicitly giving the name of the instance's service name would be acceptable, it apparently didn't work in this case.
I was almost certain I'd tried this previously without success but for whatever reason, it works now.
So this:
ORCL =
(DESCRIPTION =
(ADDRESS_LIST =
(ADDRESS = (PROTOCOL = TCP)(HOST = orl-mivey-ws1.ops.ivbasp.com)(PORT = 1521))
)
(CONNECT_DATA =
(SERVICE_NAME =
OracleServiceORCL)
)
)
was changed to this:
ORCL =
(DESCRIPTION =
(ADDRESS_LIST =
(ADDRESS = (PROTOCOL = TCP)(HOST = orl-mivey-ws1.ops.ivbasp.com)(PORT = 1521))
)
(CONNECT_DATA =
(SERVICE_NAME =
ORCL)
)
)
Following this same naming convention for every database instance on my system so the instance name was also assigned as the SERVICE_NAME resolved the problem. For anyone else experiencing problems with the same error code, aside from extensive documentations elsewhere, you could review the steps I'd initially posted on your system as a troubleshooting reference.
Problem 2 Resolution: (No OracleDBConsole<INSTANCENAME> installed on the system)
After further research, apparently this service is only required if you intend to use the web-based Enterprise Manager program. But I always like to have everything that is supposed to be included in a typical setup to be present or I don't get that warm fuzzy feeling and tend to look at missing components like this for being probable culprits when other things don't work as expected.
So if anyone else ever needs to manually install or re-install this service, from a command prompt you can change to the directory that emca is located on your installation which for 10g is <systemDrive:>\oracle\product\10.2.0\db_1\BIN
and execute the following command:
emca -config dbcontrol db -repos create
I found more information available at
http://www.stanford.edu/dept/itss/do...e.htm#CACBFHBB
Search the document for EMCA.
Thanks.