meta données pour cette page
Différences
Ci-dessous, les différences entre deux révisions de la page.
| Les deux révisions précédentesRévision précédenteProchaine révision | Révision précédente | ||
| oracle:database:cloning_pdb_in_an_isolated_tde_environment [15/04/2025 09:05] – mdl | oracle:database:cloning_pdb_in_an_isolated_tde_environment [15/04/2025 09:08] (Version actuelle) – mdl | ||
|---|---|---|---|
| Ligne 66: | Ligne 66: | ||
| </ | </ | ||
| + | \\ | ||
| == 4/ CREATE PLUGGABLE DATABASE statement with the KEYSTORE IDENTIFIED BY clause to perform the clone of the PDB. == | == 4/ CREATE PLUGGABLE DATABASE statement with the KEYSTORE IDENTIFIED BY clause to perform the clone of the PDB. == | ||
| <code PLSQL> | <code PLSQL> | ||
| Ligne 88: | Ligne 89: | ||
| Pluggable database altered. | Pluggable database altered. | ||
| </ | </ | ||
| + | |||
| + | \\ | ||
| + | == 5/ Rekey the master encryption key of the remotely cloned PDB == | ||
| + | <code PLSQL> | ||
| + | SQL> show pdbs | ||
| + | CON_ID CON_NAME | ||
| + | ---------- ------------------------------ ---------- ---------- | ||
| + | 6 PDB1TDECLNE2 | ||
| + | |||
| + | SQL> ADMINISTER KEY MANAGEMENT SET KEY FORCE KEYSTORE IDENTIFIED BY pwdtartdecl WITH BACKUP USING ' | ||
| + | keystore altered. | ||
| + | </ | ||
| + | |||
| + | \\ | ||
| + | == 6/ Change password for the PDB == | ||
| + | <code PLSQL> | ||
| + | SQL> show pdbs | ||
| + | CON_ID CON_NAME | ||
| + | ---------- ------------------------------ ---------- ---------- | ||
| + | 6 PDB1TDECLNE2 | ||
| + | |||
| + | SQL> ADMINISTER KEY MANAGEMENT ALTER KEYSTORE PASSWORD IDENTIFIED BY pwdtartdecl | ||
| + | keystore altered. | ||
| + | </ | ||
| + | |||
| + | \\ | ||
| + | == 7/ Create Auto login for the PDB == | ||
| + | <code PLSQL> | ||
| + | SQL> show pdbs | ||
| + | CON_ID CON_NAME | ||
| + | ---------- ------------------------------ ---------- ---------- | ||
| + | 6 PDB1TDECLNE2 | ||
| + | |||
| + | SQL> ADMINISTER KEY MANAGEMENT CREATE AUTO_LOGIN KEYSTORE FROM KEYSTORE | ||
| + | keystore altered. | ||
| + | </ | ||
| + | |||