I’m trying to add one or several columns ( with known data from some file) to existing table.
Since i know ICE does not support ANY alter statements, i decide to dump all the data from the table into a text file, merge this file with ‘the other columns’ data’, then drop the table, recreate the table, and load data from the merged file.
This should take a long time, can any one tell me if there is any better ways to do this?(for example, using binary data, using pipes, or any possible way that may increase the speed)
Thanks!

