INBOUND_CONNECT_TIMEOUT_
SUBSCRIBE_FOR_NODE_DOWN_EVENT_
Start the listener again.
This blog is for new DBA's looking for day to day problems quick solution. I am posting solutions which i have faced as DBA or implemented the new features to learn. Please DON'T apply any solution directly to production databases. Please consult to Documentation, Metalink or OTN to have detailed impact.
To convert the decimal number simply follow the trick:
SQL> SELECT TO_CHAR(TO_DATE(trunc(100.50),'J'),'JSP') ' Point ' TO_CHAR(TO _DATE( to_number(substr('100.50', instr('100.50','.') + 1)),'J'),'JSP') from dual;