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!

SQL Developer 4.0 EA bugs

mleonard87Aug 1 2013 — edited Aug 1 2013

One bug and one improvement.

Bug:

  • Clicking the data tab on tables that include XMLTYPE columns do not display any rows or column headings. You can redproduce with the following script and then click the table in connections or schema view and then click the data tab on version "Oracle Database 11g Enterprise Edition Release 11.2.0.2.0 - 64bit Production":

    CREATE TABLE xml_test (

      id NUMBER

    , text VARCHAR2(100)

    , xml_data XMLTYPE

    );

    INSERT INTO xml_test VALUES (1, 'joe', XMLELEMENT("ROOT"));

    INSERT INTO xml_test VALUES (2, 'blogs', XMLELEMENT("ROOT"));

    INSERT INTO xml_test VALUES (3, 'john', XMLELEMENT("ROOT"));

    INSERT INTO xml_test VALUES (4, 'smith', XMLELEMENT("ROOT"));

Improvement:

  • When opening package spec/body from a file on your local file system detect that both the spec and body are open as files and offer the same arrow controls in the gutter that allow you to jump between a function/procedure in the spec to the same function/procedure in the body and vice versa.
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Aug 29 2013
Added on Aug 1 2013
1 comment
324 views