Recent content by Philippe Malera

  1. Philippe Malera

    New feature doesn't work

    On this page :https://www.allroundautomations.com/products/pl-sql-developer/features/new-features-pl-sql-13-0/ In chapter : PROGRAM WINDOW ENHANCEMENTS It says : DBMS_Output is now retrieved when executing a PL/SQL Block. But I cannot find the "Output tab" in my Program window (used for testing...
  2. Philippe Malera

    Add separators in contents navigator

    Today, in our package bodies, we are creating fake private procedures, just to split group of them by context. This image will help you understand : In this example, procedure "o_____debugging_and_performances_____" is a fake one and is here only to help navigation visibility, it separate a...
  3. Philippe Malera

    How does PL/SQL Developer 64bit integrate with SVN?

    The plugin "TortoiseSVN-wrapper" cannot be downloaded any more from plugin list :https://www.allroundautomations.com/products/pl-sql-developer/plug-ins/ Underlying site is decommissioned.
  4. Philippe Malera

    Βeautifier and views

    Our views are in a file, which is opened in an SQL window (or a command window), and thus Beautifier has no effect. We can't edit views in a program window.
  5. Philippe Malera

    Βeautifier and views

    I agree with you, personally, I beautify the underlying query manually by selecting it and Ctrl-B. But I would appreciate to beautify a file with views without this trick.
  6. Philippe Malera

    How to escape template result

    Thanks, but in fact it is very difficult to explain to all developers to do such operation (duplicate brackets in the response). As we are using suffix "[O]" for many of our applicative objects which have to be input in these template. Hope we will get a fix.
  7. Philippe Malera

    How to create a view with a "WITH FUNCTION" clause ?

    It seems that we could only create such view with SQL*Plus, but not with PLSQL Developer. CREATE OR REPLACE VIEW test$v AS WITH FUNCTION with_function(p_id IN VARCHAR2) RETURN VARCHAR2 IS BEGIN RETURN p_id; END; SELECT with_function(dummy) AS dummy FROM...
  8. Philippe Malera

    How to escape template result

    I've tried to modify my template as you said : test := '&&<name="Object">'; But now it doesn't substitute anything. Could you give me a syntax example ? I didn't found anything in the doc.
  9. Philippe Malera

    How to escape template result

    Create a template "test.tpl" with this content : test := '&<name="Object">'; Execute this template in an SQL window and, in the "Object", enter the text : "Hello[X]" This will consider [X] as a new input control and remove it. How to tell the system, to consider result as is, without asking...
  10. Philippe Malera

    Bug when displaying quoted string in editor

    And how can we modify it ourself ?
  11. Philippe Malera

    Bug when displaying quoted string in editor

    Thanks, but where did you find this configuration ? I didnt found it in the "Preferences"
  12. Philippe Malera

    Formatter is weird with FORALL and EXECUTE IMMEDIATE

    It seems that problem still not fixed in Version 12.0.7.1837 Expected : BEGIN -- NoFormat Start FORALL idx IN 1 .. l_bal.count EXECUTE IMMEDIATE(l_sql) USING IN l_bal(idx).balance, l_bal(idx).rowid1; -- NoFormat End END; Got: BEGIN FORALL idx IN 1 .. l_bal.count EXECUTE...
  13. Philippe Malera

    Display "Instead of triggers" from the context menu

    When I want to see triggers on a table, i put my cursor on the table name, I press F1 (view) and I can see the triggers in the triggers tab. How can I do the same on views ? How can I see "Instead of triggers" on a view without searching for it in the object browser ?
Back
Top