Hi,

I am facing a problem of having difference in sysdate and current_timestamp. Server date matches with sysdate but not with current_timestamp.

$ sqlplus / as sysdba

SQL*Plus: Release 11.2.0.1.0 Production on Wed May 30 16:29:04 2012

Copyright (c) 1982, 2009, Oracle. All rights reserved.


Connected to:
Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production
With the Partitioning, Oracle Label Security, OLAP, Data Mining,
Oracle Database Vault and Real Application Testing options

SQL> SELECT CURRENT_TIMESTAMP,to_char(sysdate, 'Dy DD-Mon-YYYY HH24:MI:SS') as "Now" from dual;

CURRENT_TIMESTAMP
---------------------------------------------------------------------------
Now
------------------------
21-JUN-12 05.29.22.503772 PM +00:00
Wed 30-May-2012 16:29:22


SQL> !date
Wed May 30 16:29:26 IST 2012


...

Please Help
Thanks