溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

手工創(chuàng)建Oracle 11g數(shù)據(jù)庫

發(fā)布時間:2020-08-17 07:49:30 來源:ITPUB博客 閱讀:141 作者:fangxingyiak 欄目:關系型數(shù)據(jù)庫

配置Oracle環(huán)境變量

1、編輯.bash_profile

[oracle@FDB ~]$ vi ~/.bash_profile

手工創(chuàng)建Oracle 11g數(shù)據(jù)庫

2、使配置文件生效

[oracle@FDB ~]$ . .bash_profile

創(chuàng)建參數(shù)文件initFDB.ora和密碼文件orapwFDB

1、參數(shù)文件和密碼文件對應目錄如下

手工創(chuàng)建Oracle 11g數(shù)據(jù)庫

2、創(chuàng)建參數(shù)文件initFDB.ora并且創(chuàng)建相應目錄。(FDB為實例名)

[oracle@FDB ~]$ vi  initFDB.ora

參數(shù)文件添加如下內(nèi)容:

db_name='FDB'

memory_target=1G

processes = 150

audit_file_dest='/u01/app/oracle/admin/FDB/adump'

audit_trail ='db'

db_block_size=8192

db_domain='us.oracle.com'

db_recovery_file_dest='/u01/app/oracle/fast_recovery_area'

db_recovery_file_dest_size=2G

diagnostic_dest='/u01/app/oracle'

dispatchers='(PROTOCOL=TCP) (SERVICE=ORCLXDB)'

open_cursors=300

remote_login_passwordfile='EXCLUSIVE'

undo_tablespace='UNDOTBS'

control_files = (/u01/app/oracle/oradata/FDB/control1.ctl,/u01/app/oracle/oradata/FDB/control2.ctl)

compatible ='11.2.0'

創(chuàng)建參數(shù)文件種相應的文件目錄:

[oracle@FDB dbs]$ mkdir -p /u01/app/oracle/admin/FDB/adump

[oracle@FDB dbs]$ mkdir -p /u01/app/oracle/oradata/FDB

3、創(chuàng)建Oracle密碼文件

[oracle@FDB dbs]$ orapwd file=orapwFDB password=oracle entries=30

4、連接數(shù)據(jù)庫創(chuàng)建 spfile 并啟動到 nomount

[oracle@FDB dbs]$ export ORACLE_SID=FDB

[oracle@FDB dbs]$ sqlplus / as sysdba

SQL*Plus: Release 11.2.0.3.0 Production on Thu Jan 9 16:12:29 2020

Copyright (c) 1982, 2011, Oracle.  All rights reserved.

Connected.

SQL>  create spfile from pfile;

File created.

SQL> startup nomount

向AI問一下細節(jié)

免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI