

# TO\$1STRING\$1COLUMN
<a name="recipe-actions.TO_STRING_COLUMN"></a>

Changes the data type of an existing column to STRING.

**Note**  
We recommend using CHANGE\$1DATA\$1TYPE recipe action rather than TO\$1STRING\$1COLUMN.

**Parameters**
+ `sourceColumn` – The name of an existing column.
+ `columnDataType` – A value that must be `string`.

**Example**  
  

```
{
    "RecipeAction": {
        "Operation": "TO_STRING_COLUMN",
        "Parameters": {
            "columnDataType": "string",
            "sourceColumn": "age"
        }
    }
}
```