SQL Developer 1.1 not working

I used SQL Developer 1.0 on my machine without any problems. Now I wanted to switch to 1.1. Installation and configuration works without errors even the "test connection" button works fine. But if I try to connect to the database clicking on th plus sign of the database in the "connections" windows (and this is true for every database I tested) the SQL Developer 1.1 dies unexpectedly and without any error message. Its just gone. I found a trace file saying there is a problem with OraClient10.dll. Any ideas?
# An unexpected error has been detected by HotSpot Virtual Machine:
# EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x61d32910, pid=2756, tid=2904
# Java VM: Java HotSpot(TM) Client VM (1.5.0_05-b05 mixed mode)
# Problematic frame:
# C [OraClient10.Dll+0x112910]
Best Regards
Andreas

I found an old forum entry:
"Disconnecting from Raptor
Jan 19, 2006
We have an open bug that if you right-click on a disconnected node, it opens the connection. That means that if you right-click and disconnect and then either expand the node or right-click, we will reopen for you. Once you record your connection information, we do not prompt you again. We are working on adding the capability to not store your password so you will be prompted if you disconnect but in the current version, we save all your connection information so we never prompt you again. -- Sharon"
This describes our problem. The funny thing is this concerns the Raptor Project. But we are using SQL Developer 1.1.0.23.
It only happens in the session where the connection is created and the tool memorizes the password.
-- Andrea

Similar Messages

  • SQL*Developer 2.1 - Not Generating DDL for Different Users

    Using SQL*Developer Version 2.1.0.63 I get an error trying to generate DDL from another user, that has access to many other schemas. It looks to me like Sql Developer is calling the DBMS_METADATA package from within other PL/SQL.
    I am receiving the following error:
    ORA-31603: object "ACCOUNT_TYPE_LKP" of type TABLE not found in schema "POR_OWN"
    ORA-06512: at "SYS.DBMS_SYS_ERROR", line 105
    ORA-06512: at "SYS.DBMS_METADATA", line 3241
    ORA-06512: at "SYS.DBMS_METADATA", line 4812
    ORA-06512: at line 1
    I would receive these same errors in SQL Developer 1.5, but the DDL would still generated. It was picking something up, even though it had an error.
    Our DBA has not been able to provided a work around. He says you have to login directly as the owner of the objects to use dbms_metdata in this fashion.
    Is there any work around for this? I really need to be able to get DDL and I do not want to go back to 1.5 (I like the other new features of 2.1).
    Thanks,
    Tom

    We have several users currently using SQL Navigator and/or TOAD. We would like them to switch to SQL developer, but part of their job is to view the source of views in another schema. They have select privileges on the underlying tables and are able to see the source using other tools. Using SQL Developer, they receive on ORA-31603 because it's calling dbms_meta. Note ID 1185443.1 describes the issue and suggests granting the users the SELECT_CATALOG_ROLE.
    We are hesitant about granting this role to these users which allows access to ever 1,700 objects, plus execute privileges to 4 objects.
    Support indicated that Enhancement Request 8498115 addresses this issue.
    Is this something that may be addressed in the next release?
    Thanks,
    Paul

  • Oracle 10.1.0.4.2 SQL Plus dbms_output.put_line not working

    I am using Oracle 10.1.0.4.2 SQL Plus, and dbms_output.put_line is not working. It returns the dbms_output ONLY from outside the procedure. I have dbms_output INSIDE my procedure, and none of it gets returned. Please help!
    Here is what I enter:
    set serveroutput on size 1000000;
    DECLARE
         x number:=0;
    begin
    DBMS_OUTPUT.ENABLE;
    c2reports.c2proc(x,'TEST');
    DBMS_OUTPUT.PUT_LINE('testX');
    END;
    testX
    There should be more besides the 'testX' that gets returned. The first line in my procedure has output code to print testY. Thanks in advance!

    This is the forum for the Oracle's SQL Developer (Not for general SQL/PLSQL questions). You should ask question like this in the PL/SQL forum

  • Oracle SQL Developer for OSX not able to compile/execute/handle packages?

    Hi,
    Have been stuck with this for quite some mins now,
    When I execute this simple -valid- create package statement in Oracle SQL Developer:
    http://www.pastebin.ca/757859
    It shows it's not compiled and has errors, when I check the Packages part in Oracle SQL Developer I see this:
    http://www.pastebin.ca/757860
    The ; after end has been removed by the application. In fact this means I can't do anything with packages in Oracle SQL Developer for OSX?
    Is this a known bug?
    Or am I doing something wrong?
    Any resolving response to this matter would be really appreciated.

    Yeah, that bug is in there since stoneage, and is really a no-brainer to fix. Until they don't, we'd be losing time recompiling.
    FWIW, everything works fine using the procedure editor for creating, editing and compiling.
    Regards,
    K.

  • SQL Developer Data Modeler not drawing foreign key relationships

    I'm having trouble with SQL Developer Data Modeler when I importa a DDL that has foreign keys. I export DDL files from SQL developer and choose various subsets of files. Sometimes Data Modeler will not recognize a foreign key if I include say a dozen files in the DDL file, but it will if I include just a few. Worse, even if the foreign key is recognized, sometimes it is not drawn in the Data Modeler and I have no way to make it be drawn. To be specific, I import a file containing the DDL for just two tables -- I see the foreign key! I import a file containing the DDL for a dozen tables including the two, I don't! Is there something I am not understanding about when Data Modeler will draw foreign keys or is the tool simply quite buggy?
    Much thanks!
    -ttamon

    Hi Philip,
    I believe I have isolated the problem. Apparently if a field is named "FOREIGN..." it interferes with the tool recognizing foreign keys. Try to import a DDL file containing the following text:
    CREATE TABLE "SAMPLE"."SAMPLE_ONE"
    (     "ID" VARCHAR2(255 CHAR) NOT NULL ENABLE,
         "VALUE" VARCHAR2(255 CHAR),
         PRIMARY KEY ("ID")
    TABLESPACE "SAMPLE_DATA" ;
    CREATE TABLE "SAMPLE"."SAMPLE_TWO"
    (     "ID" VARCHAR2(255 CHAR) NOT NULL ENABLE,
         "FOREIGN_NAME" VARCHAR2(255 CHAR),
         PRIMARY KEY ("ID")
    TABLESPACE "SAMPLE_DATA" ;
    CREATE TABLE "SAMPLE"."SAMPLE_THREE"
    (     "ID" VARCHAR2(255 CHAR) NOT NULL ENABLE,
         "VALUE" VARCHAR2(255 CHAR) NOT NULL ENABLE,
         "ALT_ID" VARCHAR2(255 CHAR),
         PRIMARY KEY ("ID")
    TABLESPACE "SAMPLE_DATA" ENABLE,
         CONSTRAINT "FK6DF8294F2288190D" FOREIGN KEY ("ALT_ID")
         REFERENCES "SAMPLE"."SAMPLE_ONE" ("ID") ENABLE
    TABLESPACE "SAMPLE_DATA" ;
    You will discover the foreign key is not recognized or drawn! Now, if you swap the location of the third table (put it up first) everything works fine. This is how I discovered the problem, various subsets would work, others would not. To confirm the problem is with the field named "FOREIGN_NAME" use the DDL as specified above but change the first letter in the word "FOREIGN" to something else, and it will recognize the foreign key. Looks like a bug to me (took me about 4 hours to isolate this!). I am using Oracle SQL Developer Data Modeler version 2.0.0 Build 584.
    -ttamon

  • SQL developer bat file not found?

    (possibly this should be posted in another place)
    I installed the new Oracle 11.2.0.1 64 bit in windows 2008 sp2 64 bit, the sqldeveloper doesn't work,
    D:\app\serv_hyperion\product\11.2.0\dbhome_1\SQLDEVELOPER\SQLDEVELOPER\BIN\sqldeveloper.bat
    Actually, I cannot find this bat file, this is strange. And I have to refer to the sqldeveloper.exe file, and it looks for a java, and I refer it to a jdk or jre Java, but stilll error happens. what happens? why i cannot find the sqldeveloper.bat file?
    when I refer the sqldeveloper.exe to JRE java.exe, the error is: J2SE SDK is not found. If I refer the sqldeveloper to JDK java.exe, the error is Java Virtual Machine is not available. I have 2 issues: the first probelem is I cannot find the sqldeveloper.bat that should exist, the 2nd problem is I cannot start the sqldeveloper.exe no matter if I use JRE or JDK, thanks!

    Hello,
    Sincerely, I always install SQL Developer separately on a directory whose name specify the Release. For instance, sqldeveloper-2.1.1.64.45.
    Because Oracle delivers new release every 2 or 3 months, and it's recommended to do not modifying Oracle Server installation without using OUI.
    Then, you can locate the sqldeveloper.exe on this directory and create a shortcut to it.
    Afterwards, when you want to install a later release (sqldeveloper x.y.z.aa.bb) you may create another directory for that and import straigthly all the connexions you already defined from the former installation.
    By exporting / importing connexions you won't have to recreate them.
    By that way, you may have several releases of sqldeveloper and compare them. Sometimes there're differences between them.
    For instance, the first release of SQL Developer (1.1) allows connexions to Oracle 8i database while it's not allowed in 2.1.
    Hope this help.
    Best regards,
    Jean-Valentin

  • Sql Developer 3.0 Notes

    Overall, the new SQL Developer looks very good! I am very excited that you have added a spatial viewer! Bravo!!!
    I've noticed the followign issues:
    1. If you use the new "password" functionality (taken from SQL Plus, of course) more than once during a user session, it seems to lock up the SQL Developer application. Sometimes, in fact, it will lock it up even with the first.
    2. In the Map View, the Show Geometry Context tool does not seem to work for point geometries, and a bit inconsistently for polygons.
    3. In the Map View, it would be nice to be able to increase the display size of point geometries.
    Thanks,
    - Dave Caglarcan

    David,
    Regarding the MapViewer:
    2. In the Map View, the Show Geometry Context tool does not seem to work for point geometries, and a bit inconsistently for polygons.Since the point geometries are small you can always zoom (+) your view to see the points become small circles. You can then easily see context of the point geometries.
    Regarding the polygons please provide us with more details ... Usually spatial data is dense therefore please make sure that the data is valid.
    3. In the Map View, it would be nice to be able to increase the display size of point geometries.Just zoom (+) and pan around. You can use the Marquee Zoom tool to select your area.
    Hope this helps.
    Thanks
    Shounak

  • ORACLE SQL Developer: DELETE Key Stopped Working???

    OK, I'm an idiot, I admit it. I have ORACLE SQL Developer installed, and stupidly changed some of the menu items under Tools/ Preferences/ Code Editor. Now all of a sudden, my DELETE key does not delete, although BACKSPACE works fine. Also, the prehistoric Windows shortcut CTRL + INSERT suddenly doesn't copy any more, although it worked before in the tool, and works on everything else in Windows.
    A smart person would have recorded exactly what changes they made- but I didn't.
    Any idea which Preference should be changed, and what it should be changed back to???
    HELP!!!! - [email protected]

    Don't have to call me that blush
    As I said, something I picked up on the forum... just keeping track here ;-)
    As for wasting time, happens to all of us. We have to find a balance between trying to solve our own problems and asking for help (in which you have to invest a fair amount of time also).
    Glad to be of help,
    K.

  • SQL Developer keepalive doesn't work in 4.0

    The famous, and awesome, SQLDeveloper keepalive extension   (https://sites.google.com/site/keepaliveext/)  does not seem to work with the new beta SQLDeveloper 4.0.   Has anyone gotten it to work?   This is a show-stopper for me as far as using 4.0.

    Hi Mr Chen,
    Thanks for your keep alive extension which is a great help. Previously it worked just fine. But recently it just doesn't work anymore (about 2 weeks after I install this extension and no big system configuration was done during that time ) . I am using version 3.1.07 on windows XP. Hope your can give me some advises.
    Also, any chance we can configure the wait time for SQL developer to connect oracle DB? For instance, 0.5 sec?
    Keeping alive is REALLY important feature for our development work. Your work is really important to us! Thank you again and looking forward your reply.
    Br,
    Kunkka from China

  • SQL*Developer 'Query Results' Not Displaying

    I have just recently installed SQL*Developer v3.2.2 and after I run a SQL query the tab 'Query Result' tab is not displayed. I have tried to show this tab and to use the arrow keys at the bottom of the screen to display this screen but I cannot view the query results. I have used v1.5.1 in the past and know that it should display when after running a query and can be resized if required but I cannot seem to show it is v3.2.2

    Hi,
    Yes, I did install to a clean directory. I have even deleted all contents of the directory and re downloaded
    the software again to the same directory but this did not work either it still remembered the original settings.Keep in mind there are two locations that an installation updates:
    1. The SQL Developer installation directory (which you deleted).
    2. The User-Related Information (in your "user home" directory), which is updated by the settings migration
    Perhaps Jim meant you should also remove the user settings for the last SQL Developer version installed and possibly even avoid migrating the old 1.5.x settings when you first start SQL Developer after that. See the following forum thread, probably unrelated to your situation, but containing where to find the location of user-related information in the Help:
    Re: IDE issue - Query Result grid is not selectable or scrollable
    Hope this helps,
    Gary
    SQL Developer Team

  • SQL Window Text Edits Not Working

    I've been using SQL Developer 1.5.1 for some time now and it has worked great. Just recently, I'm not able to do simple text edits in the SQL window. I run sql queries constantly and have had to go back to an older version of SQL Developer. I have no idea what I may have done to cause this.
    I can type in the sql window, but I cannot move my cursor to any part of the entered text. I cannot move to a new line [Enter key], or back space, or delete text. I can highlight text and delete it, but simple text edits do not work.
    Has anyone experienced this and if so, is there a known cause and/or fix?
    I have no idea on how to uninstall this version and reinstall it. I've tried deleting the files and re-running the zip, but my old settings are still present.
    Help?

    I had exactly the same problem and the Tools/Options/Accelerator/Load Preset fixed it. Thanks a lot!!!!
    Alex

  • SQL Developer export files not visible

    Hi All,
    I've started using SQL Developer recently and I am completely new to this tool.
    I've noticed a weird problem. All the export files and the folders I create from SQL Developer is not visible from the normal windows. Say I've executed a query and I need to export the output to a file. I right-click on the data grid; select Export Data -> xls/csv (anything) . I get a pop to mention the Location of the file. I click on Browse ; then select the location and then click on apply. I expect the file to be created. But when I go to that folder; I do not find any files.
    To add on to my suprise; If i click on open a file and navigate to the above mentioned path; the pop-up shows that the file is present in that folder. But it is not visible from Windows. This is of no use as I cannot use those files.
    BTW; version is 2.1.1.64
    Note: I've also enabled the option of viewing all hidden files and folders in Windows.
    Regards,
    Arun

    Hi Arun,
    If you are using Windows Vista, Windows 7, or higher, and writing to a directory (like C:\, C:\Windows\, C:\Program Files\) that Microsoft wishes to protect from malware or just simple clutter , then you are running afoul of a redirect feature in the OS that puts the unwanted file in a VirtualStore folder for your user name, specifically:
    C:\Users\<yourusername>\AppData\Local\VirtualStore\<full path where you think the file got stored>See the following for details:
    http://answers.microsoft.com/en-us/windows/forum/windows_7-files/folder-redirect-in-windows-7/95218744-37e6-40cd-b890-2e647351df16
    I just ran across this myself for the case of C:\ and perhaps this applies to your situation also.
    Regards,
    Gary

  • ACR Develop Settings feature not working

    I have been using Bridge and Camera Raw to process images. I make adjustments from one image to many others using the Develop Settings feature. I don't know what changed or why, but when I now open a raw file in Bridge, Photoshop opens, and I seem to be working in Photoshop's ACR, instead of Bridge's ACR. When I click "Done," I go back to Photoshop and not Bridge, and the Develop Settings menu is grayed out. Right clicking doesn't work because Develop Settings is not even listed there. I have checked all the settings for Bridge and ACR and Photoshop, and I can't find anything that is different or not selected. I think my program might be corrupted.
    Anyone have any ideas? I am running Windows XP 64 bit edition with 8gbs of RAM. I've been using this system since February with no problem. Help!!! I have work to do!!!

    I found another post with regard to a completely different problem, but the solution suggested was to purge the cache for the folders, one by one. I purged the cache for the folder where I started having the problem, and now everything seems to be working well again.
    I'm using CS3 with Bridge 2.1.1.9

  • NSP NW04s - Sneak Preview Developer Access Key -- NOT WORKING !!!!!!

    Folks,
    I have installed the NW04S NSP ABAP system. Everything went fine with the installation. The key which is given in the installation document '29671482393151224771' is not working for developer BCUSER.
    I see many other folks facing the same issue in the forum and I tried all the ways posted in the forum... creating Z and Y program Se38 and tried with SE80, but no luck.
    I would highly appreciate if any one have a crack on this issue. Infact I reinstalled the system thinking there could be a flaw in my fisrt installation... but the result is same.
    Thanks much.
    -Guru

    I tried 00000000000000000000 and that is also NOT working. My trial version is now licensed for 90 days on a Windows XP professional laptop. I do not know if I had the problem before I renewed the INITIAL 4-weeks licence to the 90-day license. 
    Everything else works fine. I can create and run various programs using the trial version. However when I attempted to modify an implementation method in the ABAP class -  BCALV_TREE_EVENT_RECEIVER, I am asked for an Access Key. 
    Is anybody from SAP looking into this? I believe it is clear that there is a problem with Access Key for a number of us. That the default 29671482393151224771 is NOT working for everybody.
    Any help in solving this Access Key issue is greatly appreciated.
    Thanks!

  • SQL Query Single Row not working

    My workflow contain a Query Single row activity. I have added a where clause in Arabic which is not working. If I remove the Arabic condition its working.
    Is there something to do with the server?
    My server is windows 2008 R2 Server.
    The same workflow is running perfectly on another identical environment.
    Thanks for any valuable suggestions,
    Nith

    Hi Sastry,
    Connection to the database is trough Pivotal, I have tried ODBC connection as well but same error
    The instruction at "0x005d53e0" refereced memory at "0x00000014'. The memory could not be "read".
    With ODBC I have always compilation error saying
    Query Engine Error: '42000:[Microsoft][ODBC SQL Server Driver][SQL server] Incorrect syntax near the keyword 'SELECT'. '.
    but even the simple select statment is showing the error.
    Do you think the error is with Drivers???
    Regards
    Stefan

Maybe you are looking for

  • My ipod touch no longer responds to touch.

    Is there any hope for it working again?

  • Tracks in my albums are all in the wrong order!

    Hi, as it turns out I have a problem. Some of my albums on my iPad have all mixed up, the tracks we appear as, instead of in correct order (listed as 1. 2. 3. Well you get the idea), are in the wrong order! Everything was fine before I update to iOS

  • File Manager Pro.....Advice from other users please

    I uploaded much of my music collection to Skydrive in anticipation of iPad ownership. I planned to hold a small selection on the device and refresh/replace albums from Skydrive whilst on my travels using Hotel WiFi. I have discovered that even using

  • Give all resources to a service/session/user

    Hi, I'm looking for a way to let one user/session/service consume all availabe database resources. A short overview over our system: We've got a primary three node RAC and a physical standby database running on the same host using a different storage

  • Bootcamp 2.1?

    What are the chances of a new Bootcamp being released at the same time Macbook Air ships? It would be nice if the latest update includes better support for the trackpad, especially introducing support for tap-click... Anybody any news? I have rang Ap