cd /u01/app/oracle/bin
export ORACLE_BASE=/u01/app/oracle
export ORACLE_SID=ORCL
export ORACLE_HOME=$ORACLE_BASE
export PATH=$PATH:$ORACLE_HOME/bin
#啟動監聽
lsnrctl start
#關閉監聽
lsnrctl stop
#啟動數據庫
sqlplus "/as sysdba"
sql>startup
#停止數據庫
sql>shutdown immediate
#啟動dbconsole服務
emctl start dbconsole
#停止dbconsole服務
emctl stop dbconsole
#啟動或停止 iSQL*Plus:
isqlplusctl start | stop