Bad screen redrawing in Oracle SQL Developer

前端 未结 9 2178
别那么骄傲
别那么骄傲 2020-12-25 07:52

I have a problem with Oracle SQL Developer. When I use it on a Windows Server 2003 machine, it works fine. When I use it on my Windows 7 desktop, I get a lot of redraw pro

相关标签:
9条回答
  • 2020-12-25 08:25

    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.

    0 讨论(0)
  • 2020-12-25 08:27

    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...

    0 讨论(0)
  • 2020-12-25 08:29

    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".

    0 讨论(0)
  • 2020-12-25 08:34

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

    # AddVMOption -Dsun.locale.formatasdefault=true
    
    0 讨论(0)
  • 2020-12-25 08:35

    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

    0 讨论(0)
  • 2020-12-25 08:37

    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.

    0 讨论(0)
提交回复
热议问题