ORA-28390: auto login wallet not open but encryption wallet may be open

来源:互联网 发布:软件开发和互联网 编辑:程序博客网 时间:2024/06/05 03:22

手动关闭wallet报ora-28390错误,根据oracle官方文档1106794.1,执行alter system set encryption wallet close;会尝试关闭自动登录的wallet,如果没有自动登录的wallet就会报这个错,解决过程如下:


SQL> alter system set wallet close;
alter system set wallet close
*
ERROR at line 1:
ORA-28390: auto login wallet not open but encryption wallet may be open



SQL> alter system set encryption wallet close identified by "oracle";  


System altered.

0 0