Skip to Main Content

SQL Developer

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

sqldeveloper64W.exe has stopped working

user12140853Nov 9 2013 — edited Aug 28 2014

Problem Summary

---------------------------------------------------

Receive error: sqldeveloper64W.exe has stopped working when attempting to open .sql files

Problem Description

---------------------------------------------------

Within SQL Developer 4.0, I've gone into Preferences > File Types, found the .sql extension and checked the box that says Open with SQL Developer.  I've gone to the Set Associations control panel in Windows 7 Professional 64 bit and confirmed that the Current Default is set to sqldeveloper64W.  I've used the CMD function to access regedit, deleted the file associations for .sql and set all preferences again.  If SQL developer is not already open on my machine and I attempt to open a .sql file, the application launches fine.  If I try to open additional files from windows explorer or windows search, I get an APPCRASH indicating that sqldeveloper64W.exe has stopped working.  I click close the program and sql developer remains open, but my file has not opened. 

Error Codes

---------------------------------------------------

sqldeveloper64W.exe has stopped working

This post has been answered by thatJeffSmith-Oracle on Nov 9 2013
Jump to Answer

Comments

843810
Have browsed through the forum and it seems that the
JCE provider bundled with JCE and JDK1.4+ do nothing
on RSA. Can I make this conclusion?
Yes, but: A standard installation of Java comes with 5 providers. SunJCE is only one of these providers. Two other providers, SunJSSE and SunRsaSign do provide RSA for digital signature purposes.
843810
But it seems the SunJCE doesn't provide the RSA (and AES, who knows what else is missing) encryption and decryption functions. Can anyone list what is missing from the SunJCE? Also, from the forum, many have pointed to this bounty castle provider. Can any of you guys who are familiar with this provider give us the procedure of installation? Thanks.
843810
But it seems the SunJCE doesn't provide the RSA (and
AES, who knows what else is missing) encryption and
decryption functions. Can anyone list what is missing
from the SunJCE? Also, from the forum, many have
pointed to this bounty castle provider. Can any of
you guys who are familiar with this provider give us
the procedure of installation? Thanks.
I wouldn't use the term 'missing' here. Sun provides some basic cryptographic functions and that all. If you want more, get another provider. Sun will never be able to provide every possible algorithm. That's why they have implemented the external provider option. So no, I cannot list what is missing.

I can tell you that other providers, for instance BouncyCastle offer much more cryptographic functions. Installation is very easy. Just download the .jar and put it in your <java>\jre\lib\ext directory. After that you can use it in you programs with the following code:
Provider prov = new org.bouncycastle.jce.provider.BouncyCastleProvider();
Security.addProvider(prov);
You can also install it so that you don't have use this code in every program that uses the provider. How this is accomplished, can be found in the install manual from BouncyCastle.
1 - 3
Locked Post
New comments cannot be posted to this locked post.

Post Details

Locked on Sep 25 2014
Added on Nov 9 2013
12 comments
14,462 views