Bad screen redrawing in Oracle SQL Developer

人盡茶涼 提交于 2019-11-28 18:49:55

You need to turn off DirectDraw -- see http://tiredblogger.wordpress.com/2009/05/29/configuring-oracle-sql-developer-for-windows-7/, specifically the bit where they add the following to sqldeveloper.conf:

AddVMOption -Dsun.java2d.noddraw=true

I couldn't even see the dropdown list when I clicked Tools. Here's what I did.

  1. Click Tools
  2. Try to locate Preferences by moving your mouse downwards from the Tools button.
  3. When in Preferences, do the same in step 2 for the left side of the panel and try to locate Environment.
  4. When in environment, try to locate 'Look and Feel'. You won't be able to see the caption but it has these values : Windows | Oracle. You'll know you found it when you see a drowdown with an actual value of Oracle.
  5. Change it to Windows.

That solved my problem.

To hell with these kind of stupid problems.

I finally solved the problem: Go to \sqldeveloper\bin\sqldeveloper.conf and add this line:

AddVMOption -Duser.language=en

The problem was de user language (in spanish do not works)

I finally solved the problem after many tries in windows 10. Oracle should fix this without tricks...

What I did:

Download lastest sqldeveloper 4.1.5 with JDK bundled. Run sqldeveloper and import settings from previous install. Close sqldeveloper, and go to USER\AppData\Roaming\sqldeveloper erasing config folders of older versions.

Modify file \sqldeveloper\sqldeveloper\bin

Change this option value to true AddVMOption -Dsun.java2d.ddoffscreen=true

Comment line:

#AddVMOption -Dsun.locale.formatasdefault=true

Add this options before IncludeConfFile sentence at then end:

AddVMOption -Dsun.awt.keepWorkingSetOnMinimize=true

AddVMOption -Dsun.java2d.noddraw=true

And finally always start sqldeveloper with sqldeveloper\sqldeveloper\binsqldeveloper64W.exe

And change sqldeveloper theme to "windows style".

lopezvit

This problem still reproduces in 2015, I'm using W7, jdk version 1.8.0_40-b25 and sqldeveloper version Version 4.1.0.18.

I had the same problem and nothing seems to help, not even William Rose's answer, until, in my desperation, I put the AddVMOption from his answer in the last line of my sqldeveloper.conf file and Voila! It worked. It seems that somehow the option is shadowed if you put it at the begging.

Just wanting to add this bit of information, but I can't comment yet due to lack of reputation.

i had the same problem with vista and win 7.

  • just downloaded the latest sql developer 1.5.5 version WITHOUT jdk included
  • exported my connections from the previously installed sql developer and
  • deleted my installed version!
  • then downloaded the JDK 1.6 update 16 from sun and installed it: http://java.sun.com/javase/downloads/index.jsp (32bit version! even if you have win x64. sql developer doesn't accept JDK x64!)
  • then i unzipped the sql developer 1.5.5 i downloaded (without the jdk)

on first start sql developer asks you for the path to java jdk: given it the path that i installed the jdk 32bit from above and it now runs fine!

even without switching from aero to basic windows design and without redrawing-problems.

hope this helps you too...

Just install old version Oracle SQL Developer 3.2.2 (3.2.20.09.87) and jdk-6u35-windows-x64.

That's how I solved the problem.

I made this step after solved

Add or replace the attribute of the following config file.

..\sqldeveloper\bin\sqldeveloper.conf

AddVMOption -Dsun.java2d.noddraw=true

Turkish developer can see this site

Remove or comment out the line below in sqldeveloper.conf:

# AddVMOption -Dsun.locale.formatasdefault=true
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!