该等待事件是因为用户登陆密码错误。
 
开启审计日志并查看登陆密码错误的用户或程序
SQL>alter system set audit_trail=db scope=both;
SQL>shutdown immediate;
SQL>startup;
SQL>audit create session;
SQL>audit alter user;
select * from sys.aud$ where returncode='1017';
select * from dba_audit_trail where username='';
 
关闭审计日志:
alter system set audit_trail=none scope=spfile;
 

相关文章:

  • 2022-03-09
  • 2022-12-23
  • 2021-07-31
  • 2021-09-09
  • 2021-05-22
  • 2021-08-22
  • 2022-12-23
  • 2021-04-26
猜你喜欢
  • 2021-09-10
  • 2021-07-17
  • 2021-08-15
  • 2022-02-09
  • 2021-10-05
  • 2021-10-27
  • 2022-02-06
相关资源
相似解决方案