shell動態指令碼和pl/sql動態指令碼的比較

lpwebnet發表於2014-02-08

最近專案有一個需求,需要在多個資料庫的schema上跑一些指令碼。希望dba能夠提供一個指令碼,能夠根據需求在環境中執行指定的指令碼。
乍一聽,沒什麼技術難點,為了更明白的說明問題,我舉個例子。
有4個DB Instance: DB1,DB2,DB3,DB4
有6個DB Schemas, 5個table,分佈如下: 
                         db schemas        tables
                          user1@DB1        table1, table2, table3, table4,table5
                          user2@DB2        table1, table2, table3, table4,table5
                          user3@DB3        table1, table3
                          user4@DB4        table1, table4
                          user5@DB1        table1, table5
                          user6@DB2        table2, table3, table4
實現的目標如下,對於同時含有table1--5的db schema才需要執行指定的指令碼,指令碼內容都是些dml操作。
目前的情況只能夠得到db schema的列表,對於裡面是否還有5個表,還沒有細粒度的管理。
指令碼需要從db schema的列表中篩選出符合的 db schema,然後執行指令碼內容。


################# pl/sql執行情況 #############################

#!/bin/ksh
export ScriptName=`basename $0`
export ScriptDir=`dirname $0`
echo $ScriptName
echo $ScriptDir
rep_conn=$1
Env_Code=$2
sqlplus -s ${rep_conn} < set serveroutput on
set feedback off
spool app_change_tmp.log
declare
conn_str   varchar2(100);
target_conn varchar2(200);
tmp_cnts number;
cursor cur_conn_strs is
select distinct ''||username||'/'||password||'@'||db_instance||''   conn_str  from xxxx   --查詢制定的配置表,從裡面得到一個基本的db schema列表
group by username,password,db_instance ;
begin
for cur_conn_str in cur_conn_strs  loop
dbms_output.put_line('conn '||cur_conn_str.conn_str);
dbms_output.put_line('set serveroutput on');
dbms_output.put_line('set feedback on');
dbms_output.put_line('set echo on');
dbms_output.put_line('declare');
dbms_output.put_line('tmp_cnt number;');
dbms_output.put_line('begin');
dbms_output.put_line('select count(*) into tmp_cnt from user_synonyms where synonym_name');
dbms_output.put_line(' in('||chr(39)||'T1'||chr(39)||','||chr(39)||'T2'||chr(39)||','||chr(39)||'T3'||chr(39)||','||chr(39)||'T4'||chr(39)||','||chr(39)||'T5'||chr(39)||');');
dbms_output.put_line('dbms_output.put_line(tmp_cnt);');
dbms_output.put_line('if(tmp_cnt>=5) then ');
dbms_output.put_line('dbms_output.put_line('||chr(39)||'app POST SCRIPTS RUNNING...'||chr(39)||');');
dbms_output.put_line('@script/script1.ps ');
dbms_output.put_line('@script/script2.ps ');
dbms_output.put_line('@script/script3.ps ');
dbms_output.put_line('dbms_output.put_line('||chr(39)||'app POST SCRIPTS RUNNING...'||chr(39)||');');
dbms_output.put_line('end if;');
dbms_output.put_line('end;');
dbms_output.put_line('/');
dbms_output.put_line(tmp_cnts);
end loop;
end;
/
spool off;
@app_change_tmp.log
EOS


如上的Pl/sql生成的動態pl/sql如下, 先判斷是否還有T1--T5,如果條數符合,就執行指令碼內容,但是有個限制就是執行指令碼的時候如果指令碼中有“set linesize... set define off之類的設定的話,指令碼是執行不了的,對於ddl的執行也有一些限制。

################# 生成的動態 pl/sql 如下 #############################

conn user1/user1@DB1
set serveroutput on
set feedback on
set echo on
declare
tmp_cnt number;
begin
select count(*) into tmp_cnt from user_tables where table_name
in('T1','T2','T3','T4','T5');
dbms_output.put_line(tmp_cnt);
if(tmp_cnt>=5) then
dbms_output.put_line('app POST SCRIPTS RUNNING...');
@script/script1.ps
@script/script2.ps
@script/script3.ps
dbms_output.put_line('app POST SCRIPTS RUNNING...');
end if;
end;
/


conn user2/user2@DB1
set serveroutput on
set feedback on
set echo on
declare
tmp_cnt number;
begin
select count(*) into tmp_cnt from user_tables where table_name
in('T1','T2','T3','T4','T5');
dbms_output.put_line(tmp_cnt);
if(tmp_cnt>=5) then
dbms_output.put_line('app POST SCRIPTS RUNNING...');
@script/script1.ps
@script/script2.ps
@script/script3.ps
dbms_output.put_line('app POST SCRIPTS RUNNING...');

end if;
end;
/

################# pl/sql執行情況 #############################


############## shell 指令碼實現動態shell ################################

echo 'app CHANGE START....'
cat $ScriptDir/script1.ps > $ScriptDir/app_all.ps
cat $ScriptDir/script2.ps >> $ScriptDir/app_all.ps
cat $ScriptDir/script3.ps>> $ScriptDir/app_all.ps
echo `sqlplus -s  ${rep_conn} < set feedback off  pages 0
select distinct ''||username||'/'||password||'@'||db_instance||''   conn_str  from xxxxxx   --查詢制定的配置表,從裡面得到一個基本的db schema列表
group by username,password,db_instance ;
EOF`|awk  '{for (i=1;i<=NF;i++){ print "echo `sqlplus -s  " $i " < print  "set feedback off pages 0";
print "select (case when (select count(*) from user_synonyms where synonym_name in ('\''T5'\'','\''T1'\'','\''T2'\'','\''T3'\'','\''T4'\''))>=5 then  '\''Y @app_all.ps'\'' else '\''N no_need_to_run_app_script'\'' end) from dual; ";print "EOS` " $i}}'> $ScriptDir/dynamic_tmp.ksh
ksh $ScriptDir/dynamic_tmp.ksh |awk '{ if( $1 =="Y" ){ print "sqlplus -s " $3 " <$ScriptDir/app_change_tmp.ksh
ksh $ScriptDir/app_change_tmp.ksh
rm $ScriptDir/dynamic_tmp.ksh
echo 'app CHANGE ENDED....'
rm $ScriptDir/app_change_tmp.ksh


#################生成的動態shell指令碼1內容如下#################

echo `sqlplus -s user1/user1@DB1 < set feedback off pages 0
select (case when (select count(*) from user_tables where table_name in in('T1','T2','T3','T4','T5');)>=5 then  'Y @adj_all.ps' else 'N no_need_to_run_adj_script' end) from dual;
EOS`
echo `sqlplus -s  user2/user2@DB2 < set feedback off pages 0
select (case when (select count(*) from user_tables where table_name in in('T1','T2','T3','T4','T5');)>=5 then  'Y @adj_all.ps' else 'N no_need_to_run_adj_script' end) from dual;
EOS` user2/user2@DB2

#################執行動態shell指令碼1後生成的指令碼2內容如下#################

sqlplus -s < @adj_all.ps
EOS
sqlplus -s < @adj_all.ps
EOS

############## shell 指令碼實現動態shell ################################

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

相關文章