Recent content by marc

  1. M

    Aligning / Setting Tab stops

    Hi, I am fairly new to pl/sql developer. I have version 7.0.3.1123. I am editing a fairly large procedure with hundreds of declared variables. The alignment and spacing of these declarations is ugly. Is there an easy way to get it lined up or do I have to painstainkingly go through each...
  2. M

    Inserting '&' into a table

    One way is: SQL> SQL> set define off; SQL> insert into marc_test 2 (dummy) 3 values 4 ('TEST & TEST'); 1 row inserted SQL> If you must do this from PL/SQL, you can put it into a variable and use the execute immediate option. Marc
Back
Top