12c 簡單至極的靜默方式建立資料庫
12c 官方文件上建議建立資料庫使用AL32UTF8字符集,並給出了一個靜默模式快速安裝資料庫的一個小例子。
Oracle建議安裝資料庫時採用AL32UTF8字符集,它對於全世界各種不同語言支援的較好。改變字符集是一個複雜而繁重的工作,最好不要再修改。所以建議使用AL32UTF8。即便是Oracle建議使用該字符集,在DBCA建立資料庫的時候預設選項並不是AL32UTF8,而是基於作業系統當前的語言區域選定的,比如WE8MSWIN1252。
Oracle recommends AL32UTF8 as the database character set. AL32UTF8 is Oracle's name for the UTF-8 encoding of the Unicode standard. The Unicode standard is the universal character set that supports most of the currently spoken languages of the world. The use of the Unicode standard is indispensable for any multilingual technology, including database processing.
下面來執行一次這個建庫語句,感受這簡單至極的過程,字符集採用AL32UTF8
[oracle@test ~]$ dbca -silent -createDatabase -templateName General_Purpose.dbc -gdbname oradb.example.com -sid oradb -responseFile NO_VALUE -characterSet AL32UTF8 -memoryPercentage 30 -emConfiguration LOCAL
Enter SYS user password:
Enter SYSTEM user password:
Copying database files
1% complete
3% complete
11% complete
18% complete
26% complete
33% complete
37% complete
Creating and starting Oracle instance
40% complete
45% complete
50% complete
55% complete
56% complete
60% complete
62% complete
Completing Database Creation
66% complete
70% complete
73% complete
85% complete
96% complete
100% complete
Look at the log file "/12c/app/oracle/cfgtoollogs/dbca/oradb/oradb.log" for further details.
[oracle@test ~]$ export ORACLE_SID=oradb
[oracle@test ~]$ sqlplus / as sysdba
SQL*Plus: Release 12.1.0.1.0 Production on Fri Jan 30 17:02:50 2015
Copyright (c) 1982, 2013, Oracle. All rights reserved.
Connected to:
Oracle Database 12c Enterprise Edition Release 12.1.0.1.0 - 64bit Production
With the Partitioning, OLAP, Advanced Analytics and Real Application Testing options
SYS@oradb >show parameter name
NAME TYPE VALUE
------------------------------------ ----------- ------------------------------
cell_offloadgroup_name string
db_file_name_convert string
db_name string oradb
db_unique_name string oradb
global_names boolean FALSE
instance_name string oradb
lock_name_space string
log_file_name_convert string
pdb_file_name_convert string
processor_group_name string
service_names string oradb.example.com
SYS@oradb >
SYS@oradb >select name from v$datafile;
NAME
--------------------------------------------------------------------------------
/12c/app/oracle/oradata/oradb/system01.dbf
/12c/app/oracle/oradata/oradb/sysaux01.dbf
/12c/app/oracle/oradata/oradb/undotbs01.dbf
/12c/app/oracle/oradata/oradb/users01.dbf
[oracle@test ~]$ export ORACLE_SID=oradb
[oracle@test ~]$ sqlplus / as sysdba
SQL*Plus: Release 12.1.0.1.0 Production on Fri Jan 30 17:02:50 2015
Copyright (c) 1982, 2013, Oracle. All rights reserved.
Connected to:
Oracle Database 12c Enterprise Edition Release 12.1.0.1.0 - 64bit Production
With the Partitioning, OLAP, Advanced Analytics and Real Application Testing options
SYS@oradb >show parameter name
NAME TYPE VALUE
------------------------------------ ----------- ------------------------------
cell_offloadgroup_name string
db_file_name_convert string
db_name string oradb
db_unique_name string oradb
global_names boolean FALSE
instance_name string oradb
lock_name_space string
log_file_name_convert string
pdb_file_name_convert string
processor_group_name string
service_names string oradb.example.com
SYS@oradb >
SYS@oradb >select name from v$datafile;
NAME
--------------------------------------------------------------------------------
/12c/app/oracle/oradata/oradb/system01.dbf
/12c/app/oracle/oradata/oradb/sysaux01.dbf
/12c/app/oracle/oradata/oradb/undotbs01.dbf
/12c/app/oracle/oradata/oradb/users01.dbf
全文完
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/29047826/viewspace-1431667/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- dbca silent靜默建立資料庫資料庫
- 靜默方式安裝、升級oracle(二): 建立資料庫Oracle資料庫
- Oracle 12C 單例項資料庫靜默安裝Oracle單例資料庫
- 靜默建立oracle資料庫及克隆資料庫Oracle資料庫
- 靜默安裝資料庫介質和建立資料庫資料庫
- weblogic靜默方式建立域Web
- oracle 11g使用DBCA以非互動(靜默)方式建立資料庫Oracle資料庫
- DBCA靜默方式建庫
- 使用靜默方式安裝11g資料庫資料庫
- 在CentOS-6.7上靜默安裝Oracle 11g及靜默建立資料庫CentOSOracle資料庫
- 11gr2 RAC靜默刪除、建立資料庫資料庫
- dbca靜默silent建立資料庫_空間不足出錯資料庫
- oracle11g單例項透過命令列dbca靜默建立資料庫Oracle單例命令列資料庫
- oracle資料庫的靜默(Quiesce)狀態Oracle資料庫UI
- 靜默方式安裝、升級oracle(三): 升級資料庫軟體及資料庫Oracle資料庫
- 資料庫靜默安裝總結資料庫
- 2.3.3 關於使用非互動式/靜默DBCA建立資料庫資料庫
- Oracle 11g靜默安裝軟體+手工建立資料庫Oracle資料庫
- 19c(19.3) 單機資料庫靜默安裝資料庫
- Oracle資料庫靜默安裝實踐Oracle資料庫
- 靜默安裝資料庫—dbca.rsp資料庫
- oracle 12c 靜默安裝Oracle
- 【DBCA -SILENT】靜默方式安裝11gR2 oracle資料庫軟體Oracle資料庫
- 靜默安裝Oracle12.2資料庫Oracle資料庫
- 靜默安裝Oracle11g資料庫Oracle資料庫
- 靜默安裝Oracle資料庫11gOracle資料庫
- Standby資料庫簡單建立過程資料庫
- DBCA靜默方式建庫及啟用歸檔模式模式
- Linux下建立靜態庫、動態庫以及簡單的makefileLinux
- Oracle資料庫的靜默狀態和掛起狀態Oracle資料庫
- oracle靜默建庫刪庫Oracle
- oracle 11g資料庫軟體靜默安裝Oracle資料庫
- 【DBCA -SILENT】靜默安裝之rac資料庫安裝資料庫
- 簡單資料庫及表建立shell指令碼資料庫指令碼
- 【oracle】靜默安裝oracle軟體和資料庫之三Oracle資料庫
- 【oracle】靜默安裝oracle軟體和資料庫之二Oracle資料庫
- 【oracle】靜默安裝oracle軟體和資料庫之一Oracle資料庫
- 2.5.8 指定OMF方式建立資料庫資料庫