Sunday, May 31, 2020

Change lenguaje configuration Oracle SQL Developer 19


Sometimes you need to change  configuration languaje for SQL Developer, in my case, i need translate to english for that i type en, check the example below.


Go to folder installation SQL Developer :

Example on linux: Is similar on Windows.

YOUR_PATH/sqldeveloper/sqldeveloper/bin

Update file: sqldeveloper.conf

Add next row, anywhere part of file, i suggest you in  midle file.

#GUI languaje 
AddVMOption -Duser.language=en


Save file.

Open again SQL Developer, that it is.


No comments:

Post a Comment

🚀 Understanding O(1) vs O(n) – With Practical Code Examples

When writing efficient Java code, algorithmic complexity matters—a lot. In this post, I’ll walk you through two fundamental time complexitie...