1- Connect as sys as sysdba
2- Make sure that you are on the root database ( the container )
3- You can make sure from this by
show con_name
it should give you like this CDB$ROOT
4- Then you have to execute this code
create or replace TRIGGER pdb_startup
AFTER STARTUP ON DATABASE
BEGIN
EXECUTE IMMEDIATE 'alter pluggable database all open';
END;
'Database > PLSQL' 카테고리의 다른 글
120 - [Oracle PL/SQL] DML logs using package dbms_errlog (0) | 2024.06.10 |
---|---|
118 - [Oracle PL/SQL] Remote Dependencies - Signature mode (0) | 2024.06.02 |
117 - [Oracle PL/SQL] Remote Dependencies - Time stamp (0) | 2024.06.01 |
116 - [Oracle PL/SQL] Remote Dependencies - 환경 준비 (0) | 2024.06.01 |
115 - [Oracle PL/SQL] Dependencies - Reducing invalidation (0) | 2024.05.21 |