>>SYSDATE to Chinese date format
I assume you are wanting to display Chinese characters as output of the to_date call.
How Oracle display characters are typically based on the NLS parameters of the system and/or client.
That said, there are some NLS tricks you can do.
Try this from:
http://download.oracle.com/docs/cd/B25329_01/doc/appdev.102/b25108/xedev_global.htmSELECT TO_CHAR(sysdate, 'DD/MON/YYYY',
'NLS_DATE_LANGUAGE = ''Traditional Chinese'' ') from dual;