Creating and configuring the source database user
This is the Oracle user that connects to the source database.
The source database user can be the same as the schema of the data. However, we recommend that you create a Tonic Structural-specific user that has more restricted access.
To create the source database user, use the following set of steps:
Creating the source database user
To create the source database user:
CREATE USER tonic IDENTIFIED BY "<tonic password>";Granting basic privileges to the source database user
To grant basic privileges to the source user:
GRANT CREATE SESSION TO tonic;Granting the source database user access to system catalog views
For information on options for granting access to system catalog views, go to Granting access to system catalog views.
Granting the source database user access to source tables
The source database user must be able to select data from the tables.
To grant the required access, you can either:
Grant
SELECT ANY TABLEto the userGrant
SELECTaccess to the individual tables in the source database
To grant SELECT ANY TABLE:
To grant SELECT access to the individual tables in the database:
Granting the source database user access to packages
Depending on the object types that the source schema includes, the source database user must have EXECUTE ON privileges for the following packages:
DBMS_JAVA
JAVA CLASS JAVA CLASS JAVA RESOURCE JAVA SOURCE
DBMS_SCHEDULER
JOB JOB CLASS PROGRAM
DBMS_MVIEW
MATERIALIZED VIEW
DBMS_AQADM
QUEUE
To identify the types of objects that are present in the source schema, run the following:
This access might already be in place for the PUBLIC user. If it is not, then to grant the access:
In addition to those required packages, if either:
TONIC_ORACLE_SKIP_CREATE_DBistrueThe workspace overrides the setting to
true
Then the source database user must also have EXECUTE ON privileges for the DBMS_METADATA package:
Last updated
Was this helpful?

