Oracle Database Startup and Shutdown Procedure

参考网址: 

http://www.thegeekstuff.com/2009/01/oracle-database-startup-and-shutdown-procedure/

http://docs.oracle.com/cd/E11882_01/server.112/e10713/startup.htm

http://onlineappsdba.com/

所有的操作需要在DOS下的SQLPLUS来完成:

在任意一个时刻,Oracle将处于以下几个状态之一:

SHUTDOWN

NOMOUNT

MOUNT

OPEN

MOUNT:安装

1、启动Oracle

The default SPFILE (server parameter file) is located under $ORACLE_HOME/dbs. Oracle will use this SPFILE during startup, if you don’t specify PFILE.
默认参数放置在$ORACLE_HOME/dbs文件夹下,Oracle将会使用SPFILE(Start Parameters File)
Oracle will look for the parameter file in the following order under $ORACLE_HOME/dbs. If any one of them exist, it will use that particular parameter file.(Oracle首先会到$ORACLE_HOME/dbs搜索启动文件,如果任何都没有找到,Oracle将会使用指定的pfile文件)

以下三个参数的位置:

D:\ORACLE\PRODUCT\10.2.0\admin\MERITIT\pfile
D:\ORACLE\PRODUCT\10.2.0\db_1\database\initMERITIT.ora
D:\ORACLE\PRODUCT\10.2.0\db_1\dbs下的两个文件

  1. spfile$ORACLE_SID.ora
  2. spfile.ora
  3. init$ORACLE_SID.ora

Type “startup” at the SQL command prompt to startup the database as shown below.

原文地址:https://www.cnblogs.com/caroline/p/2562996.html