Oracle11g 启动数据库实例 startup
1: nomount 模式:
描述:
该模式只会创建实例(即:创建oracle 实例的各种内存结构和服务进程),并不加载数据库,也不会打开如何数据文件。
1 [oracle@localhost ~]$ sqlplus / as sysdba; ----以 sysdba身份登录 2 3 SQL*Plus: Release 11.2.0.3.0 Production on Thu Dec 8 19:27:27 2016 4 5 Copyright (c) 1982, 2011, Oracle. All rights reserved. 6 7 8 Connected to: 9 Oracle Database 11g Enterprise Edition Release 11.2.0.3.0 - Production 10 With the Partitioning, OLAP, Data Mining and Real Application Testing options 11 12 SQL> shutdown immediate; ---关闭数据库 13 Database closed. 14 Database dismounted. 15 ORACLE instance shut down. 16 SQL> startup nomount; ----启动数据库 17 ORACLE instance started. 18 19 Total System Global Area 1221992448 bytes 20 Fixed Size 1344596 bytes 21 Variable Size 771754924 bytes 22 Database Buffers 436207616 bytes 23 Redo Buffers 12685312 bytes 24 SQL>
2:mount 模式
描述:
该模式将启动实例、加载数据库并保持数据库的关闭状态。mount 模式通常在进行数据维护时使用。比如:执行数据库完全恢复操作、更改数据库的归档模式;
3:open 模式:
描述:
该模式 将启动实例、加载并打开数据库,这是常规的启动模式。用户想要对数据库进行多种操作,就必须使用OPEN模式启动数据库实例。
1 [oracle@localhost ~]$ sqlplus / as sysdba; 2 3 SQL*Plus: Release 11.2.0.3.0 Production on Thu Dec 8 19:58:48 2016 4 5 Copyright (c) 1982, 2011, Oracle. All rights reserved. 6 7 8 Connected to: 9 Oracle Database 11g Enterprise Edition Release 11.2.0.3.0 - Production 10 With the Partitioning, OLAP, Data Mining and Real Application Testing options 11 12 SQL> startup 13 ORA-01081: cannot start already-running ORACLE - shut it down first 14 SQL> shutdown immediate; 15 ORA-01109: database not open 16 17 18 Database dismounted. 19 ORACLE instance shut down. 20 SQL> startup 21 ORACLE instance started. 22 23 Total System Global Area 1221992448 bytes 24 Fixed Size 1344596 bytes 25 Variable Size 771754924 bytes 26 Database Buffers 436207616 bytes 27 Redo Buffers 12685312 bytes 28 Database mounted. 29 Database opened. 30 SQL>
4:force 模式:
描述:
该模式 将终止实例并重新启动数据库,这种启动模式具有一定的强制性;比如:在其他启动模式失效时,可以测试使用这种启动模式。
1 [oracle@localhost ~]$ sqlplus / as sysdba; 2 3 SQL*Plus: Release 11.2.0.3.0 Production on Thu Dec 8 20:37:40 2016 4 5 Copyright (c) 1982, 2011, Oracle. All rights reserved. 6 7 8 Connected to: 9 Oracle Database 11g Enterprise Edition Release 11.2.0.3.0 - Production 10 With the Partitioning, OLAP, Data Mining and Real Application Testing options 11 12 SQL> startup force; 13 ORACLE instance started. 14 15 Total System Global Area 1221992448 bytes 16 Fixed Size 1344596 bytes 17 Variable Size 771754924 bytes 18 Database Buffers 436207616 bytes 19 Redo Buffers 12685312 bytes 20 Database mounted. 21 Database opened.
关闭数据库实例 shutdown
关闭数据库语法为;
1:NORmal方式
描述:
该模式 称作为:正常关闭方式。如果对方关闭数据库时间没有限制,通常会使用这种方式来关闭数据库。
2:transactional 方式
描述:
该模式 称作为: 食物关闭方式;它首先任务是能够保证当前所有的活动事务都可以被提交,并在在极可能短的时间内关闭数据库。
其特点为:
1 [oracle@localhost ~]$ sqlplus / as sysdba; 2 3 SQL*Plus: Release 11.2.0.3.0 Production on Thu Dec 8 21:07:30 2016 4 5 Copyright (c) 1982, 2011, Oracle. All rights reserved. 6 7 8 Connected to: 9 Oracle Database 11g Enterprise Edition Release 11.2.0.3.0 - Production 10 With the Partitioning, OLAP, Data Mining and Real Application Testing options 11 12 SYS@orcl> shutdown transactional 13 Database closed. 14 Database dismounted. 15 ORACLE instance shut down. 16 SYS@orcl> 17 18 19
3: immdediate 方式:
描述:
该模式 称作为: 立即关闭方式;该方式能够在尽可能短时间内关闭数据库
其特点为:
4:abort 方式
描述:
该模式 称作为: 终止关闭方式;终止关闭方式具有一定的强制性和破坏性。使用这个方式会强制中断任何数据库操作。这样可能丢失一部分数据信息。影响数据库的完整性;
其特点为:
1 [oracle@localhost ~]$ sqlplus / as sysdba; 2 3 SQL*Plus: Release 11.2.0.3.0 Production on Thu Dec 8 22:29:35 2016 4 5 Copyright (c) 1982, 2011, Oracle. All rights reserved. 6 7 Connected to an idle instance. 8 9 SYS@orcl> startup 10 ORACLE instance started. 11 12 Total System Global Area 1221992448 bytes 13 Fixed Size 1344596 bytes 14 Variable Size 771754924 bytes 15 Database Buffers 436207616 bytes 16 Redo Buffers 12685312 bytes 17 Database mounted. 18 Database opened. 19 SYS@orcl> shutdown abort 20 ORACLE instance shut down. 21 SYS@orcl> 22 23-------------------------------------------------
-------------------------------------------------