Previous Topic

Next Topic

Book Contents

How do I confirm that data was transformed correctly?

  1. In SQL*Plus, using the destination account, run the following command to view the ETL_STATUS table:

    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 <dest_account>.etl_status order by start_date;

  2. Make sure that one row exists for each table. The name of each imported table is X-<table>, such as X-Schema, and appears in the STEP_NAME column.

    Additionally:

    For tables that were not imported, the STATUS is Skipped. You can disregard these rows.

    If a row is missing from the table, or a row has a STATUS of Failed, or an END_TM column is missing a value, data was not transformed correctly.

To understand how data is transformed, see Transformation details.

Copyright © 2015 Oracle and/or its affiliates. All rights reserved.