ORA-28003: password verification for the specified password failed,取消oracl密码复杂度

自己在测试环境想要使自己的Oracle数据库用户使用简单的密码方便测试,结果指定密码的密码验证失败

sql 复制代码
SQL> alter user zzw identified by zzw;
alter user zzw identified by zzw
*
ERROR at line 1:
ORA-28003: password verification for the specified password failed
ORA-20001: Password length less than 8

取消Oracle数据库密码复杂度查询

sql 复制代码
SQL> alter profile default limit password_verify_function null;

Profile altered.

SQL> alter user zzw identified by zzw;

User altered.
相关推荐
向風而行5 小时前
MySQL详解
数据库·mysql
belldeep6 小时前
本草纲目:如何应用 PostgreSQL 实现【中医药】主题数据库 ?
数据库·postgresql·本草纲目
Bert.Cai6 小时前
MySQL CURTIME()函数详解
数据库·mysql
Bert.Cai6 小时前
MySQL CURDATE()函数详解
数据库·mysql
NGSI vimp7 小时前
MySQL|MySQL 中 `DATE_FORMAT()` 函数的使用
数据库·mysql
HAWK eoni7 小时前
Mysql 驱动程序
数据库·mysql
二哈赛车手7 小时前
新人笔记---实现简易版的rag的bm25检索(利用ES),以及RAG上传时的ES与向量数据库双写
java·数据库·笔记·spring·elasticsearch·ai
何中应7 小时前
CentOS 7安装、卸载MySQL数据库(二)
数据库·mysql·centos
KmSH8umpK7 小时前
Redis分布式锁从原生手写到Redisson高阶落地,附线上死锁复盘优化方案进阶第六篇
数据库·redis·分布式
梁萌8 小时前
mysql使用事件做日志表数据转移
数据库·mysql