Previous Topic

Next Topic

Book Contents

Monitoring the data transfer

You check the progress of each step of the data transfer, including whether each step is successful, by querying the ETL_STATUS table in the destination account. The results of the query include:

You can check the progress at any time during and after the data transfer process.

The imports of the data and vocabulary accounts are completed sequentially. Each table is imported separately, so that in case of failure, resuming the process imports only the tables that have not been successfully imported.

Best practices for monitoring the data transfer

To monitor the data transfer:

  1. In SQL*Plus, connect to the Empirica Healthcare Analysis database using the destination account.
  2. Query the ETL_STATUS table in the destination account:

    select step_name, to_char(start_date, 'HH24:MI:SS') start_tm, to_char(end_date, 'HH24:MI:SS') end_tm, pct_complete pct, next_person_id nxt_id, status from etl_status order by start_date;

    The status of each step appears. In the following example, all steps are completed. If you query the ETL_STATUS table while the data transfer is in progress, the STEP_NAME column lists only the jobs that have completed or started.

    status of the data transfer

  3. Review the STATUS column to check the progress of the data transfer.
Copyright © 2015 Oracle and/or its affiliates. All rights reserved.