Changing the Data Type of a Destination Table Column

Last updated on Apr 02, 2025

Hevo automatically updates the data type of a Destination field to a compatible data type if the Destination field has no constraints and supports data type promotion. Post-Pipeline creation, you can also manually update the data type of a Destination field to one with a broader definition. For example, you can change an int data type to a float or a varchar data type, but you cannot change a varchar data type to any other data type. Refer to the Schema Mapper Compatibility Table for more information.

The data type of a Destination column can be manually updated in one of the following ways:


Recreating the Destination Table

In this method, to recreate the Destination table, do the following:

  1. Drop the existing Destination table

  2. Recreate the Destination table with the desired data type for the column

  3. Restart the historical load

Drop the Existing Destination Table

Perform the following steps to drop the existing Destination table:

  1. Click PIPELINES in the Navigation Bar, and then click the Pipeline for which you want to update the data type mapping.

    Pipeline Overview

  2. In the Tools Bar, click Schema Mapper to access the Schema Mapper Overview page.

    Schema Mapper

  3. On the Schema Mapper Overview page, click the Event Type for which you want to update the mapping.

    Schema Mapper Overview

  4. In the Event Types section, click the More (More) icon corresponding to the Event Type for which you want to update the data type mapping, and disable Auto Mapping if it is enabled.

    Disable auto mapping

  5. In the pop up window, click DISABLE AUTO MAPPING.

    Disable pop up

  6. In the Mapping Summary section, click the drop-down next to the Destination table name and click Drop Table.

    Drop table

  7. In the pop up window that appears, click YES, I AM SURE to drop the current Destination table and delete the existing mapping.

    Drop table pop up

You have successfully dropped the existing Destination table.

Recreate Table and Map

After dropping the existing Destination table, perform the following steps to recreate the table with the desired data type for the columns:

  1. In the Mapping Summary section, click CREATE TABLE & MAP to create a new Destination table.

    Create table and Map

  2. In the Data Type column, choose the desired mapping from the list of compatible data types for the corresponding Source Field from the drop-down. For example, the Source field, data can be mapped to varchar or json in the Destination table.

    Update mapping

  3. Click CREATE TABLE & MAP.

    Create new table

  4. In the Event Types section, click the More (More) icon corresponding to the Event Type for which you updated the mapping and enable Auto Mapping.

    Enable automapping

You have successfully recreated your Destination table with the desired data type for the columns.

Restart the Historical Load

To recover any lost data after recreating the Destination table, perform the following steps to restart the historical load for the object:

  1. In the Tools Bar, click Overview to access the Pipeline Overview page.

    Pipeline Overview

  2. On the Pipeline Overview page, click the More (More) icon corresponding to the object for which you updated the data type mapping, and select Restart Historical Load.

    Restart Historical load

  3. In the pop-up window, select the check box to agree to the cost implications and then click RESTART HISTORICAL LOAD.

    Restart Historical load pop up

You have successfully recovered any lost data for the object.

Creating a New Column in the Destination Table

In this method, you add a new column of the desired data type in the Destination table, and then copy data from the existing column to the new column. To do this:

  1. Click PIPELINES in the Navigation Bar and navigate to the Pipeline for which you want to update the data type mapping.

  2. Click the PAUSE button next to the Pipeline status.

    Pause Pipeline

  3. Click Destinations in the Navigation Bar, and then select the Destination for which you want to update the data type mapping.

    Destinations

  4. In the left navigation pane, click Workbench.

    Workbench

  5. In the SQL QUERY editor, run the following commands to:

    Note: Replace the placeholder values in the commands below with your own.

    1. Create a new column with the desired data type:

      ALTER TABLE <table_name> ADD COLUMN <new_column> <new_data_type>;
      
    2. Copy data from the existing column to the new column in the desired format:

      UPDATE <table_name> SET <new_column> = CAST(<existing_column> AS <new_data_type>);
      
    3. Drop the existing column:

      ALTER TABLE <table_name> DROP COLUMN <existing_column>;
      
    4. Rename the new column:

      ALTER TABLE <table_name> RENAME COLUMN <new_column> TO <existing_column>;
      
  6. In the left navigation pane, click Overview to navigate to the Destination Overview page.

    Destination Overview

  7. On the Destination Overview page, click the More (More) icon next to the Destination status, and then click Refresh Schema.

    Refresh Schema

  8. Click PIPELINES in the Navigation Bar and navigate to the Pipeline for which you updated the data type mapping.

  9. Click the RESUME button next to the Pipeline status.

    Resume Pipeline

You have successfully updated the data type of your Destination column.

Applying Transformations on Events

In this method, you apply Transformations on Events and Event Types and update the data type of the desired column using Drag-and-drop or Python code.

Examples

  • Let us assume that the data type int from the Source is mapped to the Destination data type int, and you want to change the Destination data type to string. You can do this using the Format Number to String transformation.

    setting-up-filters

    number-to-string

  • The following Python script converts the data type of nested_field to string using the following commands:

    def transform(event):
    
        properties = event.getProperties()
        properties['nested_field'] = str(properties['nested_field'])
    
        return event
    

Revision History

Refer to the following table for the list of key updates made to this page:

Date Release Description of Change
Apr-02-2025 NA New document.

Tell us what went wrong