database:oracle:switch-to-pluggable-db-sqlplus
Differences
This shows you the differences between two versions of the page.
| Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
| database:oracle:switch-to-pluggable-db-sqlplus [2023/04/12 15:25] – removed - external edit (Unknown date) 127.0.0.1 | database:oracle:switch-to-pluggable-db-sqlplus [2023/07/04 16:36] (current) – external edit 127.0.0.1 | ||
|---|---|---|---|
| Line 1: | Line 1: | ||
| + | ====== Switch to a pluggable db (Oracle 12) ====== | ||
| + | After you are connected with sqlplus to a container database (which is happening by default), run the connect command inside your sqlplus session. | ||
| + | |||
| + | <code sql> | ||
| + | conn SYS@PMJ as SYSDBA | ||
| + | </ | ||
| + | Then you'll be required to enter the SYS password. \\ | ||
| + | < | ||
| + | * If you use a non dba user, don't specify 'as SYSDBA' | ||
| + | * Here PMJ is the name of the pluggable database. | ||
| + | </ | ||
| + | |||
| + | Another way to switch to a PDB is to change the container: | ||
| + | |||
| + | <code sql> | ||
| + | alter session set container=PMJ; | ||
| + | </ | ||
| + | |||
| + | To go back to the CDB container: | ||
| + | |||
| + | <code sql> | ||
| + | alter session set container=CDB$ROOT; | ||
| + | </ | ||
| + | |||
| + | |||
| + | ====== Connect directly to a pluggable db ====== | ||
| + | |||
| + | < | ||
| + | sqlplus /nolog | ||
| + | connect SNT@PMJ | ||
| + | </ | ||
