Step 10: Verify That Your Data Migration Completed Successfully - Database Migration Guide
Services or capabilities described in Amazon Web Services documentation might vary by Region. To see the differences applicable to the China Regions, see Getting Started with Amazon Web Services in China (PDF).

Step 10: Verify That Your Data Migration Completed Successfully

When the migration task completes, you can compare your task results with the expected results.

  1. On the navigation pane, choose Tasks.

  2. Choose your migration task (migrateSHschema).

  3. Choose the Table statistics tab, shown following.

    
                     Table statistics tab
  4. Connect to the Amazon Redshift instance by using SQL Workbench/J, and then check whether the database tables were successfully migrated from Oracle to Amazon Redshift by running the SQL script shown following.

    select "table", tbl_rows
    from svv_table_info
    where
    SCHEMA = 'sh'
    order by 1;

    Your results should look similar to the following.

    table      | tbl_rows
    -----------+---------
    channels   |        5
    customers  |        8
    products   |       66
    promotions |      503
    sales      |     1106
  5. To verify whether the output for tables and number of rows from the preceding query matches what is expected for RDS Oracle, compare your results with those in previous steps.

  6. Run the following query to check the relationship in tables; this query checks the departments with employees greater than 10.

    Select b.channel_desc,count(*) from SH.SALES a,SH.CHANNELS b where a.channel_id=b.channel_id
    group by b.channel_desc
    order by 1;

    The output from this query should be similar to the following.

    channel_desc | count
    -------------+------
    Direct Sales |   355
    Internet     |    26
    Partners     |   172
  7. Verify column compression encoding.

    DMS uses an Amazon Redshift COPY operation to load data. By default, the COPY command applies automatic compression whenever loading to an empty target table. The sample data for this walkthrough is not large enough for automatic compression to be applied. When you migrate larger data sets, COPY will apply automatic compression.

    For more details about automatic compression on Amazon Redshift tables, see Loading Tables with Automatic Compression.

    To view compression encodings, run the following query.

    SELECT *
    FROM pg_table_def
    WHERE schemaname = 'sh';

Now you have successfully completed a database migration from an Amazon RDS for Oracle DB instance to Amazon Redshift.