VMware中l(wèi)inux環(huán)境下oracle安裝圖文教程(二)ORACLE 10.2.05版本的升級(jí)補(bǔ)丁安裝
首先我們解壓
$ unzip p8202632_10205_LINUX.zip
解壓后我們會(huì)發(fā)現(xiàn)多出了個(gè)文件夾,他是:Disk1,進(jìn)入Disk1。然后執(zhí)行安裝:
$ ./runInstaller








執(zhí)行腳本
# /u01/app/oracle/10.2.0/db_1/root.sh
Running Oracle 10g root.sh script...
The following environment variables are set as:
ORACLE_OWNER= oracle
ORACLE_HOME= /u01/app/oracle/10.2.0/db_1
Enter the full pathname of the local bin directory: [/usr/local/bin]:
The file "dbhome" already exists in /usr/local/bin. Overwrite it? (y/n)
[n]:
The file "oraenv" already exists in /usr/local/bin. Overwrite it? (y/n)
[n]:
The file "coraenv" already exists in /usr/local/bin. Overwrite it? (y/n)
[n]:
Entries will be added to the /etc/oratab file as needed by
Database Configuration Assistant when a database is created
Finished running generic part of root.sh script.
Now product-specific root actions will be performed.
執(zhí)行完腳本后進(jìn)行創(chuàng)建數(shù)據(jù)庫(kù)。
$ dbca


















這里之前還報(bào)了一個(gè)錯(cuò)誤,說的是企業(yè)管理器 安裝失敗。企業(yè)管理器是我們DBA日常生活必不可少的工具,所以我們必須要給它安裝起來(lái)。
[oracle@oracle Disk1]$ sqlplus / as sysdba;
SQL*Plus: Release 10.2.0.5.0 - Production on Fri Aug 15 22:23:05 2014
Copyright (c) 1982, 2010, Oracle. All Rights Reserved.
Connected to:
Oracle Database 10g Enterprise Edition Release 10.2.0.5.0 - Production
With the Partitioning, OLAP, Data Mining and Real Application Testing options
SQL> select status from v$instance;
STATUS
------------
OPEN
顯示數(shù)據(jù)庫(kù)打開正常
相關(guān)文章
Oracle expdp/impdp 及 exp/imp 命令詳解
使用Oracle數(shù)據(jù)庫(kù)的過程中會(huì)經(jīng)常對(duì)數(shù)據(jù)進(jìn)行導(dǎo)入導(dǎo)出,Oracle 數(shù)據(jù)庫(kù)提供 expdp / impdp (Data Pump,數(shù)據(jù)泵)以及 exp / imp 兩種工具進(jìn)行數(shù)據(jù)的導(dǎo)入導(dǎo)出,可以對(duì)數(shù)據(jù)庫(kù)進(jìn)行邏輯備份,這篇文章主要介紹了Oracle expdp/impdp 及 exp/imp 命令詳解,需要的朋友可以參考下2024-07-07
有關(guān)Oracle數(shù)據(jù)庫(kù)的備份情況
有關(guān)Oracle數(shù)據(jù)庫(kù)的備份情況...2007-03-03
oracle下一條SQL語(yǔ)句的優(yōu)化過程(比較詳細(xì))
很簡(jiǎn)單的一次調(diào)整,語(yǔ)句加了適當(dāng)?shù)乃饕笮阅芫陀写蠓奶嵘?。?dāng)時(shí)看到這條語(yǔ)句的時(shí)候,第一感覺就是執(zhí)行效率肯定低下。語(yǔ)句的功能是求某一客戶當(dāng)天產(chǎn)品的總銷量。2010-04-04
Oracle Database 10g數(shù)據(jù)庫(kù)安裝及配置教程
這篇文章主要介紹了Oracle Database 10g Release 2數(shù)據(jù)庫(kù)安裝及配置教程,感興趣的小伙伴們可以參考一下2016-08-08
Oracle ASM故障數(shù)據(jù)恢復(fù)解決方案
在本篇文章里小編給大家整理的是關(guān)于Oracle ASM故障數(shù)據(jù)恢復(fù)解決方案以及相關(guān)知識(shí)點(diǎn),有需要的朋友們參考下。2019-11-11

