Recent content by ste

  1. S

    how to use beautifier correctly?

    The original source code is: CREATE OR REPLACE PACKAGE PCK1 AS PROCEDURE clean_all; END PCK1; / CREATE OR REPLACE PACKAGE BODY "PCK1" AS PROCEDURE clean_all IS BEGIN DELETE FROM TGAS_010; DELETE FROM TGAS_011; END; END; -- PCK1 BODY the beautifier gives this: CREATE OR...
  2. S

    how to use beautifier correctly?

    hi, I would like to have all INSERT, DELETE and UPDATE statements to be each on one line but the beautifier do the following: DELETE FROM T10; DELETE FROM T11; instead of: DELETE FROM T10; DELETE FROM T11; I tried to fix this with the beautifier options but couldn't accomplish. is it...
Back
Top