Bug tracking in Sql Developer (stable and EA worm.)

Hello everyone,
I just read on this thread {message identifier: = 3883502} "Bugs documented in Metalink."
Does that mean on the community that does not use Metalink?
Is this the place where a bug can be written?

You can always communicate bugs here, but they could unnoticed to the development team.
The only official place for official versions (non - EA) is the Metalink/My Oracle Support.

Kind regards
K.

Tags: Database

Similar Questions

  • Bug in the SQL Developer report where?

    Where can I report a bug in the SQL Developer? It is possible at all?

    I use Ubuntu 14.04 (32 or 64 bit) with Oracle VM 1.7.55 and get a SIGSEGV vm.

    Thank you

    Diogo Sant

    If you have database support through MyOracleSupport, you can report a bug there.

    If this isn't the case, then this is the place, although nothing is guaranteed.

  • How can I use statistics for all the tables in a schema in SQL Developer? and how long will it take on average?

    Hello

    How can I use statistics for all the tables in a schema in SQL Developer? and how long will it take on average?

    Thank you

    Jay.

    Select the connection and right-click on it and select schema statistics collection

  • SQL Developer privileges and user...

    Hi all! I created the user in DB. When I connect to that user through SQLDeveloper I can see other users tables. How can I disable this? While I don't see any other tables of users? And how do I see all my user roles and privileges?

    Best regards, Debuger!

    This is determined by their privileges with all your username in the database. What roles/privileges give you him?

    In SQL Developer, you can use the DBA module to display the privileges (select view |) S/N).

    You can also do

    select * from session_privs;
    

    which gives you a view flattened what you have.

  • Play with Oracle SQL developer configuration and its debug mode

    Greetings from a newbie, ask simple questions:

    1. I'm trying to run sql scripts using sql developer without actually connecting to the database, which makes a fake link in order to check if the syntax of the scripts is correct. Can I do this?



    2. Furthermore, I try to play with its CONF file, and I have a difficulty to understand the language that is using. What language is this? I can only guess "sqldeveloper - debug.conf ' is performed when I put ' IncludeConfFile sqldeveloper - debug.conf" in sqldeveloper.conf. But I don't really know how these configuration files. Could you give me some tips to learn this?



    Best regards

    Valerie

    No, Developer SQL does not parse the SQL statements, just them sends to the server and presents the results with you.

    As for the syntax of the configuration files, no idea. You might have more luck the {forum: id = 260} forum.

  • I have instaled database xe and sql Developer's and I don't see the tables like hr.emplyees in the tables

    I can't to table and its contents when I write SELECT * FROM HR. EMPLYEES, but I cannot see this table and others like that when I develop Tables of the icon.

    Someone knows why?

    Use

    SELECT * FROM HR. EMPLOYANG

    Unlock you the account of human resources?

    https://Satendrakumar.WordPress.com/2008/09/26/how-to-unlock-sample-HR-database-in-Oracle/

    Sorry, read the post wrongly.

    See you soon

    AJ

  • SQL-Developer: shortcuts and flaws in internationalization

    I am a frequent user of SQLdeveloper, Jdeveloper and another IDE that I use every day for programming. Comment/Uncommenting blocks of save is a very frequent usaged feature in an IDE.
    I use SQLdeveloper in Switzerland with swiss keyboard.
    The function "Comment/Uncommenting" shows do forge shortcut STRG-Schragstrich work. It should be CTRL-slash == CTRL-/ (or CTRL-backslash == CTRL-\? in German Schragstrich is not so explicit which is intended).

    Problem
    None of these shortcuts still work.
    I tried to any combination of keyboard strokes in the last few years, but I have not find. Occasionally a then this question is coming, and it bothers me a little.

    This question is about these functions:
    See: Bearbeiten > how > Zeilenkommentare ein-/ Ausschalten STRG-Schragstrich
    See United States (guessed): edit > Source > turn on/off save


    These shortcuts are customizable?
    What are the keystrokes on the US keyboard '?
    Is it possible to do it on my keyboard Switzerland?

    Thank you

    Othmar

    Shortcuts are customizable from

    Tools-> preferences-> shortcut keys

    Here, you can also see the shortcuts currently configured.

    Also if you want to use SQLDeveloper in English, regardless of the settings of your computer, you can add the following line:

    AddVMOption - Duser.language = IN

    to your sqldeveloper.conf file usually located in [SQLDEVELOPER INSTALL DIR] / sqldeveloper/bin.

  • How to modify data in "Result grid query" in Oracle SQL developer

    Dear,

    I would like to know how to change values directly in the query result grid.

    I use Oracle SQL Developer version 4.0.3.16

    Thank you

    Khalil

    EditValues.JPG

    I checked in SQL Developer 4 and I found no option to do this.

    I don't think it's available. You can open the table and add filters on each column and change. Or you can add where clause as suggested the link written by Jeff that I already gave. (http://www.thatjeffsmith.com/archive/2013/06/sql-developer-im-looking-at-a-record-how-do-i-edit-it/)

    Or you write update instructions.

    See you soon

    AJ

  • 64-bit Instant Client on 64-bit SQL Developer 4, do not play together...

    Hi all

    I installed the 64-bit version of SQL Developer 4 and 64-bit 64-bit Client Instant v12 and I still get the error when I try and open a connection to a database: "C:\Program Files\Oracle\InstantClient\ocijdbc12.dll: 2Can can't load .dll AMD 64 bit on a 32-bit platform of AI. I've been on http://www.thatjeffsmith.com/ nothing works. I also installed the 64-bit version of the full client with the same result. My path is defined on which the client is installed. The first thing in the path variable is the path to the client. Both versions are 64-bit.

    I use 12 c database so I have the latest version of InstantClient / customer

    Any ideas anyone?

    You are using a 64-bit JDK? There is no 64-bit version of SQL Dev, there just SQLDev. If you run it with a 32 bit JDK, then it runs as a 32-bit application.

  • Elapsed time in sql developer

    Hello

    For the script below how do we get the execution time for package below in sql developer
    set SERVEROUTPUT on
    set timing on
    VARIABLE OND REFCURSOR;
    execute PKG_ISR_CAF_CDNG_ORG_STRUCT.PROC_GETORGNODES_NEW_3959(10005543,'MANAGE', 10006746, :OND);
    PRINT OND;

    Hello

    This seems to be one of those cases where sheet SQL and SQL Developer * more behavior differ. Use of the "timing" on value in SQL * Plus will provide time for both execution of the procedure of a package, but also a call refcursor impression. A SQL Developer worksheet won't display any elapsed time for a SQL * more the print command, but if you replace your run with the following:

    VARIABLE OND REFCURSOR;
    BEGIN
    PKG_ISR_CAF_CDNG_ORG_STRUCT.PROC_GETORGNODES_NEW_3959(10005543,'MANAGE', 10006746, :OND);
    END;
    /
    PRINT OND;
    

    an elapsed time is then displayed for anonymous block.

    You want to maybe visit the SQL Developer Exchange and add a feature request for this feature if a request does not already exist.

    Kind regards
    Gary
    SQL development team

    Published by: Gary Graham on April 24, 2012 15:19
    Or go to additional lengths as JB is done in the following post:
    Re: Execute a Package/procedure - takes time to answer (3.1)

  • SQL Developer: Missed CONNECTIONS TAB

    I tried once to initialize ORACLE SQL DEVELOPER 3.0.04.34 x 64 with JDK 1.7.0 x 64 in Windows 7 x 64 and cela warning me of possible incompatibilities with this version of java.

    Then I tried lo run ORACLE SQL DEVELOPER 3.0.04.34 x 64 with JDK 1.6.0_26 x 64 still in Windows 7 x 64, but the CONNECTIONS TAB does not appear, I try to delete the folder "%APPDATA%\Roaming\SQL Developer" to clear the settings stored, and then I tried again to run ORACLE SQL Dev x 64, this good withoat charge no warning, but does not appear again the CONNECTIONS TAB.

    I tried to delete all (installation of ORACLE SQL Dev folder x 64 and parameters stored in "Developer %APPDATA%\Roaming\SQL") and re - install all, but yet again, the CONNECTIONS TAB is not displayed!

    I NEED URGENT HELP PLEASE!

    I apologize for my bad and incoherent English, but I don't speak this language. I speak only Spanish.

    UPDATE (2011-09-01): I tried to also remove a registry keys "HKEY_CLASSES_ROOT\SQL Developer * ' but the problem persists.

    Update 2 (2011-09-01): I installed the "Oracle SQL Developer 1 11.1.2.04.34 patch", but the issue continues.

    NOTE: I port the "ORACLE SQL Developer 3.RPM" to ""3.DEB ORACLE SQL Developer"and I can run on Ubuntu 11.04 x 64, this operating system is not the issue." The problem is that on my Installation of Windows 7 Ultimate x 64.

    Edited by: 882851 01-sep-2011 10:28

    Edited by: 882851 01-sep-2011 12:24

    Hello

    Remove (actually just the system3.0.04.34 file) settings and restart SQL Developer under jdk1.6.0_26 should work, except that I'm not sure which part of 'Roaming' from your path of directory. Make sure that your settings are not read from a different path. Search help | Table of contents | SQL Developer concepts and use. Location of information about the user.

    Kind regards
    Gary Graham
    SQL development team

  • Data capture, etc. using SQL Developer mysql Orac conversion problems

    Hello

    I have been using Sql Developer to try to convert my mysql database to oracle, I managed to set up the connections and the repository very well. However, when I right click on my database connection and click on the capture of the capture window appears but nothing happens. What I am doing wrong?

    Thank you


    Aaron

    This error usually indicates a corrupt repository of migration or a user privilege is missing.

    Also the migration of SQL Developer 2 and 1 repository is not compatible - so I would say to create a single repository user for each new version.
    It is a repository of sample for SQL Developer 2.x user:

    CREATE USER migration IDENTIFIED BY migration DEFAULT TABLESPACE users TEMPORARY TABLESPACE temp;

    GRANT CONNECT, RESOURCE, CREATE VIEW, CREATE A PUBLIC SYNONYM TO
    Migration WITH the ADMIN OPTION.

    GRANT ALTER ANY ROLE, ALTER ANY SEQUENCE, ALTER ANY TABLE, ALTER TABLESPACE, ALTER ANY TRIGGER, COMMENT ANY TABLE, CREATE ANY SEQUENCE, CREATE ANY TABLE, CREATE ANY TRIGGER, CREATE ROLE, CREATE TABLESPACE, CREATE USER, DROP ANY SEQUENCE, DROP ANY TABLE, DROP ANY TRIGGER, DROP TABLESPACE, DROP USER, DROP ANY ROLE, GRANT ANY ROLE, INSERT ANY TABLE, SELECT ANY TABLE UPDATE no matter WHAT TABLE OF migration;

  • Problem with SQL Developer to capture

    Hi guys,.

    I am facing a problem for the last 4 days with SQL Developer. I use to migrate sql database to oracle SQL Developer. It worked well before and I had migrated some tables as well. But all of a sudden a few days before I had a mistake, I was unable to capture the objects. While I am trying to capture the sql database or the tables the progress dialog box is displayed as usual, but he suddenly gets hit and the green light turns red which is in the upper left corner. Said at that time, the progress message that appears at the bottom of the box +' stored jdbc:jtds:sqlserver: / / < hostname >: < port > / < the database name > ' +. But if I use another oracle server, then I can capture objects.

    Because of this error, I'm not able to go forward. I tried to solve this problem in many ways. But nothing helps! Please help me solve this problem, as it's an emergency.

    Thanks in advance.

    RAM.

    Published by: Ram Dhilip on March 22, 2010 08:16

    Published by: Ram Dhilip on March 22, 2010 08:16

    Published by: Ram Dhilip on March 22, 2010 08:19

    Published by: Ram Dhilip on March 22, 2010 08:34

    You can use the method of capture in offline mode:
    Click on tools-> Migration-> third party database offline Capture-> Capture database creation scripts
    Now select the output directory of these scripts and the source database. Also, make sure that you have selected the Batch mode. Once this is done, copy all scripts on a computer with an installed SQL Server client or perform the export on the SQL Server computer directly.
    Run the script and you'll get 2 directories with a couple of DAT files created. ALL switch to SQL Developer machine and load them into the SQL Developer
    Click on tools-> Migration-> third party database offline Capture-> Capture Script output load of database

  • 2.1: reports of Test Unit in SQL Developer 2.1 (fixed in release 63,73)

    Hi people,

    I use the new unit test in 2.1(.0.62) SQL Developer functions and am really loving what is there - little about all the stuff that I'm used from JUnit.

    However, when I try to access built-in reports, I get a dialog box stating:

    No application found to the version of the selected database.

    This feature is dependent on a particular version of the database, or is it just something missing in the release of EA?

    Thank you

    Chris Hughes

    Published by: Chris Hughes on December 11, 2009 14:34

    Published by: Chris Hughes on December 11, 2009 16:34

    Published by: Chris Hughes on December 16, 2009 16:34

    Hi Chris -.

    Please try the new unit test in functionality. I don't know what causes your problems with EA1: (, but I just tried to run some of the reports in the ai2 candidate & they work fine :).)

    Brian Jeffries
    SQL development team

  • Bug: Details of body inaccurate package SQL Developer 4.0 and 4.1

    I went through the trouble to recompile the schema SYS with native = PLSQL_CODE_TYPE and PLSQL_OPTIMIZE_LEVEL = 3. I found that it was unwise to change the PLSQL_OPTIMIZE_LEVEL for package under SYS specifications, so I left them alone. When I query the view of ALL_PLSQL_OBJECT_SETTINGS, it shows me that my Package body are properly compiled at level 3 and the specs are still 2. However when I look at the Details tab in SQL Developer 4.0 or 4.1 last Early Adopter, it shows the it is PLSQL_OPTIMIZE_LEVEL = 2. I did a test for the PLSQL_CODE_TYPE and the details of body in SQL Developer also follow the specification and not true values. I used the sub query to verify the real compile settings.

    SELECT owner,
           name,
           type,
           PLSQL_OPTIMIZE_LEVEL,
           PLSQL_CODE_TYPE
      FROM ALL_PLSQL_OBJECT_SETTINGS
     WHERE owner in ('SYS')
       AND type IN ('PACKAGE', 'PACKAGE BODY')
     order by 1,2,3;
    
    
    

    Thank you

    Steven Wilson

    The query we use does not take into account, there may be several entries for an object in the view. I think we have a bug. You connect.

Maybe you are looking for

  • Message from Safari that Silverlight is obsolete and vulnerable

    When I checked the Plugins in Safari on my mac, there is a point of explanation by Silverlight and a message indicating the version of silverlight on my computer is vulnerable and needs to be updated.  I looked online and there are two new versions o

  • CQ45-103au supports sata II?

    I want to upgrade my computer laptop HDD to the SSD. So, I wonder if my CQ45 103au supports sata I or II? Thank you in advance. See you soon,. Christophe

  • Printer error ' ' the installed print head is not intended for this printer or is damaged.

    Original title: printer does not print I have a hp photosmart B110a all-in-one printer and the following warning came on the screen. "the installed print head is not intended for this printer or is damaged" useless to Sam the printer now does not wor

  • Updates are always safe to download and install on my computer?

    After you receive the message that I have updates to download and install, is ALWAYS completely safe to do? With my last PC, I got a typical announcement, completely legitimate-looking that I had "several important updates" that I needed to download

  • The graphic scale

    Hello. I was wondering if anyone can point me in the right direction with this problem I am facing. Currently, my program to read the data of a device and this chart on the chart. It takes the date of the first data, the most recent data and 2 or 4 w