alterFileFormat
Last updated: September 2, 2025
The alterFileFormat change type is used to modify an existing FILE FORMAT object in Snowflake. This lets you update format-specific options, change the comment, or modify other file format properties without recreating the object.
Run alterFileFormat
To run this Change type, follow these steps:
Add the Change type to your changeset, as shown in the examples on this page.
Specify any required attributes. Use the table on this page to see which ones your database requires.
Deploy your changeset by running the command:
liquibase update
Available attributes
Name | Type | Description | Requirement |
| String | Name of the file format to alter | Required |
| Array | Format-specific options that control how files are parsed | Optional |
| String | Comment for the file format | Optional |
Nested tags
formatTypeOptions
Name | Type | Description | Requirement |
| String | Format-specific options that control how files are parsed. Each entry contains a key-value pair. See the Snowflake FILE FORMAT documentation for a complete list of available options by format type. This page includes a full list of options available for CSV, JSON, XML, and other formats. | Optional |