Skip to Main Content

Oracle Database Discussions

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Different timezone setup in listener.

Prasanna venkateshJun 6 2010 — edited Jun 21 2010
Hi All,

I am trying to create a listeners in different timezone. I am following the metalink note 399448.1. I followed the same steps as mentioned in the document.
But the time is not changing when I give "select sysdate from dual". I pasted the steps changes done in the server and client. Please let me any mistake I made.

In server listener.ora file

LISTENER =
(DESCRIPTION =
(ADDRESS = (PROTOCOL = TCP)(HOST = XXXXXX)(PORT = 1521))
)


SID_LIST_LISTENER =
(SID_LIST =
(SID_DESC =
(ORACLE_HOME = E:\Ora10gDB)
(SID_NAME = ORCL)
(ENVS='TZ=CST6CDT')
)
)

LISTENER1 =
(DESCRIPTION =
(ADDRESS = (PROTOCOL = TCP)(HOST = XXXXXX)(PORT = 1522))
)


SID_LIST_LISTENER1 =
(SID_LIST =
(SID_DESC =
(ORACLE_HOME = E:\Ora10gDB)
(SID_NAME = ORCL)
(ENVS='TZ=EST5EDT')
)
)

Restarted the both listeners.

In the client tnsnames.ora file

local =
(DESCRIPTION =
(ADDRESS = (PROTOCOL = TCP)(HOST = XXXXXX)(PORT = 1521))
(CONNECT_DATA =
(SERVER = DEDICATED)
(SID = orcl)
)
)

local1 =
(DESCRIPTION =
(ADDRESS = (PROTOCOL = TCP)(HOST = XXXXXX)(PORT = 1522))
(CONNECT_DATA =
(SERVER = DEDICATED)
(SID = orcl)
)
)


let me is any mistake in the steps.

Regards,
Prasanna
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Jul 19 2010
Added on Jun 6 2010
2 comments
5,219 views