2026-05-03 18:01:35

This commit is contained in:
2026-05-03 20:01:35 +02:00
parent db02b11ba4
commit d7b231c4dd
+6 -2
View File
@@ -13,6 +13,7 @@ Databases:
In **both** databases, create Golden Gate admin user in `CDB$ROOT`: In **both** databases, create Golden Gate admin user in `CDB$ROOT`:
```sql
create user c##oggadmin identified by "Secret00!"; create user c##oggadmin identified by "Secret00!";
alter user c##oggadmin quota unlimited on USERS; alter user c##oggadmin quota unlimited on USERS;
grant create session, connect,resource,alter system, select any dictionary, flashback any table to c##oggadmin container=all; grant create session, connect,resource,alter system, select any dictionary, flashback any table to c##oggadmin container=all;
@@ -23,16 +24,19 @@ In **both** databases, create Golden Gate admin user in `CDB$ROOT`:
alter database force logging; alter database force logging;
alter database add supplemental log data; alter database add supplemental log data;
select supplemental_log_data_min, force_logging from v$database; select supplemental_log_data_min, force_logging from v$database;
```
> On **target** database I had to add extra grants: > On **target** database I had to add extra grants:
```sql
grant select any table to c##oggadmin container=ALL; grant select any table to c##oggadmin container=ALL;
grant insert any table to c##oggadmin container=ALL; grant insert any table to c##oggadmin container=ALL;
grant update any table to c##oggadmin container=ALL; grant update any table to c##oggadmin container=ALL;
grant delete any table to c##oggadmin container=ALL; grant delete any table to c##oggadmin container=ALL;
```
Create schemas for replicated tables on source and target PDB: Create schemas for replicated tables on source and target PDB:
```sql
alter session set container=EREP; alter session set container=EREP;
create user R2D2 identified by "Secret00!"; create user R2D2 identified by "Secret00!";
alter user R2D2 quota unlimited on USERS; alter user R2D2 quota unlimited on USERS;
@@ -45,7 +49,7 @@ Create schemas for replicated tables on source and target PDB:
alter user C3PO quota unlimited on USERS; alter user C3PO quota unlimited on USERS;
grant connect,resource to C3PO; grant connect,resource to C3PO;
connect C3PO/"Secret00!"@wayland/GERISS; connect C3PO/"Secret00!"@wayland/GERISS;
```
For both Golden Gate hosts (`exegol` and `helska`) `depl26ai` the password of Service Manager administrator has been defined: For both Golden Gate hosts (`exegol` and `helska`) `depl26ai` the password of Service Manager administrator has been defined:
- username: `oggadmin` - username: `oggadmin`