使用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/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- php執行shell指令碼需要sudo許可權PHP指令碼
- 自動輸入密碼使用root許可權開啟shell指令碼密碼指令碼
- linux編寫.sh指令碼並賦許可權Linux指令碼
- shell指令碼指令碼
- 案例四:Shell指令碼生成隨機密碼指令碼隨機密碼
- shell指令碼案例指令碼
- 常用shell指令碼指令碼
- Linux Shell指令碼Linux指令碼
- Shell指令碼介紹與使用指令碼
- 修改Viewvc程式碼使只讀許可權的使用者只能檢視logViewC程式
- iOS逆向 Shell指令碼+指令碼重簽名iOS指令碼
- [20231023]生成bbed的執行指令碼(bash shell).txt指令碼
- linux常用的shell指令碼Linux指令碼
- 程式碼上線的shell指令碼指令碼
- SQL Server映象自動生成指令碼方法SQLServer指令碼
- 使用shell 指令碼備份資料指令碼
- 如何使用zx編寫shell指令碼指令碼
- Linux 使用 shell 指令碼處理字串Linux指令碼字串
- 複製建立已有資料庫使用者、表空間、許可權的指令碼資料庫指令碼
- shell 指令碼加密 | shc指令碼加密
- 執行shell指令碼指令碼
- Shell 指令碼語句指令碼
- 初識shell指令碼指令碼
- 【指令碼】shell語法指令碼
- shell 指令碼寫法:指令碼
- 如何加密shell指令碼加密指令碼
- shell指令碼總結指令碼
- shell指令碼(6)-shell陣列指令碼陣列
- redolog生成指令碼指令碼
- 監控磁碟使用率的shell指令碼指令碼
- 新增多個使用者的shell指令碼指令碼
- linux shell指令碼中 =~ 的作用Linux指令碼
- LightDB/PostgreSQL 生成可重複執行的指令碼SQL指令碼
- 什麼是Shell指令碼?Shell指令碼在Linux運維工作中的地位!指令碼Linux運維
- PowerDesigner: 利用sql指令碼檔案逆生成模型SQL指令碼模型
- iOS使用shell指令碼注入混淆內容iOS指令碼
- iOS使用shell指令碼批量修改屬性iOS指令碼
- shell指令碼-免互動指令碼
- 【shell】磁碟監控指令碼指令碼