Wrong object chosen to preview

MundeX

Member²
After typing in a SQL Window:

Code:
select * from dual
dbms_output
restrains the Ctrl+Shift and click on highlighted dbms_output then get description dual table instead dbms_output package
 
That is correct. Since the "select * from dual" statement is not terminated, the dbms_output name on the next line is syntactically an alias for the dual table.
 
Back
Top