使用shell指令碼生成只讀許可權的sql指令碼
目前做資料遷移,有8套不同的環境,為了保護環境,每個環境中的表,檢視等開發都不能修改,只能透過連線使用者去查詢。
每個環境中可能含有表,索引,序列,儲存過程,函式等,所以一個一個寫是不現實的,寫了下面的動態指令碼來自動生成相應的許可權,然後建立對應的同義詞。
指令碼會生成兩個sql指令碼,一個是owner使用者賦予許可權使用的,另外一個指令碼是connect使用者使用的,建立了對應的同義詞。
source_schema=$1
conn_schema=$2
sqlplus -s xxx/xx <<EOF
set feedback off
set pages 0
set linesize 150
spool owner_${source_schema}_grant.sql
select 'grant select on ${source_schema}.'||object_name||' to '||' ${conn_schema};' from all_objects where object_type in ('TABLE','TABLE PARTITION','VIEW','SEQUENCE') and owner=upper('$source_schema') group by 'grant select on ${source_schema}.'||object_name||' to '||' ${conn_schema};' ;
select 'grant execute on ${source_schema}.'||object_name||' to '||' ${conn_schema};' from all_objects where object_type in ('PROCEDURE','FUNCTION','PACKAGE') and owner=upper('$source_schema') group by 'grant execute on ${source_schema}.'||object_name||' to '||' ${conn_schema};';
spool off;
spool conn_${conn_schema}_syn.sql
select 'create synonym ${conn_schema}.'||object_name||' for '||' ${source_schema}.'||object_name||';' from all_objects where object_type in ('TABLE','TABLE PARTITION','VIEW','SEQUENCE','PROCEDURE','FUNCTION','PACKAGE') and owner=upper('$source_schema') group by 'create synonym ${conn_schema}.'||object_name||' for '||' ${source_schema}.'||object_name||';';
spool off;
EOF
exit
執行結果如下:
grant select on cnvdbo8.aaaa to cnvdbc8;
grant select on cnvdbo8.bbbb to cnvdbc8;
grant select on cnvdbo8.cccc to cnvdbc8;
grant execute on cnvdbo8.dddd to cnvdbc8;
grant execute on cnvdbo8.eeee to cnvdbc8;
grant execute on cnvdbo8.ffff to cnvdbc8;
create synonym cnvdbc8.aaaa for cnvdbo8.aaaa;
create synonym cnvdbc8.bbbb for cnvdbo8.bbbb;
create synonym cnvdbc8.cccc for cnvdbo8.cccc;
每個環境中可能含有表,索引,序列,儲存過程,函式等,所以一個一個寫是不現實的,寫了下面的動態指令碼來自動生成相應的許可權,然後建立對應的同義詞。
指令碼會生成兩個sql指令碼,一個是owner使用者賦予許可權使用的,另外一個指令碼是connect使用者使用的,建立了對應的同義詞。
source_schema=$1
conn_schema=$2
sqlplus -s xxx/xx <<EOF
set feedback off
set pages 0
set linesize 150
spool owner_${source_schema}_grant.sql
select 'grant select on ${source_schema}.'||object_name||' to '||' ${conn_schema};' from all_objects where object_type in ('TABLE','TABLE PARTITION','VIEW','SEQUENCE') and owner=upper('$source_schema') group by 'grant select on ${source_schema}.'||object_name||' to '||' ${conn_schema};' ;
select 'grant execute on ${source_schema}.'||object_name||' to '||' ${conn_schema};' from all_objects where object_type in ('PROCEDURE','FUNCTION','PACKAGE') and owner=upper('$source_schema') group by 'grant execute on ${source_schema}.'||object_name||' to '||' ${conn_schema};';
spool off;
spool conn_${conn_schema}_syn.sql
select 'create synonym ${conn_schema}.'||object_name||' for '||' ${source_schema}.'||object_name||';' from all_objects where object_type in ('TABLE','TABLE PARTITION','VIEW','SEQUENCE','PROCEDURE','FUNCTION','PACKAGE') and owner=upper('$source_schema') group by 'create synonym ${conn_schema}.'||object_name||' for '||' ${source_schema}.'||object_name||';';
spool off;
EOF
exit
執行結果如下:
grant select on cnvdbo8.aaaa to cnvdbc8;
grant select on cnvdbo8.bbbb to cnvdbc8;
grant select on cnvdbo8.cccc to cnvdbc8;
grant execute on cnvdbo8.dddd to cnvdbc8;
grant execute on cnvdbo8.eeee to cnvdbc8;
grant execute on cnvdbo8.ffff to cnvdbc8;
create synonym cnvdbc8.aaaa for cnvdbo8.aaaa;
create synonym cnvdbc8.bbbb for cnvdbo8.bbbb;
create synonym cnvdbc8.cccc for cnvdbo8.cccc;
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/30633755/viewspace-2127762/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- 自動輸入密碼使用root許可權開啟shell指令碼密碼指令碼
- 巧用shell指令碼生成快捷指令碼指令碼
- 使用sql生成sql指令碼SQL指令碼
- 透過shell得到資料庫中許可權的指令碼資料庫指令碼
- 通過shell得到資料庫中許可權的指令碼資料庫指令碼
- shell指令碼——比較兩個檔案大小、許可權指令碼
- 利用shell指令碼生成動態sql指令碼SQL
- mysql檢視使用者的許可權指令碼MySql指令碼
- [Shell] Shell 生成 HTML指令碼HTML指令碼
- 使用SQL批量查詢出建立使用者及許可權指令碼SQL指令碼
- [Shell] Shell 生成 HTML指令碼,可顯示錶格HTML指令碼
- 使用批處理指令碼或SHELL配合SQL指令碼指令碼SQL
- 【Shell】使用Shell指令碼快速完成SQL指令碼中重複枯燥的任務指令碼SQL
- 關於許可權管理的實用指令碼指令碼
- oracle 使用者的只讀許可權Oracle
- Linux/Unix shell 指令碼中呼叫SQL,RMAN指令碼Linux指令碼SQL
- 使用shell生成orabbix自動化配置指令碼指令碼
- 透過shell指令碼生成查詢表資料的sql指令碼SQL
- 通過shell指令碼生成查詢表資料的sql指令碼SQL
- linux編寫.sh指令碼並賦許可權Linux指令碼
- 透過shell指令碼定位效能sql和生成報告指令碼SQL
- 通過shell指令碼定位效能sql和生成報告指令碼SQL
- 生成insert指令碼的指令碼指令碼
- 案例四:Shell指令碼生成隨機密碼指令碼隨機密碼
- shell動態指令碼和pl/sql動態指令碼的比較指令碼SQL
- shell指令碼指令碼
- 修改Viewvc程式碼使只讀許可權的使用者只能檢視logViewC程式
- 使用shell批量生成資料整合式遷移的指令碼指令碼
- 如何用Shell指令碼生成XML檔案指令碼XML
- 自動ftp,生成control file,sql*load的shell指令碼FTPSQL指令碼
- shell指令碼(二)指令碼
- shell指令碼心得指令碼
- shell指令碼案例指令碼
- 常用shell指令碼指令碼
- Shell指令碼介紹與使用指令碼
- hive streaming 使用shell指令碼Hive指令碼
- 使用shell定製awr指令碼指令碼
- Shell指令碼中cd命令使用指令碼