【Oracle】RHEL6.4-64位 安裝oracle11.2.0.3(六) 建庫後相關配置

海星星hktk發表於2015-12-22
RHEL6.4-64位 安裝oracle11.2.0.3(六) 
建庫後相關配置

作業系統:RHEL6.4 - 64位
資料庫:   Oracle 11.2.0.3  64位 


1.6 建庫後相關配置
1.6.1 sqlplus命令提示符
[oracle@rhel64 ~]$ cd $ORACLE_HOME/sqlplus/admin

[oracle@rhel64 admin]$ vi glogin.sql
define _editor=vi

set linesize 100
set pagesize 9999
set sqlprompt "_user'@'_connect_identifier>"

[oracle@rhel64 ~]$ sqlplus / as sysdba



1.6.2 sqlplus歷史命令
xftp 上傳軟體包rlwrap 原始碼包
yum安裝readline  gcc
[root@rhel64 ~]# yum install readline*
[root@rhel64 ~]# yum install gcc*
驗證gcc make 命令可用
[root@rhel64 ~]# which make
[root@rhel64 ~]# which gcc

解包
[root@rhel64 db]# tar -zxvf rlwrap-0.37.tar.gz

配置
[root@rhel64 db]# cd rlwrap-0.37
[root@rhel64 rlwrap-0.37]# ./configure

編譯 安裝
[root@rhel64 rlwrap-0.37]# make
[root@rhel64 rlwrap-0.37]# make install

[root@rhel64 rlwrap-0.37]# which rlwrap


編輯oracle使用者.bash_profile檔案 追加兩行配置

[oracle@rhel64 ~]$ vi .bash_profile
alias sqlplus='/usr/local/bin/rlwrap sqlplus'
alias rman='/usr/local/bin/rlwrap rman'


[oracle@rhel64 ~]$ source .bash_profile

sqlplus 登入測試 上下方向鍵可檢視歷史命令
[oracle@rhel64 ~]$ sqlplus / as sysdba

1.6.3 scott使用者
SYS@PROD>conn scott/tiger
SCOTT@PROD>show user


SCOTT@PROD>select * from emp;
SCOTT@PROD>select * from dept;


1.6.4 正常關閉資料庫
關閉作業系統之前,必須先使用sys使用者正常關閉資料庫例項。
SCOTT@PROD>conn / as sysdba
SYS@PROD>show user
SYS@PROD>shutdown immediate;

相關程式已不存在


1.6.5 啟動資料庫命令
[oracle@rhel64 ~]$ sqlplus / as sysdba

idle instance  說明資料庫例項沒有啟動

SYS@PROD>startup

SYS@PROD>select status from v$instance;



呂星昊
2015.12.22



來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/29475508/viewspace-1877016/,如需轉載,請註明出處,否則將追究法律責任。

相關文章