Hi,
Reading beta version notes, beautifier is supposed to work on views definition.
I can't make it work. Ex: with the view definition below:
CREATE OR REPLACE VIEW ACT
(act_cd, name1, name2)
AS
SELECT ATTR_VAL,
NAME1,
NAME2
FROM DOMDESCR_T
WHERE OBJ_CD = '151';
Works like before you have to mark the select first.
ps: If I move the AS and (act_cd, name1, name2) on line one it will work.
Thanks
Reading beta version notes, beautifier is supposed to work on views definition.
I can't make it work. Ex: with the view definition below:
CREATE OR REPLACE VIEW ACT
(act_cd, name1, name2)
AS
SELECT ATTR_VAL,
NAME1,
NAME2
FROM DOMDESCR_T
WHERE OBJ_CD = '151';
Works like before you have to mark the select first.
ps: If I move the AS and (act_cd, name1, name2) on line one it will work.
Thanks