Is it possible to restore data to a table after updating the table schema. #282
-
I need to apply a few compression and type changes on a table (a table having a size of around 88 GB), so I am planning the following steps.
But I got the below error: Prepare data for restoring 'cmp_int_teraflow.sim_records' Can anyone suggest an ideal way to handle the scenario? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Why do you need backup for this use-case? You can just use following SQL scenario CREATE TABLE new_table ... ;
INSERT INTO new_table SELECT * FROM old_table;
DROP TABLE new_table SYNC; |
Beta Was this translation helpful? Give feedback.
Why do you need backup for this use-case?
You can just use following SQL scenario