shell動態指令碼和pl/sql動態指令碼的比較
最近專案有一個需求,需要在多個資料庫的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 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} <
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 "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 " <
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 <
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 <
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 <
EOS
sqlplus -s <
EOS
############## shell 指令碼實現動態shell ################################
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/17172228/viewspace-1077910/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- 指令碼的動態載入指令碼
- shell指令碼-免互動指令碼
- Shell 指令碼中的exit狀態解釋指令碼
- 動態引用外部的Javascript指令碼檔案JavaScript指令碼
- Java動態指令碼Groovy,高階啊!Java指令碼
- 自動化指令碼安裝mysql shell指令碼範例指令碼MySql
- Shell指令碼監控MySQL主從狀態指令碼MySql
- 完全開源免費阿里雲域名動態 IP 解析 Shell 小指令碼阿里指令碼
- 互動媒體手繪和碼繪的比較(靜態)
- iOS使用指令碼跟隨工程程式碼動態生成FrameworkiOS指令碼Framework
- 風控規則引擎(一):Java 動態指令碼Java指令碼
- Java動態指令碼Groovy讀取配置檔案Java指令碼
- shell指令碼指令碼
- shell擴充套件——免互動指令碼套件指令碼
- linux下啟動和終止JAVA程式shell指令碼LinuxJava指令碼
- APEX 通過PL/SQL動態展示區域中動態內容SQL
- QuickTask動態指令碼支援框架整體介紹篇UI指令碼框架
- shell 備份檔案指令碼+自動清理指令碼
- 多臺kafka同時啟動shell指令碼Kafka指令碼
- Shell指令碼控制docker容器啟動順序指令碼Docker
- shell指令碼案例指令碼
- 常用shell指令碼指令碼
- Linux Shell指令碼Linux指令碼
- 原生JS動態載入JS、CSS檔案及程式碼指令碼JSCSS指令碼
- SQL Server映象自動生成指令碼方法SQLServer指令碼
- 根據ip列表檢測主機狀態(shell指令碼)指令碼
- iOS逆向 Shell指令碼+指令碼重簽名iOS指令碼
- c#動態執行字串指令碼(最佳化版)C#字串指令碼
- linux常用的shell指令碼Linux指令碼
- Shell指令碼 | 效能測試之啟動時間指令碼
- shell指令碼監控啟動停止weblogic服務指令碼Web
- 案例八:Shell自動化管理賬號指令碼指令碼
- 建立互動式shell指令碼對話方塊指令碼
- 程式碼上線的shell指令碼指令碼
- redis學習(九) redis事務和redis指令碼的比較Redis指令碼
- Linux命令和shell指令碼學習Linux指令碼
- shell和bash指令碼命令學習指令碼
- 主題 2 Shell工具和指令碼指令碼
- java 自動升級sql指令碼 flyway 工具JavaSQL指令碼