Before:
DECLARE
ltxt_table dba_tab_columns.table_name%TYPE;
ltxt_column dba_tab_columns.column_name%TYPE;
BEGIN
-- NoFormat Start
SELECT table_name
,column_name
INTO ltxt_table
,ltxt_column
FROM dba_tab_columns
WHERE ROWNUM = 1;
-- NoFormat End
END;
After few beautify:
DECLARE...
HI,
I have tried to use suppresing formating. When my setting has been without "Use tab character", then it has worked OK.
But when i have checked this checkbox, then my code has been moved to right for every beautify. Tab character size is 3
I am not able to add my example in this tools...