Skip to main content
Since 2.18.0
convert_to_rowstore() replaces decompress_chunk(), deprecated in 2.18.0.
Manually convert a specific in the to the . If you need to modify or add a lot of data to a in the , best practice is to stop any jobs moving s to the , convert the back to the , then modify the data. After the update, convert the to the and restart the jobs. This workflow is especially useful if you need to backfill old data.

Samples

To modify or add a lot of data to a :
  1. Stop the jobs that are automatically adding s to the Retrieve the list of jobs from the timescaledb_information.jobs view to find the job you need to alter_job.
  2. Convert a to update back to the
  3. Update the data in the you added to the Best practice is to structure your INSERT statement to include appropriate partition key values, such as the timestamp. adds the data to the correct :
  4. Convert the updated s back to the
  5. Restart the jobs that are automatically converting s to the

Arguments

The syntax is:

Returns

This function returns void.