1

I am trying to change the date display format in SQL Developer, but even after setting NLS_DATE_LANGUAGE='ITALIAN' I get this:

select sysdate from dual; ==> 21 DECEMBER 18 (wrong, still in English)

select to_char(sysdate,'DD MONTHYYYY') from dual; ==> 21 DICEMBRE 2018 (Italian, correct)

There is some different parameter I need to set elsewhere? Thank you

1
  • you can try this , select to_char(sysdate, 'dd Month, Day', 'NLS_DATE_LANGUAGE = ITALIAN') from dual Commented Dec 21, 2018 at 12:15

1 Answer 1

2

Try if the following works for you.

In the menu bar click on "Tools" and choose "Preferences". Expand the node "Database" and click on the sub node "NLS". Set "Date Language" to "ITALIAN" there. Click the "OK" button.

Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.