How to change language in Oracle SQL Developer
Today I installed SQL developer on a machine whose operating system in Spanish, and SQL Developer got installed in Spanish too.
I usually like to have programs installed in English because, among other things, it is usually easier to find help.
It turns out that there is a pretty easy way to change the user interface language, which I describe below.
- Close SQL Developer, if it is running.
- Go to the installation folder. To do that you can right-click on its shortcut, and click on ‘Open file location’.
- Once there, open the ‘sqldeveloper’ folder, and then the ‘bin’ folder.
- There is a file called “sqldeveloper.conf”, which is the one you need to edit to change the language. Open this file with the text editor of your choice.
- To change the language, you need to add a new setting there. Since SQL Developer is a Java application, we need to use the AddVMOption command to pass the parameter to the Java virtual machine when it starts the application. The parameter we need to add is ‘user.language’ and in this case we need to set it to ‘en’, for English. So, this is the line you need to add: AddVMOption -Duser.language=en
And that’s it. Now you can save and close the file, and the next time you open SQL Developer, you will see it in English!