I need to add 100 columns into an existing table with 20000 columns in MonetDB, and each alter table command takes 10 seconds.
ALTER TABLE [MYSCHEMA].[MYTABLE] ADD COLUMN [MYCOLUMN] [TYPE] NULL;
x100
The total process takes 1000 seconds to peform the addition. Is there any way to improve the operation?.
Thnks