要在Shell中獲取SQLPlus執行的結果,可以使用以下方法之一:
示例:
sqlplus -s username/password@database_name << EOF
SPOOL output.txt
SELECT * FROM table_name;
SPOOL OFF
EXIT
EOF
result=$(cat output.txt)
echo $result
示例:
result=$(sqlplus -s username/password@database_name << EOF
SET PAGESIZE 0
SET FEEDBACK OFF
SET VERIFY OFF
SELECT * FROM table_name;
EXIT
EOF
)
echo $result
注意:在使用以上方法時,需要將實際的用戶名、密碼、數據庫名和表名替換為相應的值。