一個有點深度的shell BUG除錯

zhyuh發表於2004-12-15

這個bug花了我一整天的功夫,最後還是在別人幫助下解決了。

雖然費這麼多時間和當初輕視它有關,這個錯誤本身也有點奇怪了。

[@more@]

為了說明問題,新寫了一個測試程式

資料庫裡有表aa,

SQL> desc aa
Name Type Nullable Default Comments
---- ------------ -------- ------- --------
COL1 VARCHAR2(10) Y

SQL> select * from aa;
COL1
----------
b
a

shell指令碼內容:

/export/home/deverdb/p482/scripts>cat test1
#!/usr/bin/bash

DB_CHAR=`sqlplus -s edentest/edentest@perdb<SET HEAD OFF
SET TERM OFF
SET FEED OFF
SELECT col1 FROM aa WHERE rownum<2;
EOF`

echo $DB_CHAR
export DB_CHAR

sqlplus edentest/edentest@perdb<set serveroutput on
execute dbms_output.put_line('before');
execute dbms_output.put_line('$DB_CHAR');
exit;
EOF

執行過程和錯誤:

/export/home/deverdb/p482/scripts>test1
b

SQL*Plus: Release 8.1.7.0.0 - Production on Tue Dec 14 09:05:14 2004

(c) Copyright 2000 Oracle Corporation. All rights reserved.


Connected to:
Oracle8i Enterprise Edition Release 8.1.7.0.0 - Production
With the Partitioning option
JServer Release 8.1.7.0.0 - Production

SQL> SQL> before

PL/SQL procedure successfully completed.

SQL> ERROR:
ORA-01756: quoted string not properly terminated


SQL> SP2-0042: unknown command "b')" - rest of line ignored.
SQL> Disconnected from Oracle8i Enterprise Edition Release 8.1.7.0.0 - Production
With the Partitioning option
JServer Release 8.1.7.0.0 - Production

究其原因,是因為 DB_CHAR 從 sql*plus 取得值,又將值作為引數傳入儲存過程時,DB_CHAR 的值(字串)前面多了一個回車符。

加上語句:

SQLSTR="dbms_output.put_line('${DB_CHAR}')"
echo $SQLSTR

可以看到返回的SQLSTR值為 dbms_output.put_line(' b'),注意b前面有空格,其實是個回車符。在sql*plus執行時,該語句就成了

SQL>dbms_output.put_line('

SQL>b')

所以出現了執行時的錯誤資訊。

解決:在 DB_CHAR賦值後加如下語句  DB_CHAR = `echo $DB_CHAR|sed -e "s/^n//"` 將前面的回車符去掉。

但是為什麼會有那個回車符,目前尚不明瞭中。

還企望高手解答。

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/207/viewspace-784471/,如需轉載,請註明出處,否則將追究法律責任。

相關文章