It looks like PLD 7.1 doesn't understand multiple set commands in one line. It also seems that SET FEEDBACK doesn't work at all.
Here is script example
SQL*Plus output
PL/SQL Developer output
Here is script example
Code:
prompt
prompt Everything is ON
set feedback on
set heading on
set timing on
select * from dual;
prompt
prompt Everything is OFF (one-liner)
set feedback off heading off timing off
select * from dual;
prompt
prompt Everything is OFF (multiple lines)
set feedback off
set heading off
set timing off
select * from dual;
Code:
SQL> @c:\set_test
Everything is ON
D
-
X
1 row selected.
Elapsed: 00:00:00.00
Everything is OFF (one-liner)
X
Everything is OFF (multiple lines)
X
SQL>
Code:
SQL> @c:\set_test
Everything is ON
DUMMY
-----
X
Executed in 0.078 seconds
Everything is OFF (one-liner)
DUMMY
-----
X
Executed in 0.094 seconds
Everything is OFF (multiple lines)
X
SQL>