首页 > 其他分享 >WARNING: too many parse errors

WARNING: too many parse errors

时间:2023-10-10 16:55:24浏览次数:42  
标签:errors many kks alert parse 114 error 日志

1.19.16 RAC库,alter日志告警

2023-10-10T16:09:24.562724+08:00
WARNING: too many parse errors, count=32819 SQL hash=0x3876c7a0
PARSE ERROR: ospid=239197, error=942 for statement:
Additional information: hd=0x363f03440 phd=0x363f03878 flg=0x100476 cisid=114 sid=114 ciuid=114 uid=114 sqlid=6qctunnw7djx0
...Current username=MS
...Application: JDBC Thin Client Action:

2.找到具体SQL

INSERT INTO SYTM_LG (
                 UUID, SYTM, MTHOD, ATIN, IP, DSCRIPTIN, USENAM, UEID,CREATDAT,CRATDT,PARA,RQUESTUL,USRAGEN
                )
                values (:1 , :2 , :3 , :4 , :5 , :6 , :7 ,
                :8 ,sysdate,to_char(sysdate,'yyyyMMdd'),:9 ,:10 ,:11 )

3.从12.2开始,如果sql解析失败超过一定次数,会在alert日志中记录类似警告信息,便于对其进行排查;通过查询mos,确认相关记录是通过_kks_parse_error_warning参数来控制,默认每100次解析失败写入alert日志一次;由于某种原因,解析错误sql,短期内无法进行修改,又不想让其在alert中提示,可以通过设置该值为0,实现让其不记录在alert日志中

 alter system set "_kks_parse_error_warning"=0 ;

原文:

https://www.xifenfei.com/tag/_kks_parse_error_warning

 

标签:errors,many,kks,alert,parse,114,error,日志
From: https://www.cnblogs.com/ss-33/p/17755130.html

相关文章

  • UE5.1 One or more errors occurred. (Found no script module records.)
    问题UE5.1源码版本烘培资源,提示缺少SDK,通过日志查看,错误打印如下:Unhandledexception:Oneormoreerrorsoccurred.(Foundnoscriptmodulerecords.)UATHelper:正在安装Sdk(Windows):Initializingscriptmodules...UATHelper:正在安装Sdk(Windows):Unhandledexceptio......
  • MySQL数据库报 1040 too many connection
    找个是因为超过了最大的连接数你把最大的连接数改一下就可以了  改完之后记得重启mysqlwindows+R cmd进入黑窗口 ......
  • npm run dev 提示 { parser: "babylon" } is deprecated; we now treat it as { parse
    修改emacsnode_modules/vue-loader/lib/template-compiler/index.js将以下代码中的babylon替换babelif(!isProduction){code=prettier.format(code,{semi:false,parser:'babylon'})}if(!isProduction){code=prettier.format(code,{semi:false......
  • 10.5 认识XEDParse汇编引擎
    XEDParse是一款开源的x86指令编码库,该库用于将MASM语法的汇编指令级转换为对等的机器码,并以XED格式输出,目前该库支持x86、x64平台下的汇编编码,XEDParse的特点是高效、准确、易于使用,它可以良好地处理各种类型的指令,从而更容易地确定一段程序的指令集。XEDParse库可以集成到许多不......
  • Ubuntu 安装谷歌浏览器报错解决:Errors were encountered while processing
    Ubuntu安装谷歌浏览器报错解决parallels@ubuntu-linux-22-04-02-desktop:~/snap/firefox/common/Downloads$sudodpkg-igoogle-chrome-stable_current_amd64.deb[sudo]passwordforparallels:dpkg:errorprocessingarchivegoogle-chrome-stable_current_amd64.deb(......
  • Golang gorm manytomany 多对多 更新、删除、替换
       Delete移除只删除中间表的数据  删除原有的varaArticle1 db.Preload("Tag1s").Take(&a,1) fmt.Printf("%v",a){1k8s[{1cloud[]}{2linux[]}]}mysql>select*fromarticle1;+----+--------+|id|title|+----+--------+|1|k8s......
  • 前端JSON.stringify,JSON.parse函数
    JSON.stringify将对象转为JSON字符串;JSON.parse将JSON字符串转为对象;对象:{productId:129}JSON字符串:"{\"productId\":129}"***JSON使用场景***1. localStorage/sessionStorage存储对象  localStorage/sessionStorage只可以存储字符串,当我们想存储对象的时候,需要使用JSON.s......
  • jenkins教程:解决nodejs前端构建时报错(EMFILE: too many open files)
    修改系统最大打开文件数临时生效ulimit-n65535永久生效vim/etc/security/limits.conf*softnofile65535*hardnofile65535#修改单个进程最大打开文件数*softnprocunlimited*hardnprocunlimited查看修改结果ulimit-n配置完成后,restartjenkins即可生效。或者临时......
  • Sublime txt - CompetitiveProgrammingParser配置
    官网依赖环境:python3浏览器插件:CompetitiveCompanionSublmieText插件:FastOlympicCoding配置打开浏览器的扩展找到扩展CompetitiveCompanion点击详情信息找到并点击扩展选项在Customports填入12345打开SublimeText在首选项......
  • Go - Inspecting Errors
    Problem: Youwanttocheckforspecificerrorsorspecifictypesoferrors.Solution: Usetheerrors.Isanderrors.Asfunctions.Theerrors.Isfunctioncomparesanerrortoavalueandtheerrors.Asfunctionchecksifanerrorisofaspecifictype. Us......