Những gì Max nói là chính xác. Hãy thử tập lệnh đã sửa đổi này
#!/bin/sh
echo "Please enter evaluate database username"
read eval_user
echo "Please enter evaluate database password"
read eval_pass
echo "Please enter the database name"
read db_name
LOGFILE=shell_log.txt
sqlplus -s /nolog <<-EOF>> ${LOGFILE}
WHENEVER OSERROR EXIT 9;
WHENEVER SQLERROR EXIT SQL.SQLCODE;
connect $eval_user/[email protected]$db_name
DBMS_OUTPUT.put_line('Connected to db');
EOF
sql_return_code=$?
if [ $sql_return_code != 0 ]
then
echo "The upgrade script failed. Please refer to the log results.txt for more information"
echo "Error code $sql_return_code"
exit 0;
fi
Vui lòng lưu ý việc sử dụng sql_return_code để lấy mã trả về SQLPLUS.
Câu lệnh DBMS_OUTPUT không thành công với lỗi - "SP2-0734:lệnh không xác định bắt đầu ...". Bạn có thể tìm thấy thông báo lỗi trong tệp nhật ký.
Có thể bẫy lỗi sp2 trong SQLPLUS 11g bằng cách sử dụng phương tiện ghi lỗi. Vui lòng xem tại http://tkyte.blogspot.co.uk/2010/04/new-thing-about-sqlplus.html để biết thêm thông tin.