前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >因host命令导致无法正常SHUTDOWN的实验

因host命令导致无法正常SHUTDOWN的实验

作者头像
bisal
发布2019-01-29 11:59:48
6280
发布2019-01-29 11:59:48
举报

SHUTDOWN有几个参数可以使用:

SHUTDOWN NORMAL:NORMAL也是默认的子句,执行的条件是

No new connections are allowed after the statement is issued.

Before the database is shut down, the database waits for all currently connectedusers to disconnect from the database.

下次启动时不需要任何实例恢复过程。

SHUTDOWN IMMEDIATE:执行的场景是

To initiate an automated and unattended backup.

When a power shutdown is going to occur soon.

When the database or one of its applications is functioning irregularly and youcannot contact users to ask them to log off or they are unable to log off.

执行的条件是

No new connections are allowed, nor are new transactions allowed to be started,after the statement is issued.

Any uncommitted transactions are rolled back. (If long uncommitted transactionsexist, this method of shutdown might not complete quickly, despite its name.)

Oracle Database does not wait for users currently connected to the database todisconnect. The database implicitly rolls back active transactions and disconnectsall connected users.

同样地,下次启动时不需要任何实例恢复过程。

SHUTDOWN TRANSACTIONAL:执行的场景是需要进行例行的实例停止,但首先允许所有活动的交易完成,执行的条件是

No new connections are allowed, nor are new transactions allowed to be started,after the statement is issued.

After all transactions have completed, any client still connected to the instance isdisconnected.

At this point, the instance shuts down just as it would when a SHUTDOWNIMMEDIATE statement is submitted.

下次启动时不需要任何实例恢复过程。

这种关闭操作不会让客户端丢失任务,同时不要求所有用户退出。

SHUTDOWN ABORT:执行的场景是

You need to shut down the database instantaneously (for example, if you know apower shutdown is going to occur in one minute).

You experience problems when starting a database instance.

执行的条件是

No new connections are allowed, nor are new transactions allowed to be started,after the statement is issued.

Current client SQL statements being processed by Oracle Database areimmediately terminated.

Uncommitted transactions are not rolled back.

Oracle Database does not wait for users currently connected to the database todisconnect. The database implicitly disconnects all connected users.

下次启动时将需要实例恢复过程。

可以看出ABORT是一种暴力的关闭,不会隐式地回滚交易,由于仍存在脏块,所以下次启动时需要进行实例恢复。

实验:

1. 执行shutdown normal命令关闭数据库

SQL> shutdown normal

发现提示SHUTDOWN: waiting for logins to complete.

从上面的介绍看,使用shutdown normal的方式关闭数据库,不允许新连接接入,同时需要所有已连接的客户端断开后,才能继续正常关闭。怀疑此处可能存在仍未断开的连接。

使用kill -9 7255仍不起作用。

2. 执行shutdown immediate命令关闭数据库

于是直接CTRL+C中断shutdown normal,然后使用shutdown immediate命令关闭数据库

SQL>shutdown immediate

此时提示SHUTDOWN: Active processes prevent shutdown operation

MOS上有篇文章(416658.1)专门介绍了immediate出现这种报错的问题,给出的原因是:

“If the DB Control repository is running on the database target against which shutdown immediate was attempted then an incorrect order of events seems used.You should stop DB Control first to get rid of all connections between DB Control and the repository database and then shutdown the database with 'shutdown immediate'.”

意思是说可能DB Control库正在执行一些事件,需要停止DB Control避免所有DB Control和库之间的连接,然后才能执行shutdown immediate关闭,但这里我没有这样可能的操作,应该是没有普通用户未执行exit的场景,想一想,原来之前使用SYS登录后用过host切换到OS下,但并未切回退出,因此可能由于这样的问题,导致shutdown immediate出现hang的情况

3. 执行shutdown abort命令关闭数据库

按照MOS的说法,使用

SQL> shutdown abort   直接关闭

SQL> startup restrict     允许具有restrict session权限的用户才能登陆,换句话,避免用户再登陆导致无法正常关闭

SQL> shutdown normal 执行normal正常关闭

此时一切都安静了。

总结

1. 非到万不得已尽量不要使用ABORT,谁知道会出现什么诡异的事情。

2. 执行关闭前,建议断开所有使用SYS连接的会话,特别是使用host切换OS的连接,可能会不注意,这点是教训。

本文参与 腾讯云自媒体分享计划,分享自作者个人站点/博客。
原始发表:2014年11月13日,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体分享计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
相关产品与服务
数据库
云数据库为企业提供了完善的关系型数据库、非关系型数据库、分析型数据库和数据库生态工具。您可以通过产品选择和组合搭建,轻松实现高可靠、高可用性、高性能等数据库需求。云数据库服务也可大幅减少您的运维工作量,更专注于业务发展,让企业一站式享受数据上云及分布式架构的技术红利!
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档