Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Migration Toolkit: SRC_DB_USER role #5798

Merged
merged 2 commits into from
Jun 26, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,16 @@ An Oracle URL contains the following information:

- `<service_name>` &mdash; The name of the Oracle service.

- `SRC_DB_USER` &mdash; 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` &mdash; 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`
- `DBA_TAB_PRIVS`
- `DBA_PROFILES`
- `DBA_ROLE_PRIVS`
- `ROLE_ROLE_PRIVS`
- `DBA_SYS_PRIVS`

gvasquezvargas marked this conversation as resolved.
Show resolved Hide resolved

- `SRC_DB_PASSWORD` &mdash; Contains the password of the specified user.

Expand Down