手動建立資料庫
1.安裝了oracle的軟體
2.配置的環境如下
ORACLE_SID=orcl; export ORACLE_SID=ORCL
ORACLE_BASE=/u01/app/oracle; export ORACLE_BASE
ORACLE_HOME=$ORACLE_BASE/product/11.2.0/db_1; export ORACLE_HOME
PATH=$ORACLE_HOME/bin:$PATH; export PATH
NLS_LANG=american_america.al32utf8; export NLS_LANG
3.編寫引數檔案 initORCL.ora
db_name=orcl
instance_name=ORCL
memory_target=600m
undo_management=auto
undo_tablespace=undotbs
diagnostic_dest=/u01/app/oracle
processes=150
control_files='/u01/app/oracle/oradata/ORCL/control01.ctl'
4.建立密碼檔案
orapwdfile='/u01/app/oracle/product/11.2.0/db_1/dbs/orapwORCL' password=oracle
5.建立必要的目錄
mkdir-p /u01/app/oracle/oradata/ORCL
6.啟動資料庫到nomount模式,建立spfile
createspfile from pfile;
7.建立資料庫
createdatabase orcl
logfile
group1 ('/u01/app/oracle/oradata/ORCL/redo01.log') size 512000k, #這裡有個逗號,檔案大小可能要用k
group2 ('/u01/app/oracle/oradata/ORCL/redo02.log') size 512000k
maxinstances8
maxdatafiles200
maxlogfiles32
maxlogmembers5
maxloghistory1000
usersys identified by oracle
usersystem identified by oracle
characterset al32utf8
nationalcharacter set al16utf16
datafile'/u01/app/oracle/oradata/ORCL/system01.dbf' size 512000k autoextendon maxsize unlimited
sysauxdatafile '/u01/app/oracle/oradata/ORCL/sysaux01.dbf' size 512000kautoextend on maxsize unlimited
undotablespace undotbs datafile'/u01/app/oracle/oradata/ORCL/undotbs01.dbf' size 512000k autoextendon maxsize unlimited #一定要和引數檔案中指定的回滾表空間名稱一樣。
defaulttemporary tablespace temp tempfile'/u01/app/oracle/oradata/ORCL/temp01.dbf' size 512000k autoextend onmaxsize unlimited ;
8.建立一個預設的永久表空間
createtablespace users datafile '/u01/app/oracle/oradata/ORCL/users01.dbf'size 100m autoextend on maxsize 1g;
alterdatabase default tablespace users;
9.執行必須的指令碼檔案
sys:
@?/rdbms/admin/catalog //建立資料字典
@?/rdbms/admin/catproc//建立必須的PL/sql
system
@?/sqlplus/admin/pupbld//建立必須的pl/sql
9.配置監聽
建立檔案$ORACLE_HOME/network/admin/listener.ora
LISTENER=
(DESCRIPTION_LIST =
(DESCRIPTION =
(ADDRESS = (PROTOCOL = TCP)(HOST = localhost)(PORT = 1521))
)
)
10.編輯TNS檔案
orcl=
(description=
(address_list=
(address=(protocol=tcp)(host=localhost)(port=1521))
)
(connect_data=
(service_name=ORCL)
)
)
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/30083145/viewspace-1386941/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- mongodb怎麼手動建立資料庫MongoDB資料庫
- 建立資料庫資料庫
- Mysql建立資料庫MySql資料庫
- 建立資料庫表資料庫
- 自己動手寫Android資料庫框架Android資料庫框架
- MySQL手動資料校驗+雲資料庫資料校驗MySql資料庫
- 小黑框建立資料庫資料庫
- 資料庫 建立 3表資料庫
- mongodb 如何建立資料庫MongoDB資料庫
- 建立資料mysql庫流程MySql
- 資料庫之建立索引資料庫索引
- XamarinSQLite教程建立資料庫aSQLite資料庫
- 2.3.2 關於使用互動式DBCA建立資料庫資料庫
- oracle資料庫建立資料庫例項-九五小龐Oracle資料庫
- mongodb資料庫如何建立索引?MongoDB資料庫索引
- 2 建立和配置資料庫資料庫
- 2.8.1.4 建立資料庫服務資料庫
- 2.2.1 資料庫建立計劃資料庫
- 2.1 關於建立資料庫資料庫
- SQL建立資料庫和表SQL資料庫
- DG備庫手動管理 新增資料檔案
- 我應該手動修改線上資料庫的資料嗎?資料庫
- 達夢資料庫手動管理統計資訊方法資料庫
- DB2建立資料庫,建立表空間DB2資料庫
- ArcGIs建立企業級資料庫資料庫
- 2.5.8 指定OMF方式建立資料庫資料庫
- 2.5 指定資料庫建立語句資料庫
- 2.4.10 Step 9:手工建立資料庫資料庫
- 2.3 通過DBCA建立資料庫資料庫
- CQL #1:SQLChain 資料庫建立流程SQLAI資料庫
- php sqlite 建立本地資料庫PHPSQLite資料庫
- 建立一個SQL測試資料庫 - 消費者資料庫SQL資料庫
- Oracle DG備庫手動管理新增資料檔案Oracle
- 8種手動和自動備份MySQL資料庫的方法MySql資料庫
- 2.3.3 關於使用非互動式/靜默DBCA建立資料庫資料庫
- Centos7 資料庫啟動使用者的建立方法CentOS資料庫
- 2.5.1 關於建立資料庫的子句資料庫
- 2.3.1 有關使用DBCA建立資料庫資料庫
- 2.4.1 使用 CREATE DATABASE 子句建立資料庫Database資料庫