2026-05-03 18:01:35
This commit is contained in:
@@ -13,6 +13,7 @@ Databases:
|
||||
|
||||
In **both** databases, create Golden Gate admin user in `CDB$ROOT`:
|
||||
|
||||
```sql
|
||||
create user c##oggadmin identified by "Secret00!";
|
||||
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;
|
||||
@@ -23,16 +24,19 @@ In **both** databases, create Golden Gate admin user in `CDB$ROOT`:
|
||||
alter database force logging;
|
||||
alter database add supplemental log data;
|
||||
select supplemental_log_data_min, force_logging from v$database;
|
||||
```
|
||||
|
||||
> On **target** database I had to add extra grants:
|
||||
|
||||
```sql
|
||||
grant select 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 delete any table to c##oggadmin container=ALL;
|
||||
|
||||
```
|
||||
Create schemas for replicated tables on source and target PDB:
|
||||
|
||||
```sql
|
||||
alter session set container=EREP;
|
||||
create user R2D2 identified by "Secret00!";
|
||||
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;
|
||||
grant connect,resource to C3PO;
|
||||
connect C3PO/"Secret00!"@wayland/GERISS;
|
||||
|
||||
```
|
||||
|
||||
For both Golden Gate hosts (`exegol` and `helska`) `depl26ai` the password of Service Manager administrator has been defined:
|
||||
- username: `oggadmin`
|
||||
|
||||
Reference in New Issue
Block a user