Removing the Existing CRD from MongoDB

This section describes how to remove the existing CRD tables that have schema change from MongoDB.

To remove a configured CRD schema change, use the following configuration:

  1. Log in to the admin-db pod that has the CRD (cust_ref_data) database.

  2. Access the cust_ref_data using the following command:

    use cust_ref_data
  3. Delete the data from one or more existing CRD tables using the following command:

    db.table_name.remove({})
  4. Exit the admin-db pod.