From 015054d462650670c486c36021762c6dcc15b351 Mon Sep 17 00:00:00 2001 From: gvasquezvargas Date: Mon, 24 Jun 2024 16:13:58 +0200 Subject: [PATCH 1/2] Migration Toolkit: SRC_DB_USER role --- .../55/06_building_toolkit.properties_file.mdx | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/product_docs/docs/migration_toolkit/55/06_building_toolkit.properties_file.mdx b/product_docs/docs/migration_toolkit/55/06_building_toolkit.properties_file.mdx index fd0f0cd7426..be3363787d4 100644 --- a/product_docs/docs/migration_toolkit/55/06_building_toolkit.properties_file.mdx +++ b/product_docs/docs/migration_toolkit/55/06_building_toolkit.properties_file.mdx @@ -195,7 +195,15 @@ An Oracle URL contains the following information: - `` — The name of the Oracle service. -- `SRC_DB_USER` — Specifies the name of a privileged Oracle user. The Oracle user needs DBA privilege to migrate objects from Oracle to Advanced Server. The DBA privilege can be granted to the Oracle user with the Oracle `GRANT DBA TO user` command to ensure all of the desired database objects are migrated. +- `SRC_DB_USER` — Specifies the name of a privileged Oracle user. The Oracle user needs read access to the source database objects you want to migrate. If you want to migrate users/roles and related profiles/privileges, grant the Oracle user SELECT privileges on the following Oracle catalogs: + + - `DBA_ROLES` + - `DBA_USERS` + - `DBA_TAB_PRIVS` + - `DBA_PROFILES` + - `DBA_ROLE_PRIVS` + - `ROLE_ROLE_PRIVS` + - `DBA_SYS_PRIVS` - `SRC_DB_PASSWORD` — Contains the password of the specified user. From f623d1d91d541e16f23074a687ecfb1080d79491 Mon Sep 17 00:00:00 2001 From: gvasquezvargas Date: Tue, 25 Jun 2024 08:49:10 +0200 Subject: [PATCH 2/2] implementing feedback from Matt --- .../55/06_building_toolkit.properties_file.mdx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/product_docs/docs/migration_toolkit/55/06_building_toolkit.properties_file.mdx b/product_docs/docs/migration_toolkit/55/06_building_toolkit.properties_file.mdx index be3363787d4..bf8dd5f1132 100644 --- a/product_docs/docs/migration_toolkit/55/06_building_toolkit.properties_file.mdx +++ b/product_docs/docs/migration_toolkit/55/06_building_toolkit.properties_file.mdx @@ -195,7 +195,7 @@ An Oracle URL contains the following information: - `` — The name of the Oracle service. -- `SRC_DB_USER` — Specifies the name of a privileged Oracle user. The Oracle user needs read access to the source database objects you want to migrate. If you want to migrate users/roles and related profiles/privileges, grant the Oracle user SELECT privileges on the following Oracle catalogs: +- `SRC_DB_USER` — Specifies the name of a privileged Oracle user. The Oracle user needs read access to the source database objects you want to migrate. If you want to migrate users/roles and related profiles/privileges, grant the Oracle user SELECT privileges on the following Oracle catalog objects: - `DBA_ROLES` - `DBA_USERS` @@ -205,6 +205,7 @@ An Oracle URL contains the following information: - `ROLE_ROLE_PRIVS` - `DBA_SYS_PRIVS` + - `SRC_DB_PASSWORD` — Contains the password of the specified user.