Table of Contents

Search

  1. Preface
  2. Data Replication Overview
  3. Understanding Data Replication
  4. Sources - Preparation and Replication Considerations
  5. Targets - Preparation and Replication Considerations
  6. Starting the Server Manager
  7. Getting Started with the Data Replication Console
  8. Defining and Managing Server Manager Main Servers and Subservers
  9. Creating and Managing User Accounts
  10. Creating and Managing Connections
  11. Creating Replication Configurations
  12. Materializing Targets with InitialSync
  13. Scheduling and Running Replication Tasks
  14. Implementing Advanced Replication Topologies
  15. Monitoring Data Replication
  16. Managing Replication Configurations
  17. Handling Replication Environment Changes and Failures
  18. Troubleshooting
  19. Data Replication Files and Subdirectories
  20. Data Replication Runtime Parameters
  21. Command Line Parameters for Data Replication Components
  22. Updating Configurations in the Replication Configuration CLI
  23. DDL Statements for Manually Creating Recovery Tables
  24. Sample Scripts for Enabling or Disabling SQL Server Change Data Capture
  25. Glossary

Configuring Database User Privileges for Oracle Targets

Configuring Database User Privileges for Oracle Targets

Informatica Data Replication requires certain user privileges to apply changes to Oracle target databases. Grant the following user privileges to the user ID that Data Replication uses to connect to the Oracle target:
  1. To retrieve the table structure of the tables, grant the following privileges:
    GRANT CONNECT TO DATAREP_USER; GRANT RESOURCE TO DATAREP_USER; GRANT SELECT ANY TABLE TO DATAREP_USER; GRANT SELECT ANY DICTIONARY TO DATAREP_USER; GRANT ALTER SESSION TO DATAREP_USER;
  2. To apply change data to target tables, grant the following privileges:
    GRANT INSERT ANY TABLE TO DATAREP_USER; GRANT UPDATE ANY TABLE TO DATAREP_USER; GRANT DELETE ANY TABLE TO DATAREP_USER;
  3. For InitialSync operations that use database links (dblinks) to synchronize Oracle sources and Oracle targets, grant the following privilege:
    GRANT CREATE DATABASE LINK TO DATAREP_USER; GRANT ALTER ANY TABLE TO DATAREP_USER;
  4. To generate target tables based on source tables, create recovery tables, and replicate DDL operations that create tables on the target, grant the following privilege:
    GRANT CREATE TABLE TO DATAREP_USER;
  5. For Audit Apply mode, grant the following privilege:
    GRANT LOCK ANY TABLE TO DATAREP_USER;

0 COMMENTS

We’d like to hear from you!