sqlplus與shell自動提取資料檔案的邏輯卷lv並開啟自動擴充套件

wisdomone1發表於2013-06-25
sqlplus  '/ as sysdba'<set pagesize 200 heading off  feedback off
spool /oracle/test.sh
select '/usr/sbin/lvdisplay '||file_name||'|'||'grep '||''''||'LV Size'||'''' from dba_data_files where autoextensible='NO';
spool off
exit
EOF
more test.sh|sed '/^$/d'|sed '/SQL>/d'>test1.sh&&mv test1.sh test.sh
chmod u+x test.sh
rawsize=`sudo -u root /oracle/test.sh|awk {'print $3'}`
rawsize=`echo ${rawsize}-1|bc`
rawsize=${rawsize}m
sqlplus '/as sysdba'<alter database datafile '/dev/vg2/lv2' autoextend on maxsize ${rawsize};
EOF
chmod u+x all.sh

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

相關文章