Stew Stryker
Member³
Hi,
I'm still just trying out Developer, so I might have a setting wrong.
It seems that the Command Window TermOut setting doesn't completely turn off output?
Check out this session of mine:
Shouldn't "set termout off" prevent the Command Window from displaying the results of my SELECT?
I wouldn't care all that much, but I tried running the script we have to allow us to jump between schemas, and it displayed the schema password!
Not good.
There's a "set termout off" in the script which normally blocks this display when run from SQL*plus. But it's totally visible in the Developer Command Window!

Stew
I'm still just trying out Developer, so I might have a setting wrong.
It seems that the Command Window TermOut setting doesn't completely turn off output?
Check out this session of mine:
Code:
Connected to Oracle9i Enterprise Edition Release 9.2.0.5.0
Connected as stew
SQL> set echo off
SQL> set termout off
SQL> select count(*) from appeals;
COUNT(*)
----------
622027
SQL>
I wouldn't care all that much, but I tried running the script we have to allow us to jump between schemas, and it displayed the schema password!
Not good.
There's a "set termout off" in the script which normally blocks this display when run from SQL*plus. But it's totally visible in the Developer Command Window!

Stew