hello,
I have a 10g DB and a 9i db on the same box listening on diff ports and would like to just use one listener. is this possible and how would I want to modify this listener.ora and/or tnsnames.ora to be able to listen for the 9i db(oratest) on 1521? Thanks in advance!
I have a 10g DB and a 9i db on the same box listening on diff ports and would like to just use one listener. is this possible and how would I want to modify this listener.ora and/or tnsnames.ora to be able to listen for the 9i db(oratest) on 1521? Thanks in advance!
Code:
LISTENER_10g =
(DESCRIPTION_LIST =
(DESCRIPTION =
(ADDRESS_LIST =
(ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC))
(ADDRESS = (PROTOCOL = IPC)(KEY = TEST))
)
(ADDRESS_LIST =
(ADDRESS = (PROTOCOL = TCP)(HOST = btest)(PORT = 1528))
)
)
)
SID_LIST_LISTENER =
(SID_LIST =
(SID_DESC =
(GLOBAL_DBNAME = TEST)
(ORACLE_HOME = /u01/app/oracle10/product/ora102)
(SERVICE_NAME= TEST)
)
)