Beautifier Problem

ScottMattes

Member³
Just in case it is still a problem: Version 8.0.4 fails at parsing:

Code:
create or replace view my_view as
select * from dual;

I get 'PL/SQL Beautifier could not parse text' on the status line of the SQL Window.
 
The PL/SQL Beautifier can only process PL/SQL. It cannot process DDL statements like "create view".

To format the SQL statement of the view definition, mark just the select statement and invoke the beautifier. Only the marked text will be processed.
 
Back
Top