Resize operation completed for file#
Orale 12c RAC环境ALERT LOG中出现Resize operation completed for file#
查看数据库版本:
BANNER CON_ID
-------------------------------------------------------------------------------- ----------
Oracle Database 12c Enterprise Edition Release 12.2.0.1.0 - 64bit Production 0
PL/SQL Release 12.2.0.1.0 - Production 0
CORE 12.2.0.1.0 Production 0
TNS for Linux: Version 12.2.0.1.0 - Production 0
NLSRTL Version 12.2.0.1.0 - Production 0
AlERT日志提示:
2018-06-24T06:16:00.766417+08:00
Resize operation completed for file# 201, old size 208896K, new size 209920K
Resize operation completed for file# 201, old size 209920K, new size 210944K
Resize operation completed for file# 201, old size 210944K, new size 211968K
Resize operation completed for file# 201, old size 211968K, new size 212992K
Resize operation completed for file# 201, old size 212992K, new size 214016K
Resize operation completed for file# 201, old size 214016K, new size 215040K
Resize operation completed for file# 201, old size 215040K, new size 216064K
Resize operation completed for file# 201, old size 216064K, new size 217088K
Resize operation completed for file# 201, old size 217088K, new size 218112K
Resize operation completed for file# 201, old size 218112K, new size 219136K
Resize operation completed for file# 201, old size 219136K, new size 220160K
Resize operation completed for file# 201, old size 220160K, new size 221184K
Resize operation completed for file# 201, old size 221184K, new size 222208K
Resize operation completed for file# 201, old size 222208K, new size 223232K
Resize operation completed for file# 201, old size 223232K, new size 224256K
Resize operation completed for file# 201, old size 224256K, new size 225280K
Resize operation completed for file# 201, old size 225280K, new size 226304K
Resize operation completed for file# 201, old size 226304K, new size 227328K
Resize operation completed for file# 201, old size 227328K, new size 228352K
Resize operation completed for file# 201, old size 228352K, new size 229376K
Resize operation completed for file# 201, old size 229376K, new size 230400K
Resize operation completed for file# 201, old size 230400K, new size 231424K
Resize operation completed for file# 201, old size 231424K, new size 232448K
Resize operation completed for file# 201, old size 232448K, new size 233472K
Resize operation completed for file# 201, old size 233472K, new size 234496K
Resize operation completed for file# 201, old size 234496K, new size 235520K
2018-06-24T06:16:01.769459+08:00
Resize operation completed for file# 201, old size 235520K, new size 236544K
Resize operation completed for file# 201, old size 236544K, new size 237568K
查询含resize的隐含参数:
select a.ksppinm name,b.ksppstvl value,a.ksppdesc description
from x$ksppi a,x$ksppcv b
where a.inst_id = USERENV ('Instance')
and b.inst_id = USERENV ('Instance')
and a.indx = b.indx
and upper(a.ksppinm) LIKE upper('%¶m%')
order by NAME;
NAME VALUE DESCRIPTION
-------------------------------------------------- -------------------- ----------------------------------------------------------------------------------------------------
_asm_skip_resize_check FALSE skip the checking of the clients for s/w compatibility for resize
_bct_public_dba_buffer_dynresize 2 allow dynamic resizing of public dba buffers, zero to disable
_disable_file_resize_logging FALSE disable file resize logging to alert log
可以发现_disable_file_resize_logging参数默认值为false,表示显示文件resize的提示,设置为true应该就可以解决该问题.
SQL> alter system set "_disable_file_resize_logging"=TRUE scope=spfile sid='*'; System altered.
重启数据库生效。
Resize operation completed for file#的更多相关文章
- Python ValueError: IO operation on closed file
ValueError IO operation on closed file表示处理了已经被关闭的数据,在python 中 with语句的上下文会帮助处理,也就是说,当python的处理代码不对齐的时 ...
- Failed to execute operation: No such file or directory(systemctl enable iptables.service)
在保存Iptables配置时:systemctl enable iptables.service 出现错误: Failed to execute operation: No such file or ...
- ABP .Net Core 调用异步方法抛异常A second operation started on this context before a previous asynchronous operation completed
1. 问题描述 最近使用ABP .Net Core框架做一个微信开发,同时采用了一个微信开发框架集成到ABP,在微信用户关注的推送事件里调用了一个async 方法,由于没有返回值,也没做任何处理,本 ...
- Entity Framework Core: A second operation started on this context before a previous operation completed
我这边报错是因为函数声明的是async void 而实现中有多个task任务,导致的线程不安全
- 菜鸟玩云计算之十二:KVM虚拟机更改大小
菜鸟玩云计算之十二:KVM虚拟机更改大小 参考: http://www.missionfamilybank.org/expanding-resizing-your-qcow2-virtual-mach ...
- File Operation using SHFileOperation
SHFILEOPSTRUCT Original link: http://winapi.freetechsecrets.com/win32/WIN32SHFILEOPSTRUCT.htm Refere ...
- PythonStudy——文件操作 File operation
# 文件:就是硬盘的一块存储空间 # 1.使用文件的三步骤: # 打开文件- 得到文件对象:找到数据存放在硬盘的位置,让操作系统持有该空间,具有操作权# 硬盘空间 被 操作系统持有# 文件对象f 被 ...
- VirtualBox: Resize a Fedora, CentOS, or Windows Dynamic Guest Virtual Disk (VDI) in VirtualBox
Here's the scenario: you've set up Dynamically Allocated Storage for the hard drive on your Guest VM ...
- How to Resize a Datafile (文档 ID 1029252.6)
APPLIES TO: Oracle Database - Enterprise Edition - Version 9.2.0.1 and laterInformation in this docu ...
随机推荐
- PHP:isset()-检测变量是否被设置
isset()-检测变量是否被设置 bool isset(mixed $var [, mixed $...]),检查变量是否被设置,并且不是NULL.var,要检测的变量,...其他变量,允许有多个变 ...
- 快速排序算法思路分析和C++源代码(递归和非递归)
快速排序由于排序效率在同为O(N*logN)的几种排序方法中效率较高,因此经常被采用,再加上快速排序思想----分治法也确实实用,因此很多软件公司的笔试面试喜欢考这个. 快速排序是C.R.A.Hoar ...
- Symfony相关网站参考
http://www.doctrine-project.org/projects.html 数据库相关知识 http://firehare.blog.51cto.com/809276/703599整合 ...
- css布局:块级元素的居中
一.定宽: 1.定位居中(absolute) 方法一: html: <div class="main"></main> css: .main{ width: ...
- 设计模式基础--Java接口和抽象类
最近在看设计模式,感觉需要先好好区分下抽象类和接口. 一.抽象类 <Java编程思想>中这样定义:包含抽象方法的类叫做抽象类. 解释: 1.包含,说明抽象类中可以有其他的具体方法. 2.因 ...
- python 使用uuid 出现重复
同时保存入数据库时候 ,使用 uuid.uuid1() 后出现 重复的 id , 现在 修改为 (uuid.uuid5(uuid.NAMESPACE_DNS, str(uuid.uuid1()) ...
- ubuntu16.04更换镜像源
1.备份原有 cp /etc/apt/sources.list /etc/apt/sources.list.old 2.打开阿里巴巴镜像源: https://opsx.alibaba.com/mir ...
- 关于springboot配置文件的另类读取方法
一.背景故事 前阵子我接手了公司另外一个同事手里的项目,项目是用的springboot 写的,但是比较坑的就是这个项目写的有点不伦不类.虽然是用的springboot,但由于他是拿了一堆代码拼凑起 ...
- Python_列表、字典、字符串、集合操作
一.list Python内置的一种数据类型是列表:list.list是一种有序的集合,可以随时添加和删除其中的元素.对于list的操作,我们要学会增删改查. 查 我们可以直接索引查找,也可以通过切片 ...
- jsp--提交表单→插入数据库→成功后返回提示信息
<%@ page language="java" import="java.util.*,java.sql.*" pageEncoding="u ...