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 ...
随机推荐
- Oracle小知识_长期总结
更新时间:2018年7月16日 11:22:28 一. 系统 1. 打开防火墙后 Oracle 无法链接 新建1521端口规则. 二.知识 A. 序列 1. nextval ------------- ...
- matlab中size函数总结
size(A)函数是用来求矩阵的大小的. 比如说一个A是一个3×4的二维矩阵: 1.size(A) %直接显示出A大小 输出:ans= 3 4 2.s=size(A)%返回一个行向量s,s的第一个元素 ...
- 简述apache,php,mysql三者的关系
转自:http://blog.csdn.net/w1365966490/article/details/8218959 Apache web 服务器软件.同类产品有微软的 IIS 等.功能是让某台电脑 ...
- for循环语句中的先后执行顺序
for(int i=0;i<10;i++){ cout<<i; } 分析程序运行结果:for(cout<<"a";cout<<" ...
- utf8、ansii、unicode编码之间的转换
#include "stdafx.h"#include "windows.h"#include <iostream>#include <str ...
- 关于java中异常机制
什么是异常:异常就是程序在运行时出现的不正常情况.对于严重的情况Java通过Error类进行描述,一般不用编写代码处理:对于不严重的情况Java通过Exception描述,一般编写针对性代码对其进行处 ...
- C++ ADL
即在一个名称作为调用运算符的左操作数时,并且这个名字是一个无限定名称时,在无限定查找到的名字集合中额外增加的一个规则使集合范围扩大(从而可以定位到其他一些限定名称),通常是用来保证定义在不同命名空间的 ...
- JZOJ 5835 Prime
Description
- PAT basic 1087
1087 有多少不同的值 (20 分) 当自然数 n 依次取 1.2.3.…….N 时,算式 ⌊n/2⌋+⌊n/3⌋+⌊n/5⌋ 有多少个不同的值?(注:⌊x⌋ 为取整函数,表示不超过 x 的最大自然 ...
- HDU 2087 HDU 1867 KMP标准模板题
贴两道题,其中HDU2087是中文题,故不解释题目, 思路是,一发KMP,但是特别处理最后一位的失配边为0,这样就可以保证“判断完成但是不多判断”. 第二题,很毒瘤的题,要求求出,给定字符串A,B能够 ...