Reputation: 233
I am a newb to Oracle. I used to use SQL Plus, and use set serveroutput on
to see the results. However, when I started using Oracle Developer, my queries would run, however, I was not able to see the console or the results:
select *
from customer;
Upvotes: 1
Views: 1667
Reputation: 36107
I assume that you mean "Oracle SQL Developer" application.
If yes, the in SQL Developer click on View option, then select Dbms output
DBMS Output window (panel) should appear somewhere on the screen.
Then, click on green plus sing in the DBMS-Output panel, and select a session you want to spy.
Upvotes: 2