Group: Members
Posts: 2
Joined: 15-February 12
Member No.: 46,768
I had installed Oracle 11g R1 on windows system where Oracle 10g R2 also installed. As I required both versions parallel on same server, both are installed on different Oracle homes.
Configured listener.ora & tnsnames.ora files on 11g (path) with 10g details also in same file, checked the listener status, its “READY” & windows services also started but now only I am able to connect Oracle 11g & not able to connect Oracle 10g.
Could you please help me, how to configure so that I can able to connect both VERSIONS separately on the same server.
After above, given following settings in parameter file
SQL>alter system set LOCAL_LISTENER="(ADDRESS_LIST=(ADDRESS=(PROTOCOL=TCP)(HOST=D-113009644)(PORT=1522)) (ADDRESS=(PROTOCOL=TCP)(HOST=D-113009644)(PORT=1521)))" scope=BOTH;
Listeners started separately as given below; -------------------------------------------------
lsnrctl start orcl11
lsnrctl start orcl
listeners started successfully..
----------
After above things try connecting both DB's as given below
sqlplus system/orcl@//D-113009644:1521/orcl - for 10g (not able to connect - status)
sqlplus system/orcl11@//D-113009644:1522/orcl11 - for 11g (able to connect successfully)
Even I tried connecting Oracle 10g DB (instance: orcl) thru Oracle 11g connection - but not able to connect 10g db
Could you please analyze above:
Hope I can expect advice on this, so that i can able to get connect both db's