I have two IBM AIX Servers. One is having Oracle Client 10.2.0.4 installed and another is having Oracle Client 10.2.0.5 installed. In SQLPLUS silent mode, per the oracle documentation, the username and the password prompts are not invoked and no other prompts are invoked. But in oracle 10.2.0.5, the "Enter password:" prompt is coming causing some issues with my shell scripts. Below is the log of both the servers. I have just connect to sqlplus using /NOLOG and connected to the schema@DB and entered password and selected 1 from dual.
In IBM AIX 5.3 with Oracle Client 10.2.0.4 (this is working fine):
$> sqlplus -s /NOLOG
connect schema_name@DBName
select 1 from dual;
1
-------
1
exit
$>
In IBM AIX 6.1 with Oracle Client 10.2.0.5 (this is not working properly):
$> sqlplus -s /NOLOG
connect schema_name@DBName
Enter password:
select 1 from dual;
1
-------
1
exit
$>
Clearly, it can be seen that the "Enter password:" is getting displayed in the silent mode. Do I need to configure something in the Oracle Client 10.2.0.5 to fix this issue.