hbar
Member²
Surely someone has posted this little guy:
Say you have a SQL window, and the topmost bit of code is a block of some sort. If you attempt to auto-select a query below that block, it throws this error:
PLS-00103: Encountered the symbol "SELECT"
Here is an example. You try it! It's fun!
BEGIN
dbms_output.put_line('test');
END;
SELECT *
FROM dual;
Auto-select the dual query to see what I mean.
Thanks,
Say you have a SQL window, and the topmost bit of code is a block of some sort. If you attempt to auto-select a query below that block, it throws this error:
PLS-00103: Encountered the symbol "SELECT"
Here is an example. You try it! It's fun!
BEGIN
dbms_output.put_line('test');
END;
SELECT *
FROM dual;
Auto-select the dual query to see what I mean.
Thanks,