Oracle 中手工建立資料庫的語法
Oracle 8i:
(還不支援 9i 的 AUM 特性,需要 DBA 手工管理 Undo 表空間大小和回滾段數量)
CREATE DATABASE "test"
maxdatafiles 254
maxinstances 8
maxlogfiles 32
character set US7ASCII
national character set UTF8
DATAFILE '/opt/oracle/oradata/test/system01.dbf' SIZE 260M AUTOEXTEND ON NEXT 10240K
logfile
'/opt/oracle/oradata/test/redo01.log' SIZE 4M,
'/opt/oracle/oradata/test/redo02.log' SIZE 4M,
'/opt/oracle/oradata/test/redo03.log' SIZE 4M;
然後再建立 Undo, Temp 表空間,Rollback Segments.....執行建立資料字典指令碼 catalog.sql, catproc.sql .....
@?/rdbms/admin/catalog.sql
@?/rdbms/admin/catproc.sql
...............
@?/rdbms/admin/utlrp.sql
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[@more@]Oracle 9i:
(引入 AUM 特性,相應的初始化引數是 undo_management, undo_retention 和 undo_tablespace;
保留手工管理 undo 支援;支援表空間本地管理特性(Extent Management Local),9.2 支援 SYSTEM 表空間)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Oracle 10g:
(引入 SYSAUX 表空間特性,在手工建立資料庫的時候必須包含建立 SYSAUX 表空間的語句)
當禁用 AUM 時,10g 中依然是預設設定
undo_management='MANUAL'
create database test
maxdatafiles 1024
maxlogfiles 9
maxlogmembers 3
maxloghistory 1
maxinstances 1
character set al32utf8
national character set al16utf16
datafile '/opt/oracle/oradata/test/system01.dbf' size 50M autoextend on
sysaux datafile '/opt/oracle/oradata/test/sysaux01.dbf' size 300M
logfile
'/opt/oracle/oradata/test/redo01.log' SIZE 4M,
'/opt/oracle/oradata/test/redo02.log' SIZE 4M,
'/opt/oracle/oradata/test/redo03.log' SIZE 4M;
建立 sysaux 表空間的語句必須存在, 否則會報 (ORA-13504: No SYSAUX datafile clause specified) 錯誤;
如果指令碼中包含建立 undo 表空間的命令,則會報 (ORA-30014: operation only supported in Automatic Undo Management mode) 錯誤。
上面這段指令碼等效於前面 8i 中的命令,再簡潔不過了。
當禁用 AUM,並且system 表空間使用本地管理特性時 (extent management local)
undo_management='MANUAL'
create database test
maxdatafiles 1024
maxlogfiles 9
maxlogmembers 3
maxloghistory 1
maxinstances 1
character set al32utf8
national character set al16utf16
datafile '/opt/oracle/oradata/test/system01.dbf' size 50M autoextend on extent management local
sysaux datafile '/opt/oracle/oradata/test/sysaux01.dbf' size 300M
default temporary tablespace temp
tempfile '/opt/oracle/oradata/test/temp01.dbf' size 20M
logfile
'/opt/oracle/oradata/test/redo01.log' SIZE 4M,
'/opt/oracle/oradata/test/redo02.log' SIZE 4M,
'/opt/oracle/oradata/test/redo03.log' SIZE 4M;
建立預設臨時表空間的語句必須存在,否則會報 (ORA-12900: must specify a default temporary tablespace for a locally managed
database) 錯誤,這是 10g 中要求的。
當啟用 AUM 時
undo_management='AUTO'
undo_tablespace='UNDOTBS'
create database test
maxdatafiles 1024
maxlogfiles 9
maxlogmembers 3
maxloghistory 1
maxinstances 1
character set al32utf8
national character set al16utf16
datafile '/opt/oracle/oradata/test/system01.dbf' size 50M AUTOEXTEND ON
sysaux datafile '/opt/oracle/oradata/test/sysaux01.dbf' size 300M
undo tablespace undotbs
datafile '/opt/oracle/oradata/test/undotbs01.dbf' size 10M autoextend on maxsize unlimited
logfile
'/opt/oracle/oradata/test/redo01.log' SIZE 4M,
'/opt/oracle/oradata/test/redo02.log' SIZE 4M,
'/opt/oracle/oradata/test/redo03.log' SIZE 4M;
如果指令碼中不包含建立 undo 表空間的命令 (undo tablespace xxx......),則會報 (ORA-30045: No undo tablespace name specified) 錯誤;
如果引數和指令碼中的表空間名稱不一致則會報常見的 (ORA-01092: ORACLE instance terminated. Disconnection forced) 錯誤。
當啟用 AUM 時,並且 system 表空間使用本地管理特性時 (extent management local)
undo_management='AUTO'
undo_tablespace='UNDOTBS'
create database test
maxdatafiles 1024
maxlogfiles 9
maxlogmembers 3
maxloghistory 1
maxinstances 1
character set al32utf8
national character set al16utf16
datafile '/opt/oracle/oradata/test/system01.dbf' size 50M autoextend on extent management local
sysaux datafile '/opt/oracle/oradata/test/sysaux01.dbf' size 300M
default temporary tablespace temp
tempfile '/opt/oracle/oradata/test/temp01.dbf' size 20M
undo tablespace undotbs
datafile '/opt/oracle/oradata/test/undotbs01.dbf' size 10M autoextend on maxsize unlimited
logfile
'/opt/oracle/oradata/test/redo01.log' SIZE 4M,
'/opt/oracle/oradata/test/redo02.log' SIZE 4M,
'/opt/oracle/oradata/test/redo03.log' SIZE 4M;
四個必要的表空間一個不能少!
當啟用 OMF 時,AUM 必須啟用
db_create_file_dest='/opt/oracle/oradata'
db_create_online_log_dest_1='/opt/oracle/oradata'
undo_management='AUTO'
create database test
user sys identified by oracle
user system identified by oracle
undo tablespace undotbs
default temporary tablespace temp;
我們可以使它更簡潔如下:
create database test;
此時臨時表空間需要手工建立如下:
create temporary tablespace temp;
當啟用 OMF & ASM 時,AUM 必須啟用
db_create_file_dest='+DATA1'
db_create_online_log_dest_1='+DATA1'
undo_management='AUTO'
create database test;
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/18841027/viewspace-1059875/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- Oracle 手工建立資料庫Oracle資料庫
- 手工建立oracle資料庫Oracle資料庫
- 手工建立oracle資料庫(轉)Oracle資料庫
- 手工建立oracle資料庫的過程Oracle資料庫
- 【原創】手工建立Oracle資料庫Oracle資料庫
- 【手工建庫】手工方式建立 ORACLE資料庫全程記錄Oracle資料庫
- 手工建立資料庫資料庫
- Oracle11g 手工建立資料庫Oracle資料庫
- 手工建立ORACLE 11g 資料庫Oracle資料庫
- oracle10g手工建立資料庫Oracle資料庫
- Oracle 10g手工建立資料庫Oracle 10g資料庫
- 手工命令建立資料庫資料庫
- Oracle獲取資料庫中的物件建立語句Oracle資料庫物件
- 手工建立資料庫的完整步驟資料庫
- 手工建立(Create)一個Oracle 10g資料庫Oracle 10g資料庫
- 手工建立oracle示例資料庫schema (Database Examples 安裝)Oracle資料庫Database
- oracle xe 10g 手工建立資料庫 for windows XPOracle資料庫Windows
- 4, 手工建立資料庫(筆記)資料庫筆記
- 手工建立/刪除資料庫的步驟資料庫
- 手工刪除oracle資料庫Oracle資料庫
- Oracle 10g 手工建立一個最簡單的資料庫Oracle 10g資料庫
- Oracle學習系列—Window作業系統下Oracle資料庫的手工建立Oracle作業系統資料庫
- ORACLE建立資料庫時無法建立目錄Oracle資料庫
- 2.4.10 Step 9:手工建立資料庫資料庫
- Oracle學習系列—Window作業系統下Oracle資料庫的手工建立(zt)Oracle作業系統資料庫
- Oracle資料庫中的整型表示法Oracle資料庫
- Oracle 11g靜默安裝軟體+手工建立資料庫Oracle資料庫
- Linux平臺下Oracle 10.2.0.1 手工建立資料庫過程LinuxOracle資料庫
- 手工建立一個資料庫的步驟參考資料庫
- 建立Oracle包的語法Oracle
- 手工建立、刪除11gR2資料庫資料庫
- Oracle 11g r2基於OMF方式手工建立資料庫Oracle資料庫
- 手工建立資料庫的全部指令碼及說明(轉)資料庫指令碼
- 教你手工建立資料庫的全部指令碼及說明資料庫指令碼
- 手工建立資料庫的全部指令碼及說明 (轉)資料庫指令碼
- 【手工建庫】(二)在原有資料庫的基礎上再建立一個資料庫資料庫
- 資料庫無法建立資料庫檢視資料庫
- 手工修改Oracle資料庫DBNAME-轉載Oracle資料庫