複製建立已有資料庫使用者、表空間、許可權的指令碼
remark create tablespace ;
Select 'create TABLESPACE ' || tablespace_name || ' DATAFILE ' || ''''|| file_name || '''' ||' SIZE ' || to_char(ROUND(bytes/1024/1024,0)) ||'M REUSE AUTOEXTEND ON NEXT 32M MAXSIZE UNLIMITED ;' from dba_data_files
where tablespace_name not in ('SYSTEM','USERS','UNDOTBS1','SYSAUX');
remark create tempfile tablespace ;
Select 'create TABLESPACE ' || tablespace_name || ' DATAFILE ' || ''''||file_name||'''' ||' SIZE ' || to_char(ROUND(bytes/1024/1024,0)) ||'M REUSE AUTOEXTEND ON NEXT 32M MAXSIZE UNLIMITED ;' from dba_temp_files
where tablespace_name <> 'TEMP';
spool off;
remark create user ;
select 'create user '|| username || ' identified by ''change to your password'' default tablespace '|| DEFAULT_TABLESPACE || ' TEMPORARY TABLESPACE ' || TEMPORARY_TABLESPACE ||';'
from dba_users where username not in ('SYS','SYSTEM','SCOTT','DBSNMP');
spool off
remark create role;
spool /home/oracle/backup/createrole.sql
select 'create role ' || role || ' ;' from dba_roles where role like 'ROLE%';
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/69994536/viewspace-2761392/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- Oracle資料泵建立使用者避坑(表空間配額、許可權)Oracle
- oracle建立使用者,表空間,臨時表空間,分配許可權步驟詳解Oracle
- Oracle 建立表空間和使用者指令碼Oracle指令碼
- Oracle資料庫scott使用者建立view檢視許可權Oracle資料庫View
- DB2建立資料庫,建立表空間DB2資料庫
- PostgreSQL資料庫使用者許可權管理SQL資料庫
- 資料庫的許可權管理資料庫
- 授權|取消授權MYSQL資料庫使用者許可權MySql資料庫
- MySQL建立使用者,配置許可權、密碼策略MySql密碼
- MySQL新增新使用者、為使用者建立資料庫、為新使用者分配許可權MySql資料庫
- PostgreSQL:表空間-->資料庫-->表SQL資料庫
- 通用許可權系統之資料庫表設計資料庫
- 教程示例:控制儲存空間和資料夾的訪問許可權訪問許可權
- mysql 床架新資料庫並分配使用者許可權MySql資料庫
- 2.5.9 在資料庫建立期間支援大檔案表空間資料庫
- Mysql資料庫許可權問題MySql資料庫
- 資料庫學習:許可權管理資料庫
- 怎麼控制報表的資料許可權
- PostgreSQL-表空間、資料庫、使用者之間的關係(七)SQL資料庫
- oracle建立臨時表空間和資料表空間以及刪除Oracle
- 16、表空間 建立表空間
- oracle 建立表空間和使用者Oracle
- Oracle建立表空間和使用者Oracle
- python指令碼批次建立資料表Python指令碼
- 許可權系統:一文搞懂功能許可權、資料許可權
- 達夢(DM)資料庫的表空間建立和遷移維護資料庫
- DBA 日常:規模使用者資料庫訪問許可權管理資料庫訪問許可權
- 關於SQL Server資料庫中的使用者許可權和角色管理SQLServer資料庫
- MySQL資料庫Root許可權MOF方法提權研究MySql資料庫
- 七、許可權管理和資料庫備份資料庫
- Oracle 資料庫安全許可權配置標準Oracle資料庫
- 資料分析的許可權控制
- Rbac使用者角色許可權表設計
- MySQL innodb表使用表空間物理檔案複製表MySql
- GoldenGate異種資料庫之間的複製Go資料庫
- linux編寫.sh指令碼並賦許可權Linux指令碼
- php執行shell指令碼需要sudo許可權PHP指令碼
- 填報指令碼之輕鬆搞定複雜表的資料入庫指令碼