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指令碼生成動態sql指令碼SQL
- Xcode新增Shell指令碼打包靜態庫和動態庫XCode指令碼
- 指令碼的動態載入指令碼
- 一個比較好的shell指令碼指令碼
- groovy之動態指令碼的使用指令碼
- 動態建立檢視指令碼指令碼
- 比較forward動作指令和include動作指令Forward
- 使用expect執行動態指令碼指令碼
- shell指令碼-免互動指令碼
- shell指令碼自動化採集效能sql指令碼SQL
- sqlplus動態生成linux shell指令碼並執行SQLLinux指令碼
- 靜態路由和動態路由的比較路由
- 動態引用外部的Javascript指令碼檔案JavaScript指令碼
- Java動態指令碼Groovy,高階啊!Java指令碼
- 動態更新資料庫指令碼——Mysql資料庫指令碼MySql
- 動態載入javascript指令碼程式碼例項JavaScript指令碼
- Shell 指令碼中的exit狀態解釋指令碼
- 自動化指令碼安裝mysql shell指令碼範例指令碼MySql
- SQL Server啟動指令碼SQLServer指令碼
- JavaScript學習10:動態載入指令碼和樣式JavaScript指令碼
- Shell指令碼監控MySQL主從狀態指令碼MySql
- 利用shell指令碼監控網站狀態指令碼網站
- 關於shell中的pl/sql指令碼錯誤排查與分析SQL指令碼
- PL/SQL執行動態SQLSQL
- 自動重建失效index的shell指令碼Index指令碼
- ORACLE自動備份shell指令碼Oracle指令碼
- svn and maven 自動部署shell指令碼Maven指令碼
- Linux/Unix shell 指令碼中呼叫SQL,RMAN指令碼Linux指令碼SQL
- 使用批處理指令碼或SHELL配合SQL指令碼指令碼SQL
- Mongodb總結1-啟動和Shell指令碼MongoDB指令碼
- iOS使用指令碼跟隨工程程式碼動態生成FrameworkiOS指令碼Framework
- Java動態指令碼Groovy讀取配置檔案Java指令碼
- 風控規則引擎(一):Java 動態指令碼Java指令碼
- 【Shell】使用Shell指令碼快速完成SQL指令碼中重複枯燥的任務指令碼SQL
- 使用shell指令碼生成只讀許可權的sql指令碼指令碼SQL
- 完全開源免費阿里雲域名動態 IP 解析 Shell 小指令碼阿里指令碼
- shell指令碼——比較兩個檔案大小、許可權指令碼
- PL/SQL 動態sql語句例SQL