Previous Topic: Installation ProcessNext Topic: Creating Target Database Using DB Installer Tool


Post Installation Activities

After the installation process ends, check that the replication process is "alive" as follows:

  1. Verify no errors occurred during installation as follows:
    1. Perform a search on the BI_Interface folder for ora-* and verify no results are found.
    2. On the CA Business Service Insight target database, run the select*from dba_apply_error and verify no results are found.
  2. Verify the replication mechanism is operating properly as follows:
    1. Make a change in a table in the CA Business Service Insight source database:
      update t_users set user_modify_date=sysdate where user_id=0;
      commit;
      
    2. Wait several minutes.
    3. Check in the CA Business Service Insight target database that you see the updated data, for example:
      select user_modify_date from t_users where user_id=0;