ORA-03048: SQL reserved word 'SELECT' is not syntactically valid following …
If an SQL frontend (such as
SQL Developer) contains the following select statements, the error message
ORA-03048: SQL reserved word 'SELECT' is not syntactically valid following 'select from user_objects* is thrown if the user tries to execute them with
ctrl-enter
:
select * from user_objects
select * from user_tables
This is because the semicolon (which is used to separate SQL statements from one another) is missing.