DBA Hub

📋Steps in this guide1/1

stop and start pluggable db

-- Open/close all the pluggable db: -- Connect to root container:

oracle configurationintermediate
by OracleDba
14 views
1

stop and start pluggable db

Code/Command (click line numbers to comment):

1
2
3
4
5
6
7
8
9
10
11
12
13
14
-- Open/close all the pluggable db:
-- Connect to root container:
alter pluggable database all open;
alter pluggable database all close immediate;
-- Stop/start a pluggable db:
SQL>
alter session set container=PDB1;
Session altered.
SQL>
startup
Pluggable Database opened.
SQL>
shutdown
Pluggable Database closed.

Comments (0)

Please to add comments

No comments yet. Be the first to comment!