Here is my shell script in which I invoke sqlplus:
#!/usr/bin/ksh
sqlplus $USER/$PASSWD@$DB<<!!>./logFile.log
SELECT 'IN sqlplus' FROM dual;
DECLARE tbl_xst integer;
SELECT COUNT(*) INTO tbl_xst FROM SYS.ALL_TABLES
WHERE table_name = 'SOME_TABLE'
AND OWNER = 'SOME_OWNER';
IF tbl_xst = 1 THEN
BEGIN
DROP TABLE SOME_OWNER.SOME_TABLE;
END
END IF
SELECT 'The end' FROM dual;
!!
When I run the shell script and look into the log file logFile.log, this is what's there:
SQL*Plus: Release 10.2.0.3.0 - Production on Mon Oct 22 12:33:05 2012
Copyright (c) 1982, 2006, Oracle. All Rights Reserved.
Connected to:
Oracle Database 11g Enterprise Edition Release 11.2.0.2.0 - 64bit Production
With the Partitioning, Automatic Storage Management, OLAP, Data Mining
and Real Application Testing options
SQL> SQL>
'INSQLPLUS
----------
IN sqlplus
SQL> SQL> 2 3 4 5 6 7 8 9 10 11 12 13 14 15 Disconnected from Oracle Database 11g Enterprise Edition Releas
e 11.2.0.2.0 - 64bit Production
With the Partitioning, Automatic Storage Management, OLAP, Data Mining
and Real Application Testing options
As you can see, the first logging SELECT statement ('IN sqlplus') makes it in while the second on at the bottom doesn't, i.e. the execution doesn't reach it because there is an error in between. Why isn't sqlplus writing this error message in the log file?
EDIT AFTER SOME COMMENTS: We have established it is most likeley due to sqlplus not dumping STDERR into the specified log file, in which only STDOUT goes. How do I format the sqlplus command to combine both streams (STDOUT and ERR) to go in the specified log file? I suspect the <<!!> is critical here.
EDIT AFTER MORE EXPERIMENTATION: Weirdly enough, SOME error messages are getting dumped in STDOUT, i guess properly syntaxed ones which attempt to reference bad DB objects. If there is a SQL compilation error, it apparently goes in STDERR. What I did is inser the following line after the first SELECT above and DECLARE:
DROP TABLE FAKE_NONEXISTING;
The statement is legit and it compiles, yet FAKE_NONEXISTING doesn't exist and I get the following in the log file:
SQL> SQL> DROP TABLE FAKE_NONEXISTING
*
ERROR at line 1:
ORA-00942: table or view does not exist
However, I don't get anything in the log file for what appear to be SQL compilation errors
