Recent content by El

  1. E

    Switch from package hearder to body problem

    I have the same problem, and beautifier doesn't work, example dummy: CREATE OR REPLACE PACKAGE BODY pk_dummy IS FUNCTION f_dummy RETURN VARCHAR2 IS CURSOR cur_dummy IS SELECT * FROM DUAL; BEGIN FOR reg IN cur_dummy LOOP NULL; END LOOP; RETURN('OK'); END...
  2. E

    Encoding loss when changing window type

    Hello: For example I have a file encoded in ANSI like this opened in a "Program Window" : CREATE OR REPLACE FUNCTION test RETURN VARCHAR2 IS functionresult VARCHAR2; BEGIN functionresult := 'áéíóú'; RETURN(functionresult); END test; When option "Change Window to -> SQL Window" is used...
  3. E

    Wrong translation in spanish

    Hello: In Preferences->Appearance the text "Reduce icon sizes" is traslated as "Texto del error". That translation is wrong, the correct translation would be "Reducir el tamaño de los iconos". Best Regards
  4. E

    Refactoring a variable does not work correctly

    Hello: This issue still wrong in version 16. Please fix it. Best Regards,
  5. E

    New feature request - SQL beautifier

    Hello: For me SQL beautifier is essential to work on a daily basis. When is the version of plyxon that includes it planned? Regards,
  6. E

    Open specification and body in separate tabs

    Hello: How do I open the specification and body of a package in different tabs, like in pl/sql developer? Regards,
  7. E

    Future of PL/SQL Developer

    Hello: Seeing that there is a new product "Playxon", what roadmap is there for PL/SQL Developer? Will there be new versions with improvements or will it be discontinued?. Regards,
  8. E

    Blockchain and inmutable tables

    Hello: In Version "15.0.0.2050 (64 bit)" when we have an immutable table and the DDL is generated, it is not put into the script. Example: create immutable table it_t1 ( id number, fruit varchar2(20), quantity number, created_date date, constraint it_t1_pk...
  9. E

    Show PK in describe window

    Please don't forget this. Quickly seeing the primary key of a table is essential. Thanks,
  10. E

    Icons of Version 15 sometimes too big compared to Version 14

    Hello: I spent quite a while looking for that configuration. The Spanish translation is incorrect. https://ibb.co/crMF5zK https://ibb.co/XFBJ0m0 The translation should be: * Reducir tamaño de los iconos * Después de cambiar el tamaño de los iconos, es necesario reiniciar PL/SQL Developer para...
  11. E

    Code Assistant too slow

    I have sent the file by email. With debugsql it took more than 1 minute.
  12. E

    Code Assistant too slow

    Hello: When connecting to a database with high network latency, for example a cloud database, the Code Assistant is sometimes very slow. For example, inserting all the fields from a table that has 160 fields can take over 30 seconds. In version 15 it takes the same. Could you improve this a...
  13. E

    Error in PL/SQL Beautifier

    Hello: With this code PL/SQL Beautifier fails CREATE OR REPLACE PROCEDURE test_format IS PROCEDURE p_example IS CURSOR cursor_dummy(c_p_version VARCHAR2) IS SELECT XMLELEMENT("siiLR:RegistroLRBajaCobrosMetalico", XMLELEMENT("sii:PeriodoLiquidacion")...
  14. E

    Refactoring a variable does not work correctly

    Hello: I have the following problem when using variables indicating the procedure / function name. First of all the Highlight variables doesn't work: And "Refactoring -> Rename item" it doesn't work either. I reported it more than 1 year ago by email, but I see that in the beta of...
  15. E

    Status bar does not show DML output

    Hello: In versión 14 if you execute an update in status bar is showed the result, but in 15 that is not showed. Version 14: Version 15: Best Regards,
Back
Top