0% found this document useful (0 votes)
100 views17 pages

Masterclass Oracle Database

This document discusses Oracle Database and provides several tips and notes about: 1. Container architecture options like unplugging and plugging PDBs for migration or cloning. 2. Maintaining an up-to-date database through patching and upgrading. 3. Useful tips including gathering statistics and purging the recycle bin.

Uploaded by

ronaldscholz
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
100 views17 pages

Masterclass Oracle Database

This document discusses Oracle Database and provides several tips and notes about: 1. Container architecture options like unplugging and plugging PDBs for migration or cloning. 2. Maintaining an up-to-date database through patching and upgrading. 3. Useful tips including gathering statistics and purging the recycle bin.

Uploaded by

ronaldscholz
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 17

Masterclass

Oracle Database
Masterclass Oracle Database
Masterclass Oracle Database

Container Architecture – Mais opções


- Unplug -Plug migration, even cross-platform with TDE

- Easy patching and upgrade using Unplug –Plug

- Online (live) PDB relocation between systems

- Online cloning and refresh inside and between CDBs

- Lockdown profiles disable functionality or commands

- Separation of duties (separate CDB and PDB administrator)

- Service level ACL for TCP protocol


Masterclass Oracle Database

Matenha seu banco sempre atualizado


Masterclass Oracle Database
Diferenças entre Patch e Upgrade
Masterclass Oracle Database
Notas Importantes

- Release Schedule of Current Database Releases -MOS note 742060.1

- Release Update Introduction and FAQ -MOS note 2285040.1

- 12.2.0.1 Database -List of Fixes in each RU/RUR -MOS note 2245178.1

- 12.2.0.1 Grid Infrastructure -List of Fixes in each RU/RUR -MOS note 2245185.1

- 18c Database -List of Fixes in each RU/RUR -MOS note 2369471.1

- 18c GridInfrastructure-List of Fixes in each RU/RUR -MOS note 2384954.1

- 19c Database -List of Fixes in each RU/RUR -MOS note 2523220.1

- 19c GridInfrastructure -List of Fixes in each RU/RUR -MOS note 2523221.1


Masterclass Oracle Database
Masterclass Oracle Database
Dicas Úteis
à Gather Dictonary Statistics
SQL> exec dbms_stats.gather_dictionary_stats;
à Gather Fixed Objects Statistics
SQL> exec dbms_stats.gather_fixed_objects_stats;
à Purge the Recycle Bin
SQL> purge dba_recyclebin;
à Gathes Stats on Several Cluster Indexes
exec dbms_stats.gather_schema_stats ('SYS');
exec dbms_stats.gather_index_stats ('SYS','I_OBJ#');
exec dbms_stats.gather_index_stats ('SYS','I_FILE#_BLOCK#');
exec dbms_stats.gather_index_stats ('SYS','I_TS#');
exec dbms_stats.gather_index_stats ('SYS','I_USER#');
exec dbms_stats.gather_index_stats ('SYS','I_TOID_VERSION');
exec dbms_stats.gather_index_stats ('SYS','I_MLOG#');
exec dbms_stats.gather_index_stats ('SYS','I_RG#');
Masterclass Oracle Database
Masterclass Oracle Database
Masterclass Oracle Database
Masterclass Oracle Database
Masterclass Oracle Database
Masterclass Oracle Database
Masterclass Oracle Database
How to upgrade to Oracle Database 19c

ü Auto Upgrade Tool


ü DBUA
ü Manual upgrade using the Parallel Upgrade Utility,
and other command-line utilities
ü Data Pump
ü (Full) Transportable Tablespaces
ü Transient Logical Standby
ü Unplug and Plug a PDB
ü RMAN
ü FPP – Fleet Patch and Provisioning
ü Golden Gate
Maratona Oracle Database

Desafio Prático 2

1. Crie um banco non-cdb no Oracle 18c

2. Converta ele para cdb

3. Migre um pdb do oracle 18c para o 19c


Masterclass Oracle Database

You might also like