Oracle问题:ORA-01109解决办法
出现问题:
在数据库服务器端,查询dual表,报ORA-01109错误
ORA-01109:database not open
查看:
sqlplus / as sysdba;--管理员登录 select con_id,name,open_mode from V$pdbs;--查看pdb的状态 --发现服务DB_**,处于mounted状态
解决办法:
alter pluggable database DB_** open; alter session set container=DB_** ; commit;
至此问题得到圆满解决
https://www.cnblogs.com/handhead/
莫问收获,但问耕耘