How to make following query return 'EN' instead of 'US' or 'GB'
[select sys_context('userenv','local') from dual]
Default tables for user HR in XE has language column values as 'EN', but my locale returns 'US' because of which some of my applications are not returning correct data.
I tried setting NLS_LANG with different options, but they return 'GB', but I want to have 'EN'
thanks