ORA-01109: 数据库未打开 01109. 00000 - "database not open" *Cause: A command
查看数据库监听:启动
启动数据库
达到open状态
后面发现连接的那个库没有到opened状态
select con_id,name,open_mode from V$pdbs;
可以看到KJPDB还在mounted状态
alter pluggable database KJPDB open;
alter session set container=KJPDB;
commit;
这是数据库已真正启动
标签:KJPDB,database,数据库,01109,Oracle,open,alter,ORA From: https://blog.51cto.com/u_15414237/6107936